From 6042df0a51d695481525c15e92b51f64c09ba344 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marko=20Markovi=C4=87?= Date: Thu, 6 Jul 2023 18:33:22 +0400 Subject: [PATCH] WIP: import --- backend/package.json | 5 +- backend/pnpm-lock.yaml | 4 +- schema/clean_and_dump.sql | 8 + schema/dump.sql | 1627 ++----------------------------------- 4 files changed, 81 insertions(+), 1563 deletions(-) create mode 100644 schema/clean_and_dump.sql diff --git a/backend/package.json b/backend/package.json index 0b1a7f7..a575861 100644 --- a/backend/package.json +++ b/backend/package.json @@ -1,7 +1,7 @@ { "private": true, "scripts": { - "db:dump": "sqlite3 ../data/data.db .dump > ../schema/dump.sql", + "db:dump": "sqlite3 ../data/data.db < ../schema/clean_and_dump.sql > ../schema/dump.sql", "db:import": "rm -f ../data/data.db && sqlite3 ../data/data.db < ../schema/dump.sql", "dev": "nodemon --exec directus start", "start": "directus start" @@ -11,6 +11,7 @@ "sqlite3": "5.1.6" }, "devDependencies": { - "nodemon": "2.0.22" + "nodemon": "2.0.22", + "uuid": "9.0.0" } } diff --git a/backend/pnpm-lock.yaml b/backend/pnpm-lock.yaml index 37a1d0a..48e4842 100644 --- a/backend/pnpm-lock.yaml +++ b/backend/pnpm-lock.yaml @@ -16,6 +16,9 @@ devDependencies: nodemon: specifier: 2.0.22 version: 2.0.22 + uuid: + specifier: 9.0.0 + version: 9.0.0 packages: @@ -8265,7 +8268,6 @@ packages: /uuid@9.0.0: resolution: {integrity: sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==} hasBin: true - dev: false /vary@1.1.2: resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==} diff --git a/schema/clean_and_dump.sql b/schema/clean_and_dump.sql new file mode 100644 index 0000000..3e1000b --- /dev/null +++ b/schema/clean_and_dump.sql @@ -0,0 +1,8 @@ +delete from vendors_categories; +delete from vendors; +delete from categories; +delete from directus_revisions; +delete from directus_activity; +vacuum; + +.dump diff --git a/schema/dump.sql b/schema/dump.sql index 8490f15..d1a372c 100644 --- a/schema/dump.sql +++ b/schema/dump.sql @@ -68,37 +68,43 @@ INSERT INTO directus_migrations VALUES('20230525A','Add Preview Settings','2023- INSERT INTO directus_migrations VALUES('20230526A','Migrate Translation Strings','2023-06-09 14:51:51'); CREATE TABLE IF NOT EXISTS "directus_folders" (`id` char(36) NOT NULL, `name` varchar(255) NOT NULL, `parent` char(36), PRIMARY KEY (`id`), FOREIGN KEY (`parent`) REFERENCES `directus_folders` (`id`)); INSERT INTO directus_folders VALUES('4fe3c63a-cbec-4e7a-af2d-2ba454720476','pages',NULL); +INSERT INTO directus_folders VALUES('7c256639-be0b-4aac-9b41-e0d65635d92d','vendors',NULL); CREATE TABLE IF NOT EXISTS "directus_relations" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `many_collection` varchar(64) NOT NULL, `many_field` varchar(64) NOT NULL, `one_collection` varchar(64), `one_field` varchar(64), `one_collection_field` varchar(64), `one_allowed_collections` text, `junction_field` varchar(64), `sort_field` varchar(64), `one_deselect_action` varchar(255) NOT NULL DEFAULT 'nullify'); INSERT INTO directus_relations VALUES(1,'categories','parent_id','categories','subcategories',NULL,NULL,NULL,NULL,'nullify'); INSERT INTO directus_relations VALUES(8,'vendors_categories','categories_id','categories','vendors',NULL,NULL,'vendors_id',NULL,'nullify'); INSERT INTO directus_relations VALUES(9,'vendors_categories','vendors_id','vendors','categories',NULL,NULL,'categories_id',NULL,'nullify'); +INSERT INTO directus_relations VALUES(10,'menus_menu_items','menu_items_id','menu_items',NULL,NULL,NULL,'menus_id',NULL,'nullify'); +INSERT INTO directus_relations VALUES(11,'menus_menu_items','menus_id','menus','menus_menu_items',NULL,NULL,'menu_items_id','sort','nullify'); CREATE TABLE IF NOT EXISTS "directus_revisions" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `activity` integer NOT NULL, `collection` varchar(64) NOT NULL, `item` varchar(255) NOT NULL, `data` json, `delta` json, `parent` integer, FOREIGN KEY (`parent`) REFERENCES `directus_revisions` (`id`), FOREIGN KEY (`activity`) REFERENCES `directus_activity` (`id`) ON DELETE CASCADE); CREATE TABLE `directus_dashboards` (`id` char(36) not null, `name` varchar(255) not null, `icon` varchar(30) not null default 'dashboard', `note` text, `date_created` datetime default CURRENT_TIMESTAMP, `user_created` char(36), `color` varchar(255) null, foreign key(`user_created`) references `directus_users`(`id`) on delete SET NULL, primary key (`id`)); CREATE TABLE IF NOT EXISTS "directus_files" (`id` char(36) NOT NULL, `storage` varchar(255) NOT NULL, `filename_disk` varchar(255), `filename_download` varchar(255) NOT NULL, `title` varchar(255), `type` varchar(255), `folder` char(36), `uploaded_by` char(36), `uploaded_on` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `modified_by` char(36), `modified_on` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `charset` varchar(50), `filesize` bigint DEFAULT null, `width` integer, `height` integer, `duration` integer, `embed` varchar(200), `description` text, `location` text, `tags` text, `metadata` json, PRIMARY KEY (`id`), FOREIGN KEY (`uploaded_by`) REFERENCES `directus_users` (`id`), FOREIGN KEY (`modified_by`) REFERENCES `directus_users` (`id`), FOREIGN KEY (`folder`) REFERENCES `directus_folders` (`id`) ON DELETE SET NULL); CREATE TABLE IF NOT EXISTS "directus_permissions" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `role` char(36), `collection` varchar(64) NOT NULL, `action` varchar(10) NOT NULL, `permissions` json, `validation` json, `presets` json, `fields` text, FOREIGN KEY (`role`) REFERENCES `directus_roles` (`id`) ON DELETE CASCADE); INSERT INTO directus_permissions VALUES(1,NULL,'pages','read','{}','{}',NULL,'*'); -INSERT INTO directus_permissions VALUES(2,NULL,'categories','create','{}','{}',NULL,'*'); -INSERT INTO directus_permissions VALUES(3,NULL,'categories','update','{}','{}',NULL,'*'); INSERT INTO directus_permissions VALUES(4,NULL,'categories','read','{}','{}',NULL,'*'); -INSERT INTO directus_permissions VALUES(8,NULL,'vendors','create','{}','{}',NULL,'*'); INSERT INTO directus_permissions VALUES(9,NULL,'vendors','read','{}','{}',NULL,'*'); -INSERT INTO directus_permissions VALUES(10,NULL,'vendors','update','{}','{}',NULL,'*'); -INSERT INTO directus_permissions VALUES(30,NULL,'vendors_categories','create','{}','{}',NULL,'*'); INSERT INTO directus_permissions VALUES(31,NULL,'vendors_categories','read','{}','{}',NULL,'*'); -INSERT INTO directus_permissions VALUES(32,NULL,'vendors_categories','update','{}','{}',NULL,'*'); INSERT INTO directus_permissions VALUES(33,NULL,'globals','read','{}','{}',NULL,'*'); +INSERT INTO directus_permissions VALUES(34,NULL,'menus','read','{}','{}',NULL,'*'); +INSERT INTO directus_permissions VALUES(35,NULL,'menus_menu_items','read','{}','{}',NULL,'*'); +INSERT INTO directus_permissions VALUES(36,NULL,'menu_items','read','{}','{}',NULL,'*'); +INSERT INTO directus_permissions VALUES(37,NULL,'categories','create','{}','{}',NULL,'*'); +INSERT INTO directus_permissions VALUES(38,NULL,'vendors','create','{}','{}',NULL,'*'); +INSERT INTO directus_permissions VALUES(39,NULL,'vendors_categories','create','{}','{}',NULL,'*'); CREATE TABLE IF NOT EXISTS "directus_webhooks" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `name` varchar(255) NOT NULL, `method` varchar(10) NOT NULL DEFAULT 'POST', `url` varchar(255) NOT NULL, `status` varchar(10) NOT NULL DEFAULT 'active', `data` boolean NOT NULL DEFAULT '1', `actions` varchar(100) NOT NULL, `collections` varchar(255) NOT NULL, `headers` json); CREATE TABLE IF NOT EXISTS "directus_collections" (`collection` varchar(64) NOT NULL, `icon` varchar(30), `note` text, `display_template` varchar(255), `hidden` boolean NOT NULL DEFAULT '0', `singleton` boolean NOT NULL DEFAULT '0', `translations` json, `archive_field` varchar(64), `archive_app_filter` boolean NOT NULL DEFAULT '1', `archive_value` varchar(255), `unarchive_value` varchar(255), `sort_field` varchar(64), `accountability` varchar(255) DEFAULT 'all', `color` varchar(255) NULL, `item_duplication_fields` json NULL, `sort` integer, `group` varchar(64), `collapse` varchar(255) NOT NULL DEFAULT 'open', `preview_url` varchar(255) null, PRIMARY KEY (`collection`), FOREIGN KEY (`group`) REFERENCES `directus_collections` (`collection`)); -INSERT INTO directus_collections VALUES('pages','note',NULL,NULL,0,0,NULL,'status',1,'archived','draft',NULL,'all',NULL,NULL,2,NULL,'open',NULL); -INSERT INTO directus_collections VALUES('categories','category',NULL,'{{name}}',0,0,NULL,NULL,0,NULL,NULL,NULL,'all',NULL,NULL,3,NULL,'open',NULL); -INSERT INTO directus_collections VALUES('vendors','factory',NULL,'{{name}}',0,0,NULL,'status',1,'archived','draft',NULL,'all',NULL,NULL,4,NULL,'open',NULL); -INSERT INTO directus_collections VALUES('vendors_categories','import_export',NULL,NULL,1,0,NULL,NULL,1,NULL,NULL,NULL,'all',NULL,NULL,5,NULL,'open',NULL); +INSERT INTO directus_collections VALUES('pages','note',NULL,NULL,0,0,NULL,'status',1,'archived','draft',NULL,'all',NULL,NULL,3,NULL,'open',NULL); +INSERT INTO directus_collections VALUES('categories','category',NULL,'{{name}}',0,0,NULL,NULL,0,NULL,NULL,NULL,'all',NULL,NULL,4,NULL,'open',NULL); +INSERT INTO directus_collections VALUES('vendors','factory',NULL,'{{name}}',0,0,NULL,'status',1,'archived','draft',NULL,'all',NULL,NULL,5,NULL,'open',NULL); +INSERT INTO directus_collections VALUES('vendors_categories','import_export',NULL,NULL,1,0,NULL,NULL,1,NULL,NULL,NULL,'all',NULL,NULL,6,NULL,'open',NULL); INSERT INTO directus_collections VALUES('globals','globe_uk',NULL,NULL,0,1,NULL,NULL,0,NULL,NULL,NULL,'all',NULL,NULL,1,NULL,'open',NULL); +INSERT INTO directus_collections VALUES('menus','restaurant_menu',NULL,NULL,0,0,NULL,NULL,1,NULL,NULL,NULL,'all',NULL,NULL,2,NULL,'open',NULL); +INSERT INTO directus_collections VALUES('menu_items','link',NULL,'{{label}} : {{url}}',1,0,NULL,NULL,1,NULL,NULL,'sort','all',NULL,NULL,1,'menus','open',NULL); +INSERT INTO directus_collections VALUES('menus_menu_items','import_export',NULL,NULL,1,0,NULL,NULL,1,NULL,NULL,NULL,'all',NULL,NULL,7,NULL,'open',NULL); CREATE TABLE IF NOT EXISTS "directus_fields" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `collection` varchar(64) NOT NULL, `field` varchar(64) NOT NULL, `special` varchar(64), `interface` varchar(64), `options` json, `display` varchar(64), `display_options` json, `readonly` boolean NOT NULL DEFAULT '0', `hidden` boolean NOT NULL DEFAULT '0', `sort` integer, `width` varchar(30) DEFAULT 'full', `translations` json, `note` text, `conditions` json, `required` boolean DEFAULT '0', `group` varchar(64), `validation` json, `validation_message` text); -INSERT INTO directus_fields VALUES(1,'pages','slug',NULL,'input',NULL,NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); -INSERT INTO directus_fields VALUES(2,'pages','status',NULL,'select-dropdown','{"choices":[{"text":"$t:published","value":"published"},{"text":"$t:draft","value":"draft"},{"text":"$t:archived","value":"archived"}]}','labels','{"showAsDot":true,"choices":[{"text":"$t:published","value":"published","foreground":"#FFFFFF","background":"var(--primary)"},{"text":"$t:draft","value":"draft","foreground":"#18222F","background":"#D3DAE4"},{"text":"$t:archived","value":"archived","foreground":"#FFFFFF","background":"var(--warning)"}]}',0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); -INSERT INTO directus_fields VALUES(3,'pages','title',NULL,'input',NULL,NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); -INSERT INTO directus_fields VALUES(4,'pages','content',NULL,'input-rich-text-html','{"toolbar":["undo","redo","bold","italic","underline","strikethrough","subscript","superscript","fontfamily","fontsize","h1","h2","h3","h4","h5","h6","alignleft","aligncenter","alignright","alignjustify","alignnone","indent","outdent","numlist","bullist","forecolor","backcolor","removeformat","cut","copy","paste","remove","selectall","blockquote","customLink","unlink","customImage","customMedia","table","hr","code","fullscreen","visualaid"],"folder":"4fe3c63a-cbec-4e7a-af2d-2ba454720476"}',NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(1,'pages','slug',NULL,'input',NULL,NULL,NULL,0,0,2,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(2,'pages','status',NULL,'select-dropdown','{"choices":[{"text":"$t:published","value":"published"},{"text":"$t:draft","value":"draft"},{"text":"$t:archived","value":"archived"}]}','labels','{"showAsDot":true,"choices":[{"text":"$t:published","value":"published","foreground":"#FFFFFF","background":"var(--primary)"},{"text":"$t:draft","value":"draft","foreground":"#18222F","background":"#D3DAE4"},{"text":"$t:archived","value":"archived","foreground":"#FFFFFF","background":"var(--warning)"}]}',0,0,3,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(3,'pages','title',NULL,'input',NULL,NULL,NULL,0,0,4,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(4,'pages','content',NULL,'input-rich-text-html','{"toolbar":["undo","redo","bold","italic","underline","strikethrough","subscript","superscript","fontfamily","fontsize","h1","h2","h3","h4","h5","h6","alignleft","aligncenter","alignright","alignjustify","alignnone","indent","outdent","numlist","bullist","forecolor","backcolor","removeformat","cut","copy","paste","remove","selectall","blockquote","customLink","unlink","customImage","customMedia","table","hr","code","fullscreen","visualaid"],"folder":"4fe3c63a-cbec-4e7a-af2d-2ba454720476"}',NULL,NULL,0,0,5,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); INSERT INTO directus_fields VALUES(5,'categories','id','uuid','input',NULL,NULL,NULL,1,1,1,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); INSERT INTO directus_fields VALUES(6,'categories','slug',NULL,'input','{"font":"monospace","trim":true,"slug":true}',NULL,NULL,0,0,2,'full',NULL,NULL,NULL,1,NULL,NULL,NULL); INSERT INTO directus_fields VALUES(7,'categories','name',NULL,'input',NULL,NULL,NULL,0,0,3,'full',NULL,NULL,NULL,1,NULL,NULL,NULL); @@ -125,13 +131,26 @@ INSERT INTO directus_fields VALUES(45,'globals','id','uuid','input',NULL,NULL,NU INSERT INTO directus_fields VALUES(46,'globals','site_name',NULL,'input',NULL,NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); INSERT INTO directus_fields VALUES(47,'globals','meta_title',NULL,'input',NULL,NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); INSERT INTO directus_fields VALUES(48,'globals','meta_description',NULL,'input',NULL,NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(50,'pages','show_in','cast-json','select-multiple-checkbox','{"choices":[{"text":"Main menu","value":"MAIN_MENU"},{"text":"Footer","value":"FOOTER"}]}','labels',NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(51,'globals','copyright',NULL,'input',NULL,NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(52,'menus','id',NULL,'input',NULL,NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(53,'menu_items','id','uuid','input',NULL,NULL,NULL,1,1,1,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(54,'menu_items','sort',NULL,'input',NULL,NULL,NULL,0,1,2,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(55,'menu_items','url',NULL,'input',NULL,NULL,NULL,0,0,4,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(56,'menu_items','label',NULL,'input',NULL,NULL,NULL,0,0,3,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(57,'menus','menus_menu_items','m2m','list-m2m','{"template":"{{menu_items_id.label}} : {{menu_items_id.url}}"}',NULL,NULL,0,0,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(58,'menus_menu_items','id',NULL,NULL,NULL,NULL,NULL,0,1,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(59,'menus_menu_items','menus_id',NULL,NULL,NULL,NULL,NULL,0,1,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(60,'menus_menu_items','menu_items_id',NULL,NULL,NULL,NULL,NULL,0,1,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); +INSERT INTO directus_fields VALUES(61,'menus_menu_items','sort',NULL,NULL,NULL,NULL,NULL,0,1,NULL,'full',NULL,NULL,NULL,0,NULL,NULL,NULL); CREATE TABLE IF NOT EXISTS "directus_roles" (`id` char(36) NOT NULL, `name` varchar(100) NOT NULL, `icon` varchar(30) NOT NULL DEFAULT 'supervised_user_circle', `description` text, `ip_access` text, `enforce_tfa` boolean NOT NULL DEFAULT '0', `admin_access` boolean NOT NULL DEFAULT '0', `app_access` boolean NOT NULL DEFAULT '1', PRIMARY KEY (`id`)); INSERT INTO directus_roles VALUES('067808bd-7c13-40be-8c11-9ba654b79465','Administrator','verified','$t:admin_description',NULL,0,1,1); CREATE TABLE `directus_shares` (`id` char(36) not null, `name` varchar(255), `collection` varchar(64), `item` varchar(255), `role` char(36), `password` varchar(255), `user_created` char(36), `date_created` datetime default CURRENT_TIMESTAMP, `date_start` datetime null default null, `date_end` datetime null default null, `times_used` integer default '0', `max_uses` integer, foreign key(`collection`) references `directus_collections`(`collection`) on delete CASCADE, foreign key(`role`) references `directus_roles`(`id`) on delete CASCADE, foreign key(`user_created`) references `directus_users`(`id`) on delete SET NULL, primary key (`id`)); CREATE TABLE IF NOT EXISTS "directus_sessions" (`token` varchar(64) NOT NULL, `user` char(36), `expires` datetime NOT NULL, `ip` varchar(255), `user_agent` varchar(255), `share` char(36), `origin` varchar(255) null, PRIMARY KEY (`token`), FOREIGN KEY (`user`) REFERENCES `directus_users` (`id`) ON DELETE CASCADE, FOREIGN KEY (`share`) REFERENCES `directus_shares` (`id`) ON DELETE CASCADE); -INSERT INTO directus_sessions VALUES('vNN-BjpQL3CtNkA6QZfo7o0ufxOw4we7I5ipH-frj-nHgyt26gExHUcC-vVcAdmi','f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',1687366607498,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/111.0.0.0 Safari/537.36',NULL,'http://0.0.0.0:8055'); +INSERT INTO directus_sessions VALUES('zVkLBSmqN7wGs-xJoUosnjDGg9IRciBMAEkD5NCgH7FMhs7FMFYYLVJUKeUkx2Ks','f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',1689178506425,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64; rv:109.0) Gecko/20100101 Firefox/114.0',NULL,'http://0.0.0.0:8055'); +INSERT INTO directus_sessions VALUES('Cmb57EldF4eN2GH3YnDxJ3_9Xo1uDVMq4Bif3rByZonrIXBi0Q-M8md14m4k9VLF','f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',1689258341674,'127.0.0.1','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36',NULL,'http://0.0.0.0:8055'); CREATE TABLE IF NOT EXISTS "directus_users" (`id` char(36) NOT NULL, `first_name` varchar(50), `last_name` varchar(50), `email` varchar(128), `password` varchar(255), `location` varchar(255), `title` varchar(50), `description` text, `tags` json, `avatar` char(36), `language` varchar(255) DEFAULT null, `theme` varchar(20) DEFAULT 'auto', `tfa_secret` varchar(255), `status` varchar(16) NOT NULL DEFAULT 'active', `role` char(36), `token` varchar(255), `last_access` datetime, `last_page` varchar(255), `provider` varchar(128) NOT NULL DEFAULT 'default', `external_identifier` varchar(255), `auth_data` json, `email_notifications` boolean DEFAULT '1', PRIMARY KEY (`id`), FOREIGN KEY (`role`) REFERENCES `directus_roles` (`id`) ON DELETE SET NULL); -INSERT INTO directus_users VALUES('f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,NULL,'okram@civokram.com','$argon2id$v=19$m=65536,t=3,p=4$rk0X9HITfk7OIfvEjOrbew$Q4wUp0tjs42ocHPwVPzI3dksy+JKWzQzO5a3gqOwDg8',NULL,NULL,NULL,NULL,NULL,NULL,'auto',NULL,'active','067808bd-7c13-40be-8c11-9ba654b79465',NULL,1686761807514,'/content/globals','default',NULL,NULL,1); +INSERT INTO directus_users VALUES('f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,NULL,'okram@civokram.com','$argon2id$v=19$m=65536,t=3,p=4$rk0X9HITfk7OIfvEjOrbew$Q4wUp0tjs42ocHPwVPzI3dksy+JKWzQzO5a3gqOwDg8',NULL,NULL,NULL,NULL,NULL,NULL,'auto',NULL,'active','067808bd-7c13-40be-8c11-9ba654b79465',NULL,1688653541690,'/content/vendors','default',NULL,NULL,1); CREATE TABLE IF NOT EXISTS "directus_panels" (`id` char(36) NOT NULL, `dashboard` char(36) NOT NULL, `name` varchar(255), `icon` varchar(30) DEFAULT null, `color` varchar(10), `show_header` boolean NOT NULL DEFAULT '0', `note` text, `type` varchar(255) NOT NULL, `position_x` integer NOT NULL, `position_y` integer NOT NULL, `width` integer NOT NULL, `height` integer NOT NULL, `options` json, `date_created` datetime DEFAULT CURRENT_TIMESTAMP, `user_created` char(36), FOREIGN KEY (`dashboard`) REFERENCES `directus_dashboards` (`id`) ON DELETE CASCADE, FOREIGN KEY (`user_created`) REFERENCES `directus_users` (`id`) ON DELETE SET NULL, PRIMARY KEY (`id`)); CREATE TABLE `directus_flows` (`id` char(36) not null, `name` varchar(255) not null, `icon` varchar(30), `color` varchar(255) null, `description` text, `status` varchar(255) not null default 'active', `trigger` varchar(255), `accountability` varchar(255) default 'all', `options` json, `operation` char(36), `date_created` datetime default CURRENT_TIMESTAMP, `user_created` char(36), foreign key(`user_created`) references `directus_users`(`id`) on delete SET NULL, primary key (`id`)); CREATE TABLE `directus_operations` (`id` char(36) not null, `name` varchar(255), `key` varchar(255) not null, `type` varchar(255) not null, `position_x` integer not null, `position_y` integer not null, `options` json, `resolve` char(36), `reject` char(36), `flow` char(36) not null, `date_created` datetime default CURRENT_TIMESTAMP, `user_created` char(36), foreign key(`resolve`) references `directus_operations`(`id`), foreign key(`reject`) references `directus_operations`(`id`), foreign key(`flow`) references `directus_flows`(`id`) on delete CASCADE, foreign key(`user_created`) references `directus_users`(`id`) on delete SET NULL, primary key (`id`)); @@ -139,1562 +158,50 @@ CREATE TABLE IF NOT EXISTS "directus_activity" (`id` integer PRIMARY KEY AUTOINC CREATE TABLE IF NOT EXISTS "directus_notifications" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `timestamp` datetime DEFAULT CURRENT_TIMESTAMP, `status` varchar(255) DEFAULT 'inbox', `recipient` char(36) NOT NULL, `sender` char(36), `subject` varchar(255) NOT NULL, `message` text, `collection` varchar(64), `item` varchar(255), FOREIGN KEY (`recipient`) REFERENCES `directus_users` (`id`) ON DELETE CASCADE, FOREIGN KEY (`sender`) REFERENCES `directus_users` (`id`)); CREATE TABLE IF NOT EXISTS "directus_presets" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `bookmark` varchar(255), `user` char(36), `role` char(36), `collection` varchar(64), `search` varchar(100), `layout` varchar(100) DEFAULT 'tabular', `layout_query` json, `layout_options` json, `refresh_interval` integer, `filter` json, `icon` varchar(30) DEFAULT 'bookmark', `color` varchar(255) NULL, FOREIGN KEY (`user`) REFERENCES `directus_users` (`id`) ON DELETE CASCADE, FOREIGN KEY (`role`) REFERENCES `directus_roles` (`id`) ON DELETE CASCADE); INSERT INTO directus_presets VALUES(1,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'directus_files',NULL,'cards','{"cards":{"sort":["-uploaded_on"],"limit":25,"page":1}}','{"cards":{"icon":"insert_drive_file","title":"{{ title }}","subtitle":"{{ type }} • {{ filesize }}","size":4,"imageFit":"crop"}}',NULL,NULL,'bookmark',NULL); -INSERT INTO directus_presets VALUES(2,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'pages',NULL,NULL,'{"tabular":{"limit":25,"fields":["status","slug","title","content"],"page":1}}','{"tabular":{"widths":{}}}',NULL,NULL,'bookmark',NULL); +INSERT INTO directus_presets VALUES(2,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'pages',NULL,'tabular','{"tabular":{"page":1,"fields":["status","slug","title","content"]}}','{"tabular":{"widths":{"status":105,"content":350}}}',NULL,NULL,'bookmark',NULL); INSERT INTO directus_presets VALUES(3,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'directus_users',NULL,'cards','{"cards":{"sort":["email"],"limit":25,"page":1}}','{"cards":{"icon":"account_circle","title":"{{ first_name }} {{ last_name }}","subtitle":"{{ email }}","size":4}}',NULL,NULL,'bookmark',NULL); INSERT INTO directus_presets VALUES(4,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'directus_presets',NULL,NULL,'{"tabular":{"limit":25}}',NULL,NULL,NULL,'bookmark',NULL); -INSERT INTO directus_presets VALUES(5,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'categories','',NULL,'{"tabular":{"limit":50,"page":1,"fields":["name","subcategories","vendors"],"sort":["name"]}}','{"tabular":{"widths":{"name":354,"subcategories":259}}}',NULL,'{"_and":[{"parent_id":{"_null":true}}]}','bookmark',NULL); -INSERT INTO directus_presets VALUES(6,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'vendors',NULL,NULL,'{"tabular":{"page":2,"limit":25,"fields":["status","name","city","state","country","categories"],"sort":["name"]}}','{"tabular":{"widths":{"status":104,"name":342,"categories.categories_id.name":505},"spacing":"compact"}}',NULL,NULL,'bookmark',NULL); +INSERT INTO directus_presets VALUES(5,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'categories','',NULL,'{"tabular":{"limit":50,"page":1,"fields":["name","subcategories","vendors"],"sort":["name"]}}','{"tabular":{"widths":{"name":354,"subcategories":259}}}',NULL,'{"_and":[{"parent_id":{"id":{"_null":true}}}]}','bookmark',NULL); +INSERT INTO directus_presets VALUES(6,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'vendors',NULL,NULL,'{"tabular":{"page":1,"limit":25,"fields":["status","name","city","state","country","categories"],"sort":["name"]}}','{"tabular":{"widths":{"status":104,"name":342,"categories.categories_id.name":505},"spacing":"compact"}}',NULL,NULL,'bookmark',NULL); +INSERT INTO directus_presets VALUES(8,NULL,'f9df4549-e9e6-4b67-a0bd-7e4aa657bff6',NULL,'menus',NULL,NULL,'{"tabular":{"limit":25,"fields":["id","menus_menu_items.menu_items_id.label"]}}','{"tabular":{"widths":{"menus_menu_items.menu_items_id.label":475}}}',NULL,NULL,'bookmark',NULL); CREATE TABLE `directus_translations` (`id` char(36) not null, `language` varchar(255) not null, `key` varchar(255) not null, `value` text not null, primary key (`id`)); CREATE TABLE IF NOT EXISTS "directus_settings" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `project_name` varchar(100) NOT NULL DEFAULT 'Directus', `project_url` varchar(255), `project_color` varchar(50) DEFAULT null, `project_logo` char(36), `public_foreground` char(36), `public_background` char(36), `public_note` text, `auth_login_attempts` integer DEFAULT '25', `auth_password_policy` varchar(100), `storage_asset_transform` varchar(7) DEFAULT 'all', `storage_asset_presets` json, `custom_css` text, `storage_default_folder` char(36), `basemaps` json, `mapbox_key` varchar(255), `module_bar` json, `project_descriptor` varchar(100) NULL, `default_language` varchar(255) NOT NULL DEFAULT 'en-US', `custom_aspect_ratios` json, FOREIGN KEY (`project_logo`) REFERENCES `directus_files` (`id`), FOREIGN KEY (`public_foreground`) REFERENCES `directus_files` (`id`), FOREIGN KEY (`public_background`) REFERENCES `directus_files` (`id`), CONSTRAINT `directus_settings_storage_default_folder_foreign` FOREIGN KEY (`storage_default_folder`) REFERENCES `directus_folders` (`id`) ON DELETE SET NULL); INSERT INTO directus_settings VALUES(1,'Directus',NULL,NULL,NULL,NULL,NULL,NULL,25,NULL,'all',NULL,NULL,NULL,NULL,NULL,'[{"type":"module","id":"content","enabled":true},{"type":"module","id":"users","enabled":true},{"type":"module","id":"files","enabled":true},{"type":"module","id":"insights","enabled":true},{"type":"module","id":"settings","enabled":true,"locked":true}]',NULL,'en-US',NULL); -CREATE TABLE `pages` (`slug` varchar(255) not null, `status` varchar(255) not null default 'draft', `title` varchar(255) null, `content` text null, primary key (`slug`)); -INSERT INTO pages VALUES('about-us','published','About Us','

Lorem ipsum ...

'); CREATE TABLE IF NOT EXISTS "categories" (`id` char(36) NOT NULL, `slug` varchar(255) NULL DEFAULT null, `name` varchar(255) NULL, `parent_id` char(36) NULL, PRIMARY KEY (`id`), CONSTRAINT `categories_parent_id_foreign` FOREIGN KEY (`parent_id`) REFERENCES `categories` (`id`) ON DELETE NO ACTION); -INSERT INTO categories VALUES('be959be8-3190-402d-ad45-4a6da0b2e664','identity-and-access-management','Identity and Access Management',NULL); -INSERT INTO categories VALUES('1d1da41e-4738-42d8-9798-a5f7de4e3ff1','network-infrastructure-security','Network / Infrastructure Security',NULL); -INSERT INTO categories VALUES('f9165845-11c6-4820-bc62-b95104680dae','application-security-and-devsecops','Application Security and DevSecOps',NULL); -INSERT INTO categories VALUES('f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4','cloud-security','Cloud Security',NULL); -INSERT INTO categories VALUES('8e8e9a1e-039f-4e63-a3a1-83625d265f60','data-security','Data Security',NULL); -INSERT INTO categories VALUES('d786fa83-1183-4d22-82bf-b3eef9efc009','sase-zero-trust','SASE / Zero Trust','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO categories VALUES('4387283b-fcc2-4ac8-9d54-63be3e9dde51','risk-management','Risk Management',NULL); -INSERT INTO categories VALUES('e81b5869-1d2f-4c55-9805-9da3c752a547','security-operations-and-incident-response','Security Operations and Incident Response',NULL); -INSERT INTO categories VALUES('2e2b9760-88b4-4a25-9512-27ea6afe5fe4','threat-intelligence','Threat Intelligence',NULL); -INSERT INTO categories VALUES('9733203e-aea8-4de0-922e-61fd6cfddf3f','device-security','Device Security',NULL); -INSERT INTO categories VALUES('79417ef2-7e9f-422c-911a-79e7d596fe39','managed-security-services','Managed Security Services',NULL); -INSERT INTO categories VALUES('afbc18f7-8d81-4724-80fb-fc521ebd5ae9','security-services','Security Services',NULL); -INSERT INTO categories VALUES('1e9ba8ac-ff62-4a5e-a06d-915fa568c2d9','customer-security-software-b2c','Customer Security Software (B2C)',NULL); -INSERT INTO categories VALUES('3f3065b0-cb2d-4a03-af3c-28028a5aa98c','fraud-prevention-transaction-security','Fraud Prevention / Transaction Security',NULL); -INSERT INTO categories VALUES('3be37e50-a0e8-45b0-9ac6-c2acdafdf534','network-access-control','Network Access Control','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('4b4e18df-2c26-4007-8bdd-000cf20d56ad','application-security','Application Security','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO categories VALUES('3bd9f5e0-cb1c-4d0b-b800-7712d89b0823','casb','CASB','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO categories VALUES('9b1569fd-4d70-4da1-a08a-636f39db04c7','cloud-infrastructure','Cloud Infrastructure','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO categories VALUES('915a4c63-a2da-4358-8674-881284de97d4','saas-software-as-a-service','SaaS (Software as a Service)','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO categories VALUES('b3b43aea-0199-4157-b9fb-a5a569351c08','dlp','DLP','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO categories VALUES('ec6e90ee-1444-471c-ac92-38df4af8d10b','advanced-threat-protection','Advanced Threat Protection','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('4585cfaa-55b5-4064-bfc1-ab0682e08fc3','firewalls','Firewalls','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('2ff43381-7d2b-41c7-83bd-933319b0823a','sdn','SDN','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('485ce53b-df45-46b4-a673-ca0dc8fcc9c5','security-ratings','Security Ratings','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO categories VALUES('9aeda670-70c1-4373-9279-2ce6347a0ca1','threat-vulnerability-assessment','Threat / Vulnerability Assessment','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO categories VALUES('1039764c-e589-4fa1-a3b6-c2cec6fa1e2b','security-analytics','Security Analytics','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO categories VALUES('e87e2a72-b111-4c9b-9e99-9533bfccf780','security-incident-response','Security Incident Response','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO categories VALUES('1f305ee0-f3f3-4760-85a6-307609024e4a','siem-soar','SIEM / SOAR','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO categories VALUES('0a75b1ae-7322-40ad-bbd1-c6bd8dd517bc','threat-hunting','Threat Hunting','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO categories VALUES('014c9add-48d6-4800-b783-287c7f193adc','threat-intelligence-platform','Threat Intelligence Platform','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO categories VALUES('9412c51d-4af0-4531-9283-7755ffa1a83c','validating-source-code','Validating Source Code','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO categories VALUES('2171d533-4455-471c-b6cb-54c1464461c3','authentication','Authentication','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO categories VALUES('00360e57-ad4d-4036-b4e7-c8255152b8f6','identity-governance-and-administration','Identity Governance and Administration','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO categories VALUES('b2499898-5564-461c-aead-f20cd567650f','endpoint-detection','Endpoint Detection',NULL); -INSERT INTO categories VALUES('1f861079-2eef-475b-ba78-ca084a500453','response','Response',NULL); -INSERT INTO categories VALUES('3cd07e7d-ef23-4a6a-9b33-89a699590af3','security-awareness-training','Security Awareness / Training','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO categories VALUES('aa53faa0-e1b2-4c4f-8413-da10af9699ac','data-centric-security','Data Centric Security','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO categories VALUES('9db2d41c-058d-4765-a737-a61b0215a453','endpoint-protection','Endpoint Protection','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO categories VALUES('f91db1d0-06e9-4803-ab1a-44c0511d3960','ics-ot-security','ICS / OT Security','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('da4aa60b-b12a-46df-a4ba-7f41593401b5','internet-of-things','Internet of Things','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO categories VALUES('4b3a7953-b9cc-4818-8d9f-d5fb9c5909e4','mobile-security','Mobile Security','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO categories VALUES('7189d1c6-1083-4e86-971b-747167962e4d','advanced-mss-mdr','Advanced MSS / MDR','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO categories VALUES('af625855-da4a-4149-ad60-475131d06b22','messaging-security','Messaging Security','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('a4e9d14f-d4b7-423b-ad37-83bd78597dee','consulting-professional-services','Consulting / Professional Services','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO categories VALUES('d7d75d7c-2898-4262-a7b7-12349e41a8bd','implementation','Implementation','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO categories VALUES('bb5df955-7bf8-421c-b034-8022cf587cf8','incident-response','Incident Response','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO categories VALUES('8912d41d-595d-486c-bba7-b6643ca0f723','threat-intelligence-services-feed','Threat Intelligence Services / Feed','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO categories VALUES('8fbdbbb9-6586-4b4d-93fd-dd3929b8f5be','data-privacy','Data Privacy','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO categories VALUES('e3da7f49-0fb2-44d2-b2fd-efba31f5937d','api-security','API Security','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO categories VALUES('b6a38630-e9a8-4adf-8d56-0ad43f81d9ea','application-security-testing','Application Security Testing','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO categories VALUES('11a7a2a5-e15d-4532-af27-f986195954d2','pen-testing-breach-simulation','Pen Testing / Breach Simulation','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO categories VALUES('7823110b-dc89-4b18-a45a-b5581857139b','governance-and-compliance','Governance and Compliance','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO categories VALUES('e536056c-1127-45fe-bfc4-f09ea2a64aa1','intrusion-detection-prevention','Intrusion Detection / Prevention','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('036d45d5-75ab-458c-8f4d-bcb6fcc19d6f','network-analysis-forensics','Network Analysis / Forensics','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('246bf29f-fc39-4fc3-8443-9025c2344986','web-dns-security','Web / DNS Security','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('fcafd4f5-781a-48a6-8482-3ac1fded37a0','traditional-mssp','Traditional MSSP','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO categories VALUES('e86b1246-e476-4c98-aedd-053876246d14','it-outsourcing','IT Outsourcing','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO categories VALUES('80963683-f127-4411-a54e-6f48d99813c0','encryption','Encryption','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO categories VALUES('b54ee7c8-197b-4724-a558-1163a94d0b79','consumer-identity','Consumer Identity','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO categories VALUES('d27c4c5e-881b-4e38-8bce-6918a10ade4d','idaas','IDaas','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO categories VALUES('4993b613-dbcb-4108-be89-fe738de0c218','privileged-management','Privileged Management','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO categories VALUES('91cbeec7-d874-4b69-9502-253a15f9481b','privacy-compliance','Privacy Compliance','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO categories VALUES('88ea8c5f-2877-49a7-acc1-2139131a720f','grc','GRC','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO categories VALUES('29fd670d-897c-435f-87d9-2c05d4fc8662','vpn','VPN','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('8294a06e-25ea-45c2-a98d-5203048ccd61','software-integrity','Software Integrity','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO categories VALUES('0c1b0bd0-80a0-4e4c-86cf-1a18c63d9989','virtualization-containerization-segmentation','Virtualization / Containerization / Segmentation','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO categories VALUES('f74531c7-c5fd-410d-bb3d-8ef64e41cf8a','web-application-firewall','Web Application Firewall','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO categories VALUES('c57ff051-2522-4e56-9699-c91be9907a1e','denial-of-service','Denial of Service','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('45093484-ef9b-4672-9c44-924ee5eaeb29','deception-based-security','Deception-Based Security','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO categories VALUES('622121ac-3752-4a97-ac7f-f08b4e67f339','hardware-support','Hardware Support','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); CREATE TABLE IF NOT EXISTS "vendors" (`id` char(36) NOT NULL, `status` varchar(255) NOT NULL DEFAULT 'draft', `slug` varchar(255) NULL DEFAULT null, `name` varchar(255) null, `website` varchar(255) null, `description` text null, `address_line_1` varchar(255) null, `address_line_2` varchar(255) null, `city` varchar(255) null, `state` varchar(255) null, `country` varchar(255) null, PRIMARY KEY (`id`)); -INSERT INTO vendors VALUES('e91b7ed4-765f-46e7-80ba-434a863d18c2','published','nord-security','Nord Security','nordsecurity.com/business',replace('As a leading cybersecurity solutions provider, Nord Security combines products that businesses already love, all in one suite:\nNordLayer – network access management\nNordPass – business password manager\nNordLocker – end-to-end encrypted cloud','\n',char(10)),'16192 Coastal Highway',NULL,'Lewes','DE','USA'); -INSERT INTO vendors VALUES('76902808-b97b-4631-8481-46dc9fcb8953','published','check-point','Check Point','https://www.checkpoint.com/','Check Point is a leading provider of cyber security solutions to corporate enterprises and governments globally. Check Point Infinity´s portfolio of solutions protects enterprises and public organizations from 5th generation cyber-attacks with an industry leading catch rate of malware, ransomware and other threats. ','959 Skyway Road','Suite 300','San Carlos','CA','USA'); -INSERT INTO vendors VALUES('a00e5537-56e0-40f1-9479-d4a1be297666','published','safe-security','Safe Security','https://www.safe.security/','SAFE aggregates signals across your enterprises attack surfaces in real-time, and using our proprietary algorithms, we empower security leaders to make data-driven decisions, justify cybersecurity ROI, and discuss cyber risk precisely with the Board.','3000 El Camino Real ','Building 4','Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('73708e68-bd96-4dc5-91d6-bc25ee259066','published','cyble','Cyble','https://cyble.com/','Cyble (YC W21) is a leading global cyber intelligence firm that helps organizations manage cyber risks by utilizing patent-pending AI-powered threat intelligence with a focus on gathering intelligence from the deep, dark, and surface web.','11175 Cicero Drive ','Suite 100','Alpharetta','GA','USA'); -INSERT INTO vendors VALUES('53782c5a-f3dd-40bc-97c3-f1251126b148','published','beyond-identity','Beyond Identity','www.beyondidentity.com','Beyond Identity is the only zero trust authentication FIDO2-certified technology providing multi-factor, continuous authentication, delivering a passwordless, frictionless user experience that prevents security breaches and delights users.','3 Park Avenue ','41st Floor ','New York ','NY','USA'); -INSERT INTO vendors VALUES('b11eed3e-6e65-40ab-812b-7bc8e7162c45','published','blumira','Blumira','blumira.com','Blumira''s SIEM + Detection and Response helps stop breaches and ransomware, making cybersecurity easy and effective for small and medium teams. Meet compliance, save time on security tasks, and focus on real threats. Try it free at www.blumira.com','206 E Huron Street ','Suite 106','Ann Arbor','MI','USA'); -INSERT INTO vendors VALUES('918a4d84-ee93-49f0-bcc5-5e4c886f3ded','published','brinqa','Brinqa','www.brinqa.com','Brinqa provides the only attack surface intelligence platform that orchestrates the entire cyber-risk lifecycle by understanding the attack surface, prioritizing vulnerabilities, automating remediation, and monitoring cyber hygiene across platforms. ','3700 N Capital of TX Hwy','Suite 350','Austin','TX','USA'); -INSERT INTO vendors VALUES('a981b9f7-e1ea-41aa-b543-59dea3230559','published','blackberry','BlackBerry','https://www.blackberry.com/us/en','BlackBerry is a global leader in endpoint security, endpoint management, encryption and embedded systems. With our Cylance® AI and ML technology, we defend your business against current and future cyberthreats by combining network and endpoint telemetry and by delivering innovative solutions in the areas of cybersecurity, safety, and data privacy.','3001 Bishop Drive',NULL,'San Ramon','CA','USA'); -INSERT INTO vendors VALUES('fab4b9dc-4a6f-4b00-ac09-c3208df45b35','published','bigid-inc','BigID, Inc.','bigid.com','BigID is a leader in data security, privacy, compliance, and governance: enabling organizations to proactively discover, manage, protect, and get more value from their data in a single platform for data visibility and control. ','641 6th Avenue ','5th Floor','New York','NY','USA'); -INSERT INTO vendors VALUES('5e4cdcb9-25af-464e-9f0b-f1ab1f09c28c','published','bionic','Bionic','https://bionic.ai/','Bionic is an Application Security Posture Management (ASPM) company that provides unique visibility into the security, data privacy, and operational risk of applications running in production at scale.','2345 Yale Street',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('1258d962-9c10-44da-a57d-bd319140a39e','published','brivo','Brivo','https://resources.brivo.com/','Brivo, Inc., is the global leader in mobile, cloud-based access management and smart spaces platforms for commercial real estate, multifamily residential and large distributed enterprises. Learn more at www.Brivo.com ','7700 Old Georgetown Road ','Suite 300','Bethesda','MD','USA'); -INSERT INTO vendors VALUES('2857adfa-4e98-4dec-80f0-93fd323ca3b5','published','binary-defense','Binary Defense','https://www.binarydefense.com/','Binary Defense is a managed detection and response provider and software developer with a Managed Open XDR model covering endpoint, network, cloud, and other log sources to supply high-fidelity threat detections. ','600 Alpha Pkwy',NULL,'Stow','OH','USA'); -INSERT INTO vendors VALUES('6601a1e2-ec76-41f2-bf90-6317af8024ad','published','bugcrowd','Bugcrowd','www.bugcrowd.com','Bugcrowd is the leading provider of crowdsourced cybersecurity solutions purpose-built to secure the digitally connected world. See Security Differently™ at Bugcrowd.com','921 Front Street','First Floor','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('e8e92a93-cf22-4808-99e9-1a62146da82d','published','bitsight-technologies','BitSight Technologies','www.bitsight.com','BitSight transforms how companies manage cyber risk, performance, and exposure. Global enterprises rely on Bitsight’s actionable insights to protect their business, communicate with business leaders, and engage confidently in the digital economy.','111 Huntington Ave ','Ste 2010','Boston','MA','USA'); -INSERT INTO vendors VALUES('5f340fa5-1cae-4430-a2c3-b76c208e7bad','published','gitlab','GitLab','http://www.about.gitlab.com','GitLab is the most comprehensive DevSecOps platform for software innovation. GitLab empowers customers and users to innovate faster, scale more easily, and serve and retain customers more effectively. ','268 Bush Street #350',NULL,'San Francisco ','CA','USA'); -INSERT INTO vendors VALUES('b5355a46-6bb1-47fb-bda7-9bff3f2ef64e','published','gigamon','Gigamon','www.gigamon.com','Gigamon, the leading deep observability company, extends the value of cloud, security, and observability tools by harnessing actionable network-level intelligence to shift users to a proactive security/compliance posture and lower their risk profile.','3300 Olcott Street',NULL,'Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('727c0cda-eb98-493d-9871-a89a3353902c','published','gmi','GMI','www.gmi.com','GMI delivers secure technology services. Our specialized team improves posture through professional and secure end-to-end lifecycle management services. Experts in security, wireless, UC, Azure and MS 365, help desk, XDR, and more.','4657 E. Cotton Gin Loop ','Suite 101','Phoenix','AZ','USA'); -INSERT INTO vendors VALUES('6cfbd79b-1bf3-4558-87c7-9de00140abe2','published','yubico','Yubico','www.yubico.com',replace('As the inventor of the YubiKey, Yubico makes secure login easy with phishing-resistant MFA. Yubico is setting global standards for secure access to computers, mobile devices, and more, and is a creator and core contributor to the FIDO2, WebAuthn, and FIDO U2F, and open authentication standards. \n','\n',char(10)),'5201 Great America Parkway ','#122','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('ff6e2a4a-5453-4385-9f68-d8386c56b2db','published','graylog','Graylog','www.graylog.com',replace('Graylog is log management and Security Information Event Management (SIEM) done right. Graylog unlocks answers from data for thousands of IT and security professionals.\n\nFor more information, visit https://graylog.org\n','\n',char(10)),'1301 Fannin St.','Suite 2140','Houston','TX','USA'); -INSERT INTO vendors VALUES('cb898cd7-699c-4ad2-b6fd-bc5178820905','published','garner-products-inc','Garner Products, Inc.','www.garner-products.com','At Garner, we design, manufacture, and sell equipment that delivers complete, permanent, and verifiable data elimination. We provide solutions for permanent data security of working and nonworking hard drives, magnetic tape, and solid-state media','10620 Industrial Avenue ','Suite 100','Roseville','CA','USA'); -INSERT INTO vendors VALUES('e1d0f8f0-1cf6-4eab-a415-5a2976910f94','published','bsi-group-america-inc','BSI Group America Inc.','www.bsigroup.com/en-us','At BSI, we support organizations in improving resilience in the operations, supply chain, and information security domains. Our exclusive blend of consulting, knowledge, and assurance enables us to bring the optimum approach to our clients.','12950 Worldgate Dr.','Suite 800','Herndon','VA','USA'); -INSERT INTO vendors VALUES('63fac2aa-2365-4fd9-aca8-3b425959892c','published','it-security-association-germany-teletrust','IT Security Association Germany / TeleTrusT','https://www.teletrust.de/en/startseite/',replace('German Federal Ministry for Economic Affairs and Climate Action in cooperation with AUMA_Association of the German Trade Fair Industry and TeleTrusT – IT Security Association Germany.

\nGermany participates with a German Pavilion offering a professional brokerage service to help to establish contacts with German companies and comprehensive information on Germany as an important business location.

\nExplore abt. 25 companies from Germany!
\nasvin GmbH
\nAuconet Solutions GmbH
\nAWARE7 GmbH
\nBeta Systems Software AG
\nBundesdruckerei GmbH
\nDeutsche Gesellschaft für Cybersicherheit mbH & Co. KG
\nEBRAND AG
\nEnclaive GmbH
\nHornetsecurity GmbH
\nINFODAS GmbH
\nitWatch GmbH
\nLocateRisk GmbH
\nMaltego Technologies GmbH
\nMitigant by Resility
\nMTRIX GmbH
\neCom Service IT GmbH
\nONEKEY GmbH
\nROHDE & SCHWARZ GmbH & Co. KG
\nsecunet Security Networks AG
\nSoSafe GmbH
\nTenzir GmbH
\nTÜV Informationstechnik Gmbh
\nTWINSOFT biometrics GmbH & Co. KG

\n\nFor more information visit: www.rsac.german-pavilion.com ','\n',char(10)),'Chausseestrasse 17',NULL,'Berlin',NULL,'DEU'); -INSERT INTO vendors VALUES('c31cac40-32e5-4f8e-864e-d9e655998b8a','published','garrison','Garrison','www.garrison.com/en',replace('Garrison provides both Remote Browser Isolation & Cross-Domain Solutions to commercial enterprises and governments around the world. Using a form of RBI known as Pixel-Pushing, Garrison allows users to browse the web without the threat of attacks. \n\n','\n',char(10)),'117 Waterloo Rd.',NULL,'London',NULL,'GBR'); -INSERT INTO vendors VALUES('109b32a8-9d1d-4140-87ff-880c8e0f5d60','published','gurucul','Gurucul','https://gurucul.com/','Gurucul’s real-time Cloud-Native Security Analytics and Operations Platform provides customers with Next Generation SIEM, Open XDR, UEBA, and Identity and Access Analytics in one unified platform. ','222 N Pacific Coast Highway','Suite 1322','El Segundo','CA','USA'); -INSERT INTO vendors VALUES('bc766526-a31c-46a7-8493-c899022ec4c2','published','gravwell','Gravwell','https://www.gravwell.io','Gravwell is a data platform with security lake features that enables teams to search, visualize, and analyze data on-demand from any source — all with unlimited data collection and retention without being locked into a consumption-based pricing model','P.O. Box 51534',NULL,'Idaho Falls','ID','USA'); -INSERT INTO vendors VALUES('96da39c1-baa7-4655-bf47-2e1bc3d3c402','published','arxan-technologies-inc-now-digital-ai-software-inc','Arxan Technologies, Inc (now Digital.ai Software, Inc.)','digital.ai',NULL,'285 Summer Street','Suite 200','Boston','MA','USA'); -INSERT INTO vendors VALUES('59229d67-5dba-4bfd-add0-d26d962f41f6','published','dragos-inc','Dragos, Inc','https://dragos.com','Dragos is an industrial (ICS/OT/IIoT) cybersecurity company on a mission to safeguard civilization. Dragos provides cybersecurity solutions for hundreds of industrial organizations with platform technology, unprecedented knowledge, and expertise.','1745 Dorsey Rd. ','Suite R','Hanover','MD','USA'); -INSERT INTO vendors VALUES('f35e5345-8ae5-4e8f-aefc-091a77cde7c8','published','gold-comet','Gold Comet','https://www.goldcomet.com','Formed in April 2018, BAIMMT, LLC, dba Gold Comet, provides Quantum secure messaging, file storage/sharing systems. We provide next-generation solutions for high level information security and protection of business and personal communications.','5845 Richmond Highway','Suite 700','Alexandria','VA','USA'); -INSERT INTO vendors VALUES('d5683a0b-2be4-4d98-87f6-a688ada3c25d','published','dryviq','DryvIQ','https://dryviq.com/','DryvIQ enables organizations to intelligently understand and protect their data through advanced A.I. by providing a single platform that unifies three core dimensions of enterprise data management to discover, migrate and govern unstructured data.','30 Parkland Plaza ','Suite B','Ann Arbor','MI','USA'); -INSERT INTO vendors VALUES('5d2e540b-1dc4-4fc6-96ca-89e33a739643','published','genians','Genians','www.genians.com','Genians (KOSDAQ: 263860), the industry pioneer in Network Access Control (NAC)-driven Zero Trust Network Access (ZTNA) solutions, delivers seamless and secure access control anywhere—on campus networks, in branch offices, and in the cloud.','3003 North 1st St.','#210','San Jose','CA','USA'); -INSERT INTO vendors VALUES('a7e95036-4212-4b45-9ab2-14206f8faa9c','published','graphus','Graphus','https://www.graphus.ai','Graphus supercharges your Microsoft 365 and Google Workspace email security with AI, stopping current and emerging email threats without you lifting a finger or hurting your budget and takes just 3 clicks to deploy.','701 Brickwell Ave.','#400','Miami','FL','USA'); -INSERT INTO vendors VALUES('e7aefe92-0e7c-4a4e-95e3-218ae68c8989','published','deloitte','Deloitte','https://www.deloitte.com/us/MoveForwardFast','Deloitte helps organizations create a cyber-minded culture and become stronger, faster, more innovative, and more resilient in the face of ever-changing cyber threats. Turn challenges into opportunities and confidently move forward fast.','200 Berkeley St',NULL,'Boston','MA','USA'); -INSERT INTO vendors VALUES('d1c559ae-da92-41f7-8ddd-e188dd20e00a','published','glimps','GLIMPS','http://www.glimps.fr','We offers a unique Deep Learning technology that is trained to read and understand the elements that make up a binary. It has enabled the development of GLIMPS Malware and GLIMPS Audit : advanced application analysis and malware detection solutions.','500 King St West,',NULL,'Toronto',NULL,'CAN'); -INSERT INTO vendors VALUES('f81cc402-465a-4b69-a00f-6eb61775c2a0','published','detectify','Detectify','detectify.com','Detectify sets the standard for External Attack Surface Management (EASM), providing 99.7% accurate vulnerability assessments powered by its community of elite ethical hackers. Go hack yourself. detectify.com','Master Samuelsgatan 56',NULL,'Stockholm',NULL,'SWE'); -INSERT INTO vendors VALUES('a576ce6a-934e-448c-8595-3c25f590a48d','published','dnsfilter','DNSFilter','https://dnsfilter.com','DNSFilter is redefining how organizations secure their largest threat vector: the Internet itself. Over 15K organizations and managed service providers trust DNSFilter to protect millions of end users from phishing, malware, and advanced cyber threats.','80 M Street SE Suite 100',NULL,'Washington','DC','USA'); -INSERT INTO vendors VALUES('0d5895bd-7649-4aef-a5a6-bb969671e031','published','deep-instinct','Deep Instinct','www.deepinstinct.com','Deep Instinct PREVENTS >99% of UNKNOWN threats before they land inside. With or without an agent, we stop attacks in <20ms. We are pioneering the use of deep learning AI in cybersecurity to achieve unprecedented scale with <0.1% false positives.','888 Seventh Ave',NULL,'New York','NY','USA'); -INSERT INTO vendors VALUES('244f5934-975e-4a79-a594-badbac8540ea','published','0pass','0pass','www.0pass.com','0pass is the authentication platform that removes the number one cybersecurity risk facing organizations today: passwords. Say hello to hardware-based authentication that is connected to identity, unstealable, and seamless to roll out.','2261 Market Street #5084',NULL,'San Francisco ','CA','USA'); -INSERT INTO vendors VALUES('c66078ce-a23a-4142-b35d-43f7de7d27a1','published','deepfence','Deepfence','www.deepfence.io','Deepfence is a security observability and cloud-native protection platform for cloud environments. Deepfence measures, maps, and visualizes your runtime attack surfaces, and provides full-stack protection from known and unknown threats.','3101 Park Blvd. ',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('7419112e-50a0-4bd6-bd70-7b148fe47bd7','published','dazz','Dazz','www.dazz.io','Dazz accelerates secure cloud software delivery for modern security and development teams. The Dazz Remediation Cloud maps your code-to-production pipelines; performs smart root cause analysis, prioritizes risk, and identifies code owners.','2345 Yale St',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('e031bfac-3cd2-4c23-abb2-992c89e7b22e','published','drata','Drata','https://drata.com/','Drata is a security and compliance automation platform that continuously monitors and collects evidence of a company’s security controls, while streamlining compliance workflows end-to-end to ensure audit readiness.','4445 Eastgate Mall ','Suite 200','San Diego','CA','USA'); -INSERT INTO vendors VALUES('78418f77-4b93-435b-86d5-f250778fd4c0','published','datagrail','Datagrail','http://www.datagrail.io',replace('We help businesses build customer trust and reduce business risk. Our Privacy Control Center powers the world''s most trusted companies, upholds people''s right to privacy, and keeps businesses compliant with regulations like GDPR and CPRA. \n','\n',char(10)),'164 Townsend St','Suite 12','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('7a0233e7-2452-46b4-9ee4-50e7166766e7','published','dynatrace','Dynatrace','www.dynatrace.com','Dynatrace provides software intelligence to simplify cloud complexity and secure cloud-native applications. Our platform combines observability, continuous runtime application security, and advanced AIOps to provide answers and intelligent automation','1601 Trapelo Road ','#116','Waltham','MA','USA'); -INSERT INTO vendors VALUES('abd192bc-cfdb-464d-b59a-9f7d923e4f62','published','dark-reading','Dark Reading','https://www.darkreading.com/',NULL,'5 Howick Place',NULL,'London',NULL,NULL); -INSERT INTO vendors VALUES('717faca8-fc9d-49ea-a8d6-ccf8826ceb3a','published','datadome','DataDome','http://www.datadome.co','DataDome’s bot and online fraud protection detects and mitigates attacks on mobile apps, websites, and APIs with unparalleled accuracy and zero compromise.','524 Broadway',NULL,'New York','NY','USA'); -INSERT INTO vendors VALUES('6e8ac3b0-1608-484e-b2da-afcf640ce274','published','dart-consulting-and-training-red-alpha','DART Consulting and Training / Red Alpha','https://www.redalphacyber.com/rsac2023','Red Alpha is a cybersecurity talent development company that offers a comprehensive solution for companies seeking cyber professionals. Partnering with us provides you with a diversity matching program which can be tailored to your specific needs.','83 Clemenceau Ave, #10-04',NULL,NULL,NULL,'SGP'); -INSERT INTO vendors VALUES('45dafba9-e124-4baf-b290-5150185b84bd','published','docontrol','DoControl','docontrol.io',' Founded by former Google Cloud Cybersecurity members, DoControl provides organizations with the automated, self-service tools they require for SaaS application data access monitoring, orchestration, and remediation. ','333 W 39th St.','Rm 403','New York City','NY','USA'); -INSERT INTO vendors VALUES('24cb8ca5-d171-4590-bc2e-f5290db1a49f','published','diligent','Diligent','diligent.com','Diligent is the leading governance, risk and compliance (GRC) SaaS provider, serving more than one million users from over 25,000 organizations around the globe. ','111 W 33rd Street ','16th Floor','New York','NY','USA'); -INSERT INTO vendors VALUES('d77125d4-4fe0-4e9d-8511-af4129c28074','published','datadog','Datadog','datadoghq.com','Datadog is the monitoring and security platform for infrastructure, applications, logs, and more. Through its unified SaaS platform, Datadog provides comprehensive and deep visibility into the performance of modern applications.','620 8th Avenue ','Floor 45','New York','NY','USA'); -INSERT INTO vendors VALUES('83b4c01f-15c4-4009-8b74-9232c5df535b','published','darkowl-llc','DarkOwl, LLC','www.darkowl.com','DarkOwl is the leading provider of darknet data. Our suite of data products helps businesses quantify risk precisely with tools that uncover darknet data. DarkOwl Vision UI & API products inform sophisticated cybersecurity programs and decisions.','216 16th Street ','Suite 700','Denver','CO','USA'); -INSERT INTO vendors VALUES('1c379362-1e53-4edc-aeea-5a9e60ced379','published','dig-security','Dig Security','https://www.dig.security/','Dig Security is a cloud data security platform that helps organizations discover, classify, protect & govern their cloud data, by uniquely combining Data Security Posture Management (DSPM) and Data Detection and Response (DDR) into a single solution.','250 Greenwich St.',NULL,'New York ','NY','USA'); -INSERT INTO vendors VALUES('357dd8dd-2935-4829-b2e4-de1a022a9337','published','infosecurity-magazine','Infosecurity Magazine','www.infosecurity-magazine.com','Infosecurity Magazine is the leading digital platform and print magazine for information security professionals globally across all the key business verticals. ','Gateway House 28 ','The Quadrant','Richmond',NULL,'GBR'); -INSERT INTO vendors VALUES('e8cfadc1-2871-44cc-81e9-d5c49e67a38b','published','ionate-inc','Ionate, Inc','www.ionate.io',replace('Ionate is helping the end-to-end cloud migration journey for enterprises while increasing the security of the legacy. \nWe identify vulnerabilities in the business logic & rules and show how the applications and software work together as a whole. ','\n',char(10)),'2 Embarcadero Ctr','Suite 410','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('288e7e99-e250-4031-a767-fe77b05a2f80','published','intercast-staffing','Intercast Staffing','https://intercastglobal.com/','Founded in 2009, Intercast is a Global Leader in Cybersecurity Staffing, Consulting and Recruitment. We provide Enterprise organization''s with vetted, world class talent so that you can mitigate your organization''s business risk.','360 Bay Street ','Suite 1010','Toronto','ON','CAN'); -INSERT INTO vendors VALUES('833f6ebf-4c67-4bed-8691-83a3db9a3647','published','inspired-elearning-llc','Inspired eLearning, LLC','www.inspiredelearning.com','Inspired eLearning by VIPRE is a leading provider of internet security solutions purpose-built to protect businesses, solution providers, and home users from costly and malicious cyber threats. ','114 5th Ave','15th Floor','New York','NY','USA'); -INSERT INTO vendors VALUES('112a33c2-ca67-4896-b907-a4228a8da473','published','immuta','Immuta','www.immuta.com','Immuta is the leader in data security, automating data discovery, security, and monitoring from one centralized platform. Organizations trust Immuta to safely share data, while mitigating risks. Founded in 2015, Immuta is headquartered in Boston, MA.','25 Thomson Pl. ','4th floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('620cac11-303f-4a6a-95a9-c60c08824747','published','illumio','Illumio','www.illumio.com','Illumio, the Zero Trust Segmentation company, stops breaches and ransomware from spreading across the hybrid attack surface to help organizations reduce risk and build resilience.','920 DeGuigne Dr',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('4befcdd8-f450-45fb-8725-12135543a4c9','published','imperva','Imperva','www.imperva.com','Imperva is the comprehensive digital security leader on a mission to help organizations protect their data and all paths to it. Combining edge, application, and data security, customers trust Imperva to protect their applications, data, and websites.','One Curiosity Way',NULL,'San Mateo','CA','USA'); -INSERT INTO vendors VALUES('c6715e8a-78a0-48e1-9402-a9926df73799','published','intel','Intel','https://www.intel.com/content/www/us/en/homepage.html','We are an industry leader, creating world-changing technology that enables global progress and enriches lives. We stand at the brink of several technology inflections—artificial intelligence (AI), 5G network transformation, and the rise of the intelligent edge—that together will shape the future of technology. ','2200 Mission College Blvd.',NULL,'Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('2340f620-1f96-4b6e-b9a2-aeb528f8a63d','published','itsp-magazine','ITSP Magazine','https://www.itspmagazine.com/',replace('Covering the cybersecurity field is a decades-old tradition, marked by ITSPmagazine''s 8th year as an official media partner with RSAC USA and APJ. And we couldn’t be more excited! This year is going to be filled podcasts, webcasts, and live-streaming conversations with organizers, keynotes, speakers, panelists, and many friends that we are looking forward to reconnecting with!
We will have our traditional ITSPmagazine Chats On The Road and a lot of surprises, including the return of Broadcast Alley where we will host 8 hours of on-location conversations - on camera - with a multitude of interesting guests. Plus, many of the ITSPmagazine Podcast Network Hosts are going to be in the Broadcast Alley and on the conference show floor at Moscone Center in San Francisco for this year’s coverage. \n\nJump on board and join us for a event full of incredible people, events, podcasts, webcasts, and all sorts of conversations—all At The Intersection Of Technology, Cybersecurity, and Society.\n','\n',char(10)),NULL,NULL,NULL,NULL,NULL); -INSERT INTO vendors VALUES('5fa91909-8e5b-4fbe-88da-22d31c13afe1','published','ibm-security','IBM Security','https://www.ibm.com/security','IBM is a leading global hybrid cloud and AI, and business services provider, helping clients in more than 175 countries capitalize on insights from their data, streamline business processes, reduce costs and gain the competitive edge in their industries. All of this is backed by IBM’s legendary commitment to trust, transparency, responsibility, inclusivity, and service. ','1 New Orchard Road ',NULL,'Armonk','NY','USA'); -INSERT INTO vendors VALUES('efeb7959-6d0f-4430-9f2c-7d071714cb50','published','invicti','Invicti','www.invicti.com','Invicti is on a mission: application security with zero noise. We provide the most accurate, evidence-based DAST for DevSecOps teams. Attacking like a hacker would, we help teams identify and prioritize vulnerabilities in the web applications that run their organizations.','1000 N Lamar Blvd.','Suite 300','Austin','TX','USA'); -INSERT INTO vendors VALUES('07535b36-a80a-423a-a92a-4c31d7106185','published','infosec-institute','Infosec Institute','www.infosecinstitute.com','Infosec puts people at the center of cybersecurity through role-guided training that’s accessible and engaging. Learn more at infosecinstitute.com.','311 W Washington Ave.',NULL,'Madison','WI','USA'); -INSERT INTO vendors VALUES('9e97c80d-cdb5-44d3-8478-9d3eba48d562','published','immersive-labs','Immersive Labs','www.immersivelabs.com','Immersive Labs is the leader in people-centric cyber resilience. We help organizations continuously assess, build, and prove their cyber workforce resilience for teams across the entire organization.','200 Berkeley Street ','23rd Floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('8821f86b-0e8f-4658-88f7-8596b5e54441','published','it-glue','IT Glue','www.itglue.com','IT Glue is your all-in-one IT documentation platform. Document assets, SOPs, passwords, vendors, users, network diagrams and more in one place. Add our robust search and watch your team''s consistency and productivity skyrocket. ','700-128 W Pender Street',NULL,'Vancouver','BC','CAN'); -INSERT INTO vendors VALUES('388b1467-61d5-40f6-932d-0034eeabcff7','published','isc2','(ISC)²','https://www.isc2.org/','ISC2 is an international nonprofit membership association focused on inspiring a safe and secure cyber world. (ISC)2 is best known for the acclaimed CISSP.','1650 King Street','Suite 200','Alexandria','VA','USA'); -INSERT INTO vendors VALUES('160d074d-4988-4f1e-a7a1-ff9a13819f88','published','edgio','Edgio','www.edg.io','Edgio helps companies deliver online experiences and content faster, safer, and with more control. Edgio Security is a complete WAAP solution designed to protect businesses from threats against web applications, user data, and infrastructure. ','1475 N. Scottsdale Rd. ',NULL,'Scottsdale','AZ','USA'); -INSERT INTO vendors VALUES('e9316c5e-7600-428c-a959-5441dad9318f','published','issa','ISSA','http://www.issa.org','ISSA is the choice for cybersecurity professionals, dedicated to connecting professionals, guiding your career path, managing technology risk, and protecting critical information. Members span all levels of the security field across many industries. ','1964 Gallows Road','Suite 210','Vienna','VA','USA'); -INSERT INTO vendors VALUES('f94f8be2-0130-41e0-a878-68ed8e5c23f0','published','ironscales','IRONSCALES','www.ironscales.com','Phishing attacks are the biggest threat your company faces today. Our powerfully simple anti-phishing service is fast to deploy, easy to use and protects you against today’s most dangerous phishing threats','6 Concourse Pkwy.','Suite 1600','Atlanta','GA','USA'); -INSERT INTO vendors VALUES('2c06bacc-2fe4-4d10-bace-bab199cdaac9','published','island','Island','www.island.io','The Island Enterprise Browser, an ideal enterprise workplace, where work flows freely while remaining secure. With the needs of the enterprise embedded in the browser, Island gives organizations control, visibility, and governance over the last mile.','3501 Olympus Blvd. ','Suite 350','Dallas','TX','USA'); -INSERT INTO vendors VALUES('ffe4311b-3619-445b-ab5a-b5c682d479d0','published','iapp','IAPP','iapp.org','As the largest and most comprehensive global information privacy community and resource, the International Association of Privacy Professionals helps define, promote and improve the privacy profession globally.','75 Rochester Ave.',NULL,'Portsmouth','NH','USA'); -INSERT INTO vendors VALUES('c3ed8ae8-36da-4425-a29a-37333de6e271','published','ine','INE','http://www.ine.com','INE is the market leader in IT Training as a Service, working with Fortune 500 companies to accelerate business and training objectives with best-in-class training & hands-on enterprise-specific labs in networking, cyber security, & cloud management.','575 New Waverly Place','Suite 201 ','Cary','NC','USA'); -INSERT INTO vendors VALUES('e55ff5d9-7225-4d11-afaa-e87fc72568f8','published','edgescan','Edgescan','http://www.edgescan.com','Edgescan is an integrated platform that unifies all required security solutions into a single platform: pen testing as a service (PTAs), vulnerability management, application security testing, attack surface management & API security testing. ','33 West 60th ','Floor 2','New York','NY','USA'); -INSERT INTO vendors VALUES('dd77d983-68e7-4720-bb7c-554c50dee804','published','extrahop','ExtraHop','https://www.extrahop.com/','ExtraHop is the cybersecurity partner enterprises trust to reveal the unknown and unmask the truth. The company’s Reveal (x) 360 platform is the only network detection and response platform that delivers the 360-degree visibility needed to uncover the cybertruth. With full network transparency with ExtraHop, organizations see more, know more and stop more cyber attacks.','520 Pike Street ','Suite 1600','Seattle','WA','USA'); -INSERT INTO vendors VALUES('6ec05c4e-db30-4967-b32e-63acdbaaf6ff','published','emagine-it','Emagine IT','http://www.eit2.com/',replace('Emagine IT is an automation-obsessed third-party assessment organization (3PAO) focused on eliminating our client’s cybersecurity obstacles and turning their compliance into a competitive advantage. Ask us about FedRAMP, HITRUST, SOC, and more.\n','\n',char(10)),'909 Rose Avenue','Suite 900','North Bethesda','MD','USA'); -INSERT INTO vendors VALUES('4653871c-048d-4c28-927e-6d55496f47ad','published','encore','Encore','www.encore.io','Encore provides visibility of your entire attack surface by giving both an INTERNAL AND EXTERNAL view of risk.','St Cloud Gate','Saint-Cloud Way','Maidenhead',NULL,'GBR'); -INSERT INTO vendors VALUES('b6414250-b828-4716-87e0-d862aa4e8df6','published','ermetic','Ermetic','ermetic.com','Ermetic is a unified, identity-first cloud infrastructure security platform that automates asset discovery, risk analysis, runtime threat detection and compliance, and drives remediation and least privilege at scale, greatly reducing risk.','144 Menachem Begin St.','EY building, 7th floor','Tel Aviv',NULL,'ISR'); -INSERT INTO vendors VALUES('2f8087c4-0009-40d2-9f1e-98415a2ae488','published','eshard','eShard','www.eshard.com','We are an IT Security company with a strong expertise in Security Testing hands-on : IC Security (cryptography, side-channel, fault injection), Mobile Application Security Testing, and System security (Linux & Windows) with Timeless dynamic analysis.','11 Avenue de Canteranne ','Immeuble Gienah','Pessac',NULL,'FRA'); -INSERT INTO vendors VALUES('78732a48-ecef-4545-80b1-dca4e58413ab','published','eset','ESET','http://www.eset.com/us/','Prevent breaches with ESET. Protect your endpoints, business data and users with ESET''s multilayered technology. ESET PROTECT platform offers customizable security solutions, managed easily from a cloud or on‑prem console.','610 West Ash Street','Suite 1700','San Diego','CA','USA'); -INSERT INTO vendors VALUES('9600f9a4-b70d-45b1-8108-84ae8c190b29','published','exabeam','Exabeam','www.exabeam.com','Exabeam is a global cybersecurity leader that created New-Scale SIEMTM for advancing security operations. Learn more at www.exabeam.com.','1051 E. Hillsdale Blvd. ','4th Floor','Foster City','CA','USA'); -INSERT INTO vendors VALUES('85d66e7e-7117-452e-b429-8d78400c8069','published','entrust','Entrust','www.entrust.com','Entrust keeps the world moving safely by enabling trusted experiences for identities, payments, and digital infrastructure. We offer an unmatched breadth of solutions that are critical to enabling trust for multi-cloud deployments, mobile identities, hybrid work, machine identity, electronic signatures, encryption, and more. ','1187 Park Pl',NULL,'Minneapolis','MN','USA'); -INSERT INTO vendors VALUES('cd7bf24a-7d22-460a-855a-7864a8820c2e','published','txone-networks','TXOne Networks','https://www.txone.com','ICS vulnerabilities are highly targeted & cyber-attacks spread fast - disrupting production, damaging assets & putting lives at risk. TXOne provides OT-focused cybersecurity solutions to protect environments at both the endpoint and network levels.','225 E. John Carpenter Fwy ','Suite 450 ','Irving','TX','USA'); -INSERT INTO vendors VALUES('1c7e89b7-7763-47a8-9314-492a0caf2443','published','egress','Egress','www.egress.com','Egress makes digital communication safer for everyone. As advanced and persistent cybersecurity threats continue to evolve, Egress''s Intelligent Cloud Email Security suite uses patented self-learning technology to detect sophisticated inbound and outbound threats.','148 Lafayette Street','Floor 4,','New York','NY','USA'); -INSERT INTO vendors VALUES('21ccff7c-5930-4544-9760-8497a621f3bf','published','thales','Thales','https://cpl.thalesgroup.com/','As the global leader in data security, Thales helps the most trusted brands and organizations around the world protect their most sensitive data and software, secure the cloud, provide seamless digital experiences, and achieve compliance through our industry-leading data encryption, identity and access management, and software licensing solutions.','Arboretum Plaza II, 9442 Capital of Texas Highway North','Suite 400','Austin','TX','USA'); -INSERT INTO vendors VALUES('29ec926c-36a2-44ac-96c7-b9a5e63fbec7','published','tenable','Tenable','https://www.tenable.com/','Tenable® is the Exposure Management company. Approximately 40,000 organizations around the globe rely on Tenable to understand and reduce cyber risk. As the creator of Nessus®, Tenable extended its expertise in vulnerabilities to deliver the world’s first platform to see and secure any digital asset on any computing platform. Learn more at tenable.com.','6100 Merriweather Drive','12th Floor','Columbia','MD','USA'); -INSERT INTO vendors VALUES('fef63460-4110-4bd3-8826-04b480a9b709','published','threatlocker','ThreatLocker','www.ThreatLocker.com','ThreatLocker® improves enterprise-level server and endpoint security with zero trust controls, including Allowlisting, Ringfencing™, Elevation, Storage, Network Control, Configuration Management, and Operational Alert solutions. ','1950 Maitland Summit Boulevard','4th Floor','Orlando','FL','USA'); -INSERT INTO vendors VALUES('0a6d046b-7098-4b02-a689-a4e7c3bcbd9b','published','tehtris','TEHTRIS','https://tehtris.com','TEHTRIS is a global leader in the automatic neutralization of known and unknown digital attacks in real time, without human action, thanks to TEHTRIS XDR Platform, a "Security & Ethics by design" engineering and holistic solution.','13-15 Rue Taitbout ','Batiment SIRAH','Paris',NULL,'FRA'); -INSERT INTO vendors VALUES('6e7a3240-c120-4d2f-9d4e-9283735c1a98','published','tines','Tines','https://www.tines.com',replace('The best companies trust Tines to manage their mission-critical workflows, automatically responding and remediating alerts. Tines integrates with any REST API or web application to fuse data from multiple locations into a single workflow.\n','\n',char(10)),'1 Lincoln Street',NULL,'Boston','MA','USA'); -INSERT INTO vendors VALUES('bccc2072-1d4f-4dfe-97ac-06c748b08e6f','published','teleport','Teleport','goteleport.com','Identity-Native Infrastructure Access for engineers and machines.','1611 Telegraph Ave.','14th Floor','Oakland','CA','USA'); -INSERT INTO vendors VALUES('91bbcbf3-db2d-495f-b04d-f0671fab3d9c','published','threatbook','ThreatBook','www.threatbook.cn','ThreatBook, founded in 2015, is an innovative cybersecurity provider in the digital era, continually delivering precise, efficient and intelligent solutions of cyberthreat detection and response. ','4F Yingzhi Plaza','No.49-3 Suzhoujie St, Haidain District','Beijing',NULL,'CHN'); -INSERT INTO vendors VALUES('4ea63486-3260-4d14-abb1-13a4b6b9b679','published','telesign','Telesign','www.TeleSign.com','Telesign connects, protects, and defends companies, customers, and the digital interactions between them. With powerful AI that delivers identity with speed, accuracy, and global reach, we enable Continuous Trust. Learn more at www.telesign.com','13724 Fiji Way ','Suite 600','Marina Del Rey','CA','USA'); -INSERT INTO vendors VALUES('24df8ad4-8093-4a42-823d-519b7d5fd5ed','published','teksystems-risk-and-security-services','TEKsystems | Risk & Security Services','https://www.teksystems.com/en/cyber-risk-security','You’ve got big plans. Let’s protect them. TEKsystems brings strategic advisory and custom solutions to help you protect your data and cultivate resiliency—without disrupting operations or stunting innovation.','7437 Race Road',NULL,'Hanover','MD','USA'); -INSERT INTO vendors VALUES('63181861-2f0d-4f3c-8743-0bee000fff80','published','the-cyberwire','The CyberWire','https://thecyberwire.com/',NULL,'8110 Maple Lawn Blvd. ','Suite 200','Fulton','MD','USA'); -INSERT INTO vendors VALUES('e6dd5abe-33be-4616-beb6-0d19903f83c1','published','theom','Theom','www.theom.ai','Theom secures Saas/PaaS data lakes, warehouses, cloud object stores, and databases (including Snowflake, Databricks, Azure, and AWS). Theom detects active threats by applying the MITRE ATT&CK framework and stops attacks using existing security.','355 Bryant Street ','Suite 403','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('ee7eecb2-2a57-48b5-8516-0c220254768c','published','thecube','theCUBE','thecube.net','SiliconANGLE Media Inc. reports on the often overlooked global impact of enterprise and emerging technologies, covering topics such as semiconductors, computer and networking systems, cybersecurity, AI and machine learning, blockchain, and more. Led by experienced entrepreneurs John Furrier and Dave Vellante, our media properties offer unmatched depth and immediacy, combining publishing on SiliconANGLE.com, live video from theCUBE, and analysis from market researcher Wikibon. Our mission is to provide valuable insights to decision-makers in the tech industry, as well as to developers and laypeople curious about the technologies powering their devices. Our commitment to expanding our reporting, analysis, and thought leadership has enabled us to evolve a sustainable business model, untethered from the volatility of traditional online advertising.','5 Mount Royal Rd',NULL,'Marlborough','MA','USA'); -INSERT INTO vendors VALUES('2ef77bfa-06a4-433e-b42b-8a1e11618009','published','tamnoon','Tamnoon','https://www.tamnoon.io/','Tamnoon is a Managed Cloud Protection service that leverages existing cloud security tools for optimized security. Our team of experts and proprietary technology work together to ensure effective protection of your cloud environment.',' 704 228h Ave NE# 874',NULL,'Sammamish','WA','USA'); -INSERT INTO vendors VALUES('c12a6bf1-c5aa-47d0-87d8-d18b2f1c67b6','published','threatx','ThreatX','www.threatx.com','ThreatX’s API protection platform makes the world safer by protecting APIs from all threats, including DDoS attempts, bot attacks, API abuse, exploitations of known vulnerabilities, and zero-day attacks. ','225 Friend Street ','8th Floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('2ae29aa3-1c97-4297-8035-1d8bb92219af','published','techstrong-group','Techstrong Group','www.techstronggroup.com','Techstrong Group is the power source for people and technology. We are an omniversal tech media company covering IT industries and practices that are re-shaping the world of technology. Our focus is digital transformation, DevOps, cybersecurity, cloud and cloud-native. Techstrong Group business units include: Techstrong Media, Techstrong Research and Techstrong Learning.','751 Park of Commerce Drive ','Suite 108 ','Boca Raton','FL','USA'); -INSERT INTO vendors VALUES('4feb1fc5-5474-4a11-a430-5e2bef218132','published','techguard','TechGuard','www.techguard.com','For over 22 years TechGuard has secured government and corporate cyberspace through its proven holistic approach to ensure people, processes, and technology align with cybersecurity and compliance best practices. ','1722 Corporate Crossing ','Suite 1','O''Fallon','IL','USA'); -INSERT INTO vendors VALUES('f80c3438-a9c8-4324-afc5-c7443429b108','published','tailscale','Tailscale','www.tailscale.com','Tailscale is a highly secure mesh VPN that makes it easy to connect all your devices, wherever they are. Built on WireGuard, Tailscale can be set up in minutes and facilitates zero-trust networking by enabling SSO and “always-on” remote access.','125-720 King St W','Suite 585','Toronto','ON','CAN'); -INSERT INTO vendors VALUES('2ab54171-9b56-4bad-90a4-4109f21df473','published','varonis','Varonis','https://www.varonis.com/','Varonis is a pioneer in data security and analytics, specializing in software for data protection, threat detection and response, and compliance. Varonis protects enterprise data by analyzing data activity, perimeter telemetry, and user behavior; prevents disaster by locking down sensitive data; and efficiently sustains a secure state with automation.','1250 Broadway','FL 28','New York','NY','USA'); -INSERT INTO vendors VALUES('7e2671a4-df8e-45e4-b0bf-ba353d287cea','published','trustwave','Trustwave','www.trustwave.com','Trustwave is a global cybersecurity and managed security services provider. Trustwave leverages its team of threat hunters, researchers, and consultants, and a leading security operations platform to fortify cyber resilience against advanced threats.','70 West Madison Street','Suite 600','Chicago','IL','USA'); -INSERT INTO vendors VALUES('9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','published','trellix','Trellix','www.trellix.com','Trellix is redefining the future of cybersecurity with its open and native extended detection and response (XDR) platform, helping organizations to gain confidence in the protection and resilience of their operations. Trellix and its partner ecosystem, accelerates innovation through machine learning and automation, empowering over 40,000 customers with living security. ','3099 N First Street',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('9781b52d-2307-4ed0-b0de-f4af7991005c','published','vmware','VMware','https://www.vmware.com/',replace('VMware is a leading provider of multi-cloud services for all apps. As the trusted foundation to accelerate innovation, our software gives businesses the freedom and flexibility they need to build the future. \n\nWith VMware Cross-Cloud™ services, customers experience multi-cloud autonomy and consistent operations while delivering a more secure, frictionless employee experience and retaining enterprise control. \n\n','\n',char(10)),'3401 Hillview Ave',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('3ede0933-e8b9-427a-b1c4-19e326e1e32d','published','tresorit','Tresorit','www.tresorit.com','Tresorit’s GDPR, ISO 27001:2013 certified platform, makes it easy for teams to collaborate efficiently and securely via our end-to-end encrypted, cloud-based document ecosystem. Unlike other cloud providers, our end-to-end encryption ensures that your data always remains private, even on the go.','Koztelek u. 6.',NULL,'Budapest',NULL,'HUN'); -INSERT INTO vendors VALUES('fcbb90c3-57d8-4b8c-92c6-146474df3ecd','published','veracode','Veracode','www.veracode.com','Veracode is a leading AppSec partner for creating secure software, reducing risk of security breach and increasing security and development teams’ productivity. Veracode has assessed over 112 trillion lines of code & helped fix over 81 million flaws.','65 Blue Sky Drive',NULL,'Burlington','MA','USA'); -INSERT INTO vendors VALUES('c08d88c5-2262-4ba7-a8ba-9cd63def83b8','published','verizon','Verizon','https://www.verizon.com/business/products/security/','Verizon offers a comprehensive and proven portfolio of managed and professional services that enables security teams to optimize their operations, from threat identification and detection to response and recovery. We leverage our experience as a world-renowned provider of business services to help security leaders earn – and keep – their seat at the decision-making table.','1 Verizon Way',NULL,'Basking Ridge','NJ','USA'); -INSERT INTO vendors VALUES('5e4af345-2323-4cb2-abe7-7730a9eaf4ca','published','veeam','Veeam','www.veeam.com','Veeam® is the leader in backup, recovery and data management solutions that deliver Modern Data Protection on a single platform for Cloud, Virtual, Physical, SaaS and Kubernetes environments. Visit www.veeam.com to learn more.','8800 Lyra Dr',NULL,'Columbus','OH','USA'); -INSERT INTO vendors VALUES('1b2e9c37-5e71-452e-b61a-e663bfda7223','published','forescout-technologies-inc','Forescout Technologies, Inc.','www.forescout.com','Forescout delivers automated cybersecurity across the digital terrain, maintaining continuous alignment of customers’ security frameworks with their digital realities, including all asset types. The Forescout Continuum Platform provides 100% asset visibility, continuous compliance, network segmentation and a strong foundation for zero trust.','2400 Dallas Pkwy Dr. ','Suite 230','Plano','TX','USA'); -INSERT INTO vendors VALUES('4571ee3f-a6eb-43b3-8495-7a346fddce4d','published','truefort','TrueFort','www.truefort.com','TrueFort manages lateral movement across the data center and the cloud, keeping applications and service accounts secure. Trusted by leading global enterprises for unmatched discovery and microsegmentation. ','3 W. 18th St',NULL,'Weehawken','NJ','USA'); -INSERT INTO vendors VALUES('c12d85e8-1318-463e-a27a-4fbf4c888a04','published','tidelift','Tidelift','https://tidelift.com/','The TIdelift Subscription is a proactive approach to improving the health, security, and resilience of your organization’s open source software supply chain. ','50 Milk Street','Floor 16','Boston','MA','USA'); -INSERT INTO vendors VALUES('c184ea71-4c25-4eb8-b5f3-720b0b82ab36','published','torq','Torq','https://torq.io','Torq is the cybersecurity force multiplier. Its comprehensive security automation platform unifies and automates the entire security stack to deliver unparalleled protection and productivity.','411 NW Park Ave ','Suite 500','Portland','OR','USA'); -INSERT INTO vendors VALUES('539c1848-6173-4151-a6d3-ce47c99dc739','published','forward-networks','Forward Networks','www.forwardnetworks.com','Forward Networks delivers a mathematical model (or “digital twin”) of the network to enable advanced security and reliability across complex on-prem and multi-cloud environments.','2390 Mission College Blvd. ','4th Floor','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('ed9ec750-23b5-410b-88e1-bfa5992d28b4','published','forgerock','ForgeRock','www.forgerock.com','ForgeRock®, (NYSE: FORG) is a global leader in digital identity that delivers modern and comprehensive identity and access management solutions for consumers, employees, and things to simply and safely access the connected world. ','201 Mission Street ','Suite 2900','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('e3cade40-dede-4bd3-9aba-7c895f4cc76b','published','fluid-attacks','Fluid Attacks','www.fluidattacks.com','Deploy secure applications without delaying your time-to-market. Fluid Attacks offers multiple security testing techniques in a single solution. Our continuous assessments allow you to secure your technology across the software development lifecycle.','95 3rd St','Apt 302',' San Francisco','CA','USA'); -INSERT INTO vendors VALUES('4e1ac738-68f0-4a1b-b290-944741d285cd','published','votiro','Votiro','votiro.com','Votiro is an award winning zero trust content security company serving hundreds of commercial and government organizations, worldwide. Votiro Cloud offers an open, API-centric Content Disarm and Reconstruction (CDR) solution.','1220 Plum Tree Lane',NULL,'Penryn','CA','USA'); -INSERT INTO vendors VALUES('75fcc1fc-23f4-4e16-b382-440950b292e5','published','fortifydata','FortifyData','www.fortifydata.com','FortifyData is a Continuous Threat Exposure Management company that enables companies to manage cyber risk. Our platform combines attack surface assessments, risk-based vulnerability management, security ratings and third-party risk management.','1825 Barrett Lakes Blvd ','Suite 300','Kennesaw','GA','USA'); -INSERT INTO vendors VALUES('d90928ce-8c10-4c1c-9017-eeb2f0748246','published','verimatrix-inc','Verimatrix, Inc.','www.verimatrix.com','Verimatrix protects our connected digital world with cybersecurity engineered for enterprises. Our award-winning threat defense products help CISOs and SOC teams secure, detect and defend against mobile attacks utilizing AI/ML and data scientists.','6059 Cornerstone Ct W',NULL,'San Diego','CA','USA'); -INSERT INTO vendors VALUES('0c523fef-3428-4523-a9bc-92b7357ad50c','published','vehere','Vehere','www.vehere.com','Vehere uses the best-in-breed technology to ensure a safer cyberspace. Our military-grade cybersecurity solutions empower governments and enterprises with actionable intelligences for detecting threat actors and countering cyber-attacks effectively. ','1603 PS Srijan Corporate Park','Block GP Sector V, Salt Lake','Kolkata','WB','IND'); -INSERT INTO vendors VALUES('d4181a4f-1d03-490d-af42-61c68c478e8f','published','fortinet','Fortinet','https://www.fortinet.com/','Fortinet s a driving force in the evolution of cybersecurity and the convergence of networking and security. Our mission is to secure people, devices, and data everywhere, and today we deliver cybersecurity everywhere you need it with the largest integrated portfolio of over 50 enterprise-grade products. ','899 Kifer Road',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('fa452f38-1686-413e-97a1-e5565db52b2e','published','veriti','Veriti','www.veriti.ai','Veriti is a consolidated security platform that integrates with the security stack to continually and proactively monitor exposure to threats, and remediate security gaps across the organization’s infrastructure and attack surface.','150 menahem begin Rd.',NULL,'Tel Aviv',NULL,'ISR'); -INSERT INTO vendors VALUES('c84aa514-ab45-40d5-a4f8-d453a7a41330','published','fido-alliance','FIDO Alliance','https://fidoalliance.org','The 250+ member, cross-industry FIDO Alliance provides specifications and certifications to enable an interoperable ecosystem of on-device authenticators that can be used for simpler, stronger authentication to many compliant mobile apps and websites','3855 SW 153rd Drive',NULL,'Beaverton','OR','USA'); -INSERT INTO vendors VALUES('12dfd783-077f-4da4-9973-c960ba72600f','published','filecloud','FileCloud','www.filecloud.com','FileCloud is a hyper-secure content collaboration platform (CCP) that provides industry-leading compliance, data governance, data leak protection, data retention, Zero Trust file sharing and digital rights management capabilities.','13785 Research Blvd. ','Suite 125','Austin','TX','USA'); -INSERT INTO vendors VALUES('b3a1c7f5-748e-4496-81dd-aa6a770ebe1d','published','firemon','FireMon','www.firemon.com',replace('FireMon improves security operations, leading to better security outcomes. FireMon delivers industry-leading security policy management, cloud security operations, and asset management solutions.\n\n','\n',char(10)),'8801 Renner Blvd',' 2nd floor ','Lenexa','KS','USA'); -INSERT INTO vendors VALUES('3f2f23fe-ce67-4252-b2d9-828a0a76c6f1','published','flashpoint','Flashpoint','www.flashpoint.io','Trusted by governments, commercial & educational institutions worldwide, we help organizations protect their most critical assets, infrastructure & stakeholders from security risks such as cyber threats, ransomware, fraud, physical threats & more','6218 Georgia Ave NW ','Suite #1','Washington','DC','USA'); -INSERT INTO vendors VALUES('79a4bc60-6055-49c9-9e8b-9a1171fd24bd','published','fastly-inc','Fastly, Inc.','www.fastly.com','Fastly is upgrading the internet experience. With the fastest global edge cloud network and the industry’s first and only unified WAF, we help develop, deliver, and secure modern distributed applications and engaging digital experiences.','475 Brannan Street ','#300','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('e3a74d25-53ac-4bd5-8393-0135dc348766','published','flexxon-pte-ltd','Flexxon Pte. Ltd.','https://x-phy.com','Flexxon is an international next-generation storage device manufacturer, specializing in hardware-based cybersecurity solutions & industrial NAND flash storage devices with a key focus on Cybersecurity, Industrial, Medical & Automotive applications.','28 Genting Lane','#09-03 Platinum 28','Singapore',NULL,'SGP'); -INSERT INTO vendors VALUES('ae833937-9905-4b87-9d6d-54e40966dc95','published','fastpath','Fastpath','www.gofastpath.com','Fastpath allows businesses to seamlessly orchestrate security, compliance and risk management across multi-site, multi-application environments. It enables complete access control, identity management, and insight across their business applications.','4093 NW Urbandale Dr',NULL,'Des Moines ','IA','USA'); -INSERT INTO vendors VALUES('bfa84e80-213d-42e7-a5f7-5b7e6cab9422','published','axis','Axis','axissecurity.com',replace('Axis aims to elevate secure access to power a modern workplace where people, and technology, work in harmony.\n\nAtmos is the first SSE platform to elegantly integrate ZTNA, SWG, CASB and Digital Experience into a single, easy to use, interface.\n','\n',char(10)),'7700 Windrose ave','Suite 300','Plano','TX','USA'); -INSERT INTO vendors VALUES('729b1d96-cdb3-43dd-b7b5-66c6ed194313','published','astrix-security','Astrix Security','https://astrix.security/',replace('Astrix lets you safely unleash the power of app-to-app connectivity by securing non-human identities across IaaS, PaaS, and SaaS. It detects and remediates over-privileged or suspicious third-party app connections to your core systems. \n','\n',char(10)),'545 East 14th Street',NULL,'New York','NY','USA'); -INSERT INTO vendors VALUES('577bb794-0a19-4bcd-abd1-217d780ba9c3','published','alixpartners','AlixPartners','alixpartners.com','AlixPartners’ cyber advisory services cover the cyber risk value chain to provide a comprehensive suite of solutions designed to empower enterprises and businesses.','909 Third Ave.','30th Floor','New York','NY','USA'); -INSERT INTO vendors VALUES('9df62db9-2e9c-4cc6-bc9c-631352f6e2c3','published','allegro-software','Allegro Software','www.allegrosoft.com','Security and Connectivity for the IoT Edge - Allegro Software is a leading provider of IoT Edge device security and connectivity software toolkits to manufacturers and deployed in 275+ million devices worldwide. Learn more at www.allegrosoft.com','1740 Massachusetts Avenue',NULL,'Boxborough','MA','USA'); -INSERT INTO vendors VALUES('e1129463-7598-4374-8088-e435e1f40c93','published','aic-inc','AIC Inc.','www.aicipc.com','AIC is a leading provider of standard OTS (off-the-shelf) and OEM/ODM server and storage solutions. AIC''s products are highly flexible and configurable to any form factor, standard or custom. For more information, please visit: https://www.aicipc.com','21808 Garcia Lane',NULL,'City of Industry','CA','USA'); -INSERT INTO vendors VALUES('bade8efe-1aae-4a3e-9995-534e64f981a0','published','authlite','AuthLite','www.authlite.com','AuthLite adds native 2-factor authentication to your Active Directory, protects Administrator accounts and RDP by assigning privileged groups dynamically after login, and eliminates a variety of credential exposure risks like Pass-the-Hash attacks.','1099 Willowbrook Dr.',NULL,'Springfield','IL','USA'); -INSERT INTO vendors VALUES('d953e3c6-9b84-4528-9c35-16e4917c7e2a','published','atandt-cybersecurity','AT&T Cybersecurity','https://cybersecurity.att.com/','AT&T Cybersecurity is one of the world’s leading managed security services providers. Our experienced cybersecurity consultants and SOC analysts help manage your network transformation to reduce cybersecurity risk and overcome skill gaps. Our mission is to be your trusted advisor on your journey to cybersecurity resiliency, making it safer for your business to innovate.','208 S Akard Street','17th floor','Dallas','TX','USA'); -INSERT INTO vendors VALUES('ff211273-6ed3-4cf0-854d-30dbcc2bcb69','published','alta-associates-a-part-of-diversified-search-group','Alta Associates, a part of Diversified Search Group','https://diversifiedsearchgroup.com/alta-associates/','Founded in 1986, Alta Associates, a part of Diversified Search Group, is the pioneer and preeminent executive search firm specializing in Cybersecurity, Risk Management, and Technology. Alta Associates has a successful record of placing cyber roles. ','8 Bartles Corner Rd. ','Suite 021','Flemington','NJ','USA'); -INSERT INTO vendors VALUES('7fcd5156-9eac-42f3-b4ab-bb401e672040','published','anjuna','Anjuna','www.anjuna.io','Anjuna Security is the leader in data security and privacy. Our breakthrough platform transforms your hybrid-cloud into a high-trust environment where data is always encrypted and code is verified for authenticity. ','380 Portage Avenue',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('c68d5cf4-1b07-4139-8868-6fbc9be57859','published','anitian','Anitian','www.anitian.com','Anitian helps make cloud applications secure and FedRAMP compliant up to 50% faster, at 50% of the cost. Enter federal and defense markets faster while product teams stay focused on adding value to your applications and services. ','8625 SE Cascade Ave ','Suite 500','Beaverton','OR','USA'); -INSERT INTO vendors VALUES('f9753c94-782f-4632-b691-d1017526d71d','published','akeyless','Akeyless','www.akeyless.io','Securely adopt DevOps, Hybrid Multi-cloud Transformation, and Zero-Trust Access initiatives, with Akeyless’ unified Secrets and Secure Access Management platform','122 Grand St',NULL,'NEW YORK','NY','USA'); -INSERT INTO vendors VALUES('af5c9b97-bd24-4923-9ee4-55dedddfd2ef','published','abnormal-security','Abnormal Security','https://www.abnormalsecurity.com/','Abnormal Security provides the leading behavioral AI-based security platform that leverages machine learning to stop sophisticated inbound email attacks and dangerous email platform attacks that evade traditional solutions.','185 Clara St. ','Ste 100','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('00585ee3-9144-4308-8e3b-00343dfadf5b','published','attackiq','AttackIQ','www.attackiq.com','AttackIQ, the leading independent vendor of breach and attack simulation solutions, built the industry’s first Security Optimization Platform for continuous security control validation and improving security program effectiveness and efficiency. ','171 Main Street','Suite 656','Los Altos','CA','USA'); -INSERT INTO vendors VALUES('efe73437-9498-4233-afdc-a73d2a6d7a6f','published','abacode-cybersecurity-and-compliance','Abacode Cybersecurity & Compliance','www.abacode.com','Abacode is a (MCCP™) offering customized, framework-based programs and leading technologies to deliver security and compliance results 4x faster than industry average, while increasing efficiency and streamlining processes for clients globally.','777 S. Harbour Island Blvd., ',NULL,'Tampa','FL','USA'); -INSERT INTO vendors VALUES('5c2b0a4a-acb5-48eb-b624-049952054ae2','published','axonius','Axonius','www.axonius.com','With solutions for both cyber asset attack surface management (CAASM) and SaaS management, Axonius is deployed in minutes and integrates with hundreds of data sources to provide a comprehensive asset inventory, uncover gaps, and automatically validate and enforce policies. ','330 Madison Ave ','39th Floor','New York','NY','USA'); -INSERT INTO vendors VALUES('bf140905-6bdc-417c-8ff6-809ea9c22f43','published','aqua','Aqua','www.aquasec.com','Aqua Security is the largest pure-play cloud native security company, providing customers the freedom to innovate and accelerate their digital transformations.','800 District Avenue ','Suite 510','Burlington','MA','USA'); -INSERT INTO vendors VALUES('71cbc701-3612-4f71-9717-8e0da4271ce9','published','asimily','Asimily','www.asimily.com','Asimily’s IoMT & IoT risk remediation platform holistically secures the mission-critical healthcare devices that deliver safe and reliable care','440 N Wolfe Rd',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('316836de-6d81-4c3a-8b99-7a61ccaa78af','published','arctic-wolf-networks-inc','Arctic Wolf Networks, Inc.','www.arcticwolf.com','Arctic Wolf® is a global leader in security operations, delivering a premier cloud-native security operations platform designed to end cyber risk.','8939 Columbine Road',NULL,'Eden Prairie','MN','USA'); -INSERT INTO vendors VALUES('4ea2dd74-0517-4152-9ae3-8e8475c3184f','published','anvilogic','Anvilogic','www.anvilogic.com','Anvilogic modern security operations platform for threat detection and incident response helps unify across signals to gain valuable insights and recommendations to continuously assess, detect, hunt, triage, and respond. ','644 Emerson St',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('7130e1c4-59c6-459a-a819-2eb14f3e9847','published','appgate','Appgate','appgate.com',replace('Appgate provides industry leading Zero Trust access, designed differently for a reason. Why? To uphold your access control standards, not those mandated by a vendor’s cloud-routed architecture. Superior network control for complex environments. \n\n ','\n',char(10)),'2 Alhambra Plaza ','Suite PH-1-B','Coral Gables','FL','USA'); -INSERT INTO vendors VALUES('ca3bf765-2182-4a34-a5cf-da17810ccfd6','published','auditboard','AuditBoard','auditboard.com','AuditBoard transforms how audit, risk, and compliance professionals manage today’s dynamic risk landscape with a modern, connected platform that engages the front lines, surfaces the risks that matter, and drives better strategic decision-making.','12900 Park Plaza Dr. ','Suite 200','Cerritos','CA','USA'); -INSERT INTO vendors VALUES('ab7a419c-4dbc-471d-97a0-c56f7c5c3b03','published','armorblox','Armorblox','www.armorblox.com','Armorblox secures enterprise communications over email and other cloud office applications with the power of Natural Language Understanding (NLU). ','100 S. Murphy Ave ','Suite 200','Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('157868ff-103a-431a-a078-3c7fc9723bb8','published','adaptiva','Adaptiva','www.adaptiva.com','The world’s largest enterprises and government agencies trust Adaptiva for real-time endpoint visibility, software distribution, compliance checks, remediations, and autonomous patching without impacting productivity. Learn how at adaptiva.com.','4010 Lake Washington Blvd.','Suite 200','Kirkland','WA','USA'); -INSERT INTO vendors VALUES('56e7ef1f-3437-43ec-bda6-e0153b74034e','published','accedian','Accedian','https://accedian.com/','Accedian is the leader in performance analytics, cybersecurity threat detection and end user experience solutions, dedicated to providing our customers with the right insight to control their digital infrastructure.','2351 Alfred Nobel Bd ','Suite N-410','Saint- Laurent','QC','CAN'); -INSERT INTO vendors VALUES('1829dbd6-6c24-4595-a81f-e9fe5ee4d443','published','aewin-tech-inc','AEWIN Tech Inc.','www.aewin.com','AEWIN: ISO-9001 certified manufacturer of commercial off-the-shelf (COTS) and customized embedded computers for OEMs, ODMs, and system integrators serving various IT applications, with a focus on telco, embedded and network security. ','780 Montague Expressway ','#207','San Jose','CA','USA'); -INSERT INTO vendors VALUES('ff62460b-d2a2-4e49-853c-de54e82cc38e','published','adlink','ADLINK','www.adlinktech.com','ADLINK is committed to developing industry-leading edge computing platforms to drive the transformation of communications network architectures, and enable customers to explore new services and business models across various market segments. ','6450 Via Del Oro',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('b09535b4-5fb5-4866-8bee-0c09a2813943','published','algosec','AlgoSec','www.algosec.com',replace('AlgoSec, a global cybersecurity leader, empowers organizations to secure application connectivity by automating connectivity flows and security policy, anywhere.\n ','\n',char(10)),'65 Challenger Rd','Suite 310','Ridgefield Park ','NJ','USA'); -INSERT INTO vendors VALUES('7eb015f9-71fe-47aa-a930-29cb2bcc4af8','published','juniper-networks','Juniper Networks','https://www.juniper.net/us/en/security.html','Juniper Networks is dedicated to dramatically simplifying network operations and driving superior experiences for end users. Our solutions deliver industry-leading insight, automation, security, and AI to drive real business results. We believe that powering connections will bring us closer together while empowering us all to solve the world’s greatest challenges.','1133 Innovation Way',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('e1014347-b4f1-4844-864c-11323f1c0631','published','jamf','Jamf','www.jamf.com',replace('Jamf’s purpose is to simplify work. With over 69,00 customers, Jamf helps organizations manage and secure an Apple experience that end users love and organizations trust. To learn more, visit jamf.com\n','\n',char(10)),'100 Washington Ave S ','Suite 1100','Minneapolis','MN','USA'); -INSERT INTO vendors VALUES('f299bbb4-0d01-43b2-a7f7-d3b479776a04','published','jfrog','JFrog','www.jfrog.com','JFrog Ltd. and the JFrog Platform enable developers to build, secure, distribute, and connect any source with any production environment. Thousands of customers worldwide, including a majority of the Fortune 100, depend on JFrog to securely manage their software. Learn more at jfrog.com.','270 East Caribbean Drive',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('c0bfeef1-8a4e-4d44-a84c-2f6fcc9c7d1a','published','jupiterone','JupiterOne','www.jupiterone.com?utm_source=event&utm_campaign=rsac2023','JupiterOne gives enterprises full visibility into their attack surface and security posture with continuous asset management. Reduce risk, triage incidents, and prioritize vulnerability findings with greater clarity and 85% fewer SecOps resources.','2701 Aerial Center Parkway ','Suite 120','Morrisville','NC','USA'); -INSERT INTO vendors VALUES('8d25b3cf-000a-4112-a948-60d7b930147d','published','jetway-computer-corp','Jetway Computer Corp.','www.jetwaycomputer.com','Jetway, established in 1998, specializing in the development and marketing of industrial motherboards and computer systems in USA. Among our products are embedded motherboards, industrial barebone systems, rackmounts, and panel PC.','8058 Central Ave.',NULL,'Newark','CA','USA'); -INSERT INTO vendors VALUES('f83e8166-5209-4c8c-9345-145965b24420','published','qax-technology-group-inc','QAX Technology Group Inc.','https://en.qianxin.com/','QAX is a leader in cybersecurity industry, providing new generation enterprise-level and national-level cybersecurity solutions. Years of R&D and innovation, QAX has reinforced the strength in big data, AI, and security operation.','QAX Security Center,No.1','26 Xizhimenwai South Road Xicheng District','Beijing',NULL,'CHN'); -INSERT INTO vendors VALUES('7985b050-f1fe-49df-a9bf-e4239073ce31','published','quest-software','Quest Software','https://www.quest.com/solutions/cybersecurity-risk-management-solutions/','Quest solutions work together to protect your hybrid Active Directory environment and manage risk. Quest helps you discover and eliminate potential attack paths, identify risky changes, control group policy chaos, & quickly recover from AD disasters.','4 Polaris Way',NULL,'Aliso Viejo','CA','USA'); -INSERT INTO vendors VALUES('ceeb5238-18c0-41da-868c-5bfdf82336c6','published','quintessencelabs','QuintessenceLabs','www.quintessencelabs.com','QuintessenceLabs is a leader in quantum cybersecurity recognized for its quantum-safe data protection capabilities, including the world’s fastest quantum random number generators, crypto-agile key management, and ultra-secure quantum key distribution','175 Bernal Rd. ','Suite 220','San Jose','CA','USA'); -INSERT INTO vendors VALUES('014e19ce-8cc2-44c0-bef1-7a4cf145b0f6','published','qohash','Qohash','https://qohash.com','One platform to manage the full sensitive data lifecycle. Qohash makes it faster, easier and more affordable for information security teams to meet data privacy regulations and prevent data breaches.','394 Rue de Sainte-Helene',NULL,'Quebec City','QC','CAN'); -INSERT INTO vendors VALUES('9c48f472-efa1-4d56-9351-2bff6a3e5d42','published','quantinuum','Quantinuum','www.quantinuum.com','Quantinuum harnesses the power of quantum computing to help security teams stay ahead of cyber risks. Its Quantum Origin platform provides the world’s only quantum-computing-hardened encryption keys to protect data and assets from advanced threats. ','303 S Technology Ct',NULL,'Broomfield','CO','USA'); -INSERT INTO vendors VALUES('a3548892-4e46-4bc4-815d-4ce7f297e193','published','mutare-inc','Mutare, Inc.','www.mutare.com','With over 30 years of developing enterprise-class solutions, our technologies work seamlessly with your existing infrastructure to immediately protect your organization and team members from robocalls, vishing, smishing, and social engineering.','2325 Hicks Road',NULL,'Rolling Meadows','IL','USA'); -INSERT INTO vendors VALUES('a815aa07-96c0-4cf7-80f2-58a62a7a4e44','published','mimecast','Mimecast','www.mimecast.com',replace('Mimecast: Work Protected™ \nSince 2003, Mimecast has stopped bad things from happening to good organizations by enabling them to work protected. We transform email and collaboration security into the eyes and ears of 40,000 organizations worldwide to mitigate risk and simplify complexities. Our solutions provide the proactive threat detection your workplace needs today. ','\n',char(10)),'191 Spring Street',NULL,'Lexington','MA','USA'); -INSERT INTO vendors VALUES('99bca174-1f40-4afc-8e66-ddf7c53fee1c','published','mandiant-google-cloud','Mandiant | Google Cloud','http://mandiant.com/events/rsac','Mandiant | Google Cloud: where frontline intelligence meets cloud innovation. We provide the tools you need to understand, detect, and respond to security incidents. With a cloud-native security operations platform and the most trusted cloud for digital transformation, we’re here to deliver swifter, targeted solutions to cyber threats.','11955 Freedom Drive',NULL,'Reston','VA','USA'); -INSERT INTO vendors VALUES('e59b2908-49c1-433d-a7f0-70b3ed63a729','published','microsoft','Microsoft','https://www.microsoft.com/security','Microsoft Security helps eliminate gaps and get simplified, comprehensive protection and expertise so you can be fearless as you grow, create, and innovate','One Microsoft Way',NULL,'Redmond','WA','USA'); -INSERT INTO vendors VALUES('21458143-9354-4d7a-9678-d8195a64705a','published','mira-security','Mira Security','www.mirasecurity.com','Mira Security provides visibility into network traffic as our customers transition to higher speeds and new architectures, and eliminates the compromise between privacy and security.','3159 Unionville Road ','Suite 100','Cranberry Twp.','PA','USA'); -INSERT INTO vendors VALUES('649f74a4-1f01-43c0-b8e7-7ae0e03cb1e1','published','mazebolt','MazeBolt','https://www.mazebolt.com','MazeBolt is pioneering a new standard in DDoS testing with its non-disruptive vulnerability solution, RADAR™️. The solution continuously detects, analyzes, and prioritizes remediation across the network with zero downtime.','Moshe Aviv Towers 46th Fl','Jabostinsky 7','Ramat Gan',NULL,'ISR'); -INSERT INTO vendors VALUES('9ff39164-d868-4b40-b12b-24fbe9f9a486','published','mondoo','Mondoo','www.mondoo.com','Mondoo is an open and extensible security platform that creates a full asset inventory and prioritizes critical issues to address pressing security challenges. Avoid ransomware attacks, failed audits, and understand your risk profile with Mondoo.','602 Preston Village Way',NULL,'Cary','NC','USA'); -INSERT INTO vendors VALUES('d0f557dd-c92b-4c63-8f6a-3ad139016d76','published','malwarebytes-for-business','Malwarebytes for Business','www.malwarebytes.com/business','Malwarebytes for Business makes it easy for resource-constrained IT teams to prevent more threats, detect and stop zero-day vulnerabilities, and thoroughly remove malware to restore operations. Combining award-winning EDR, proprietary remediation technology and a world-class team of threat hunters, Malwarebytes continuously protects thousands of businesses worldwide.','3979 Freedom Circle ','12th Floor','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('99f8f0e0-7ed6-4d77-a334-711acd00b105','published','mend','Mend','www.mend.io','Mend io, formerly WhiteSource, takes away the burden of fixing application security problems allowing development teams to deliver quality, secure code, faster. ','93 Summer Street',NULL,'Boston','MA','USA'); -INSERT INTO vendors VALUES('62421ff1-406e-4db9-8950-f5541a7eedf3','published','whistic','Whistic','www.whistic.com','Whistic simplifies how businesses assess, publish, and share security documentation with customers and vendors. ','365 S. Garden Grove Lane ','Suite 220','Pleasant Grove','UT','USA'); -INSERT INTO vendors VALUES('bd9d31d8-4e20-4d34-9d02-f978f882f156','published','waratek','Waratek','www.waratek.com','Waratek is the only Security-as-Code Application Security platform that automates the manual process of fixing known and unknown code vulnerabilities.','159 N Sangamon ','Suite 200','Chicago','IL','USA'); -INSERT INTO vendors VALUES('1a7cc713-2128-4a21-a275-b00f71259666','published','wolfssl','wolfSSL','www.wolfssl.com','wolfSSL provides lightweight and embedded security solutions with an emphasis on speed, size, portability, features, and standards compliance. wolfSSL is currently the leader in embedded FIPS certificates. For more information visit our booth 6373','10016 Edmonds Way','C-300','Edmonds','WA','USA'); -INSERT INTO vendors VALUES('27b1635f-5a61-4fcb-af77-91a5b411e00f','published','wallarm','Wallarm','www.wallarm.com','Security and DevOps teams choose Wallarm to discover all cloud-native APIs and legacy web applications running in their environment, and to detect & respond to threats against them.','188 King Street, ','Unit 508','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('dffc973f-4ffc-4d94-9be1-94aa5496a11c','published','withsecure','WithSecure','https://www.withsecure.com/us-en/home','WithSecure™ builds outcome-based cyber security solutions and services for businesses on F-Secure’s 35-year expertise. ','Tammasaarenkatu 7','PL 24','Helsinki',NULL,'FIN'); -INSERT INTO vendors VALUES('2ac91f2d-14f1-4c3a-a0d5-8336d55ccc67','published','optiv','Optiv','www.optiv.com',replace('Optiv is the cyber advisory and solutions leader. We manage cyber risk so you can secure your full potential.\n','\n',char(10)),'1144 15th Street ','Suite 2900','Denver','CO','USA'); -INSERT INTO vendors VALUES('38950c53-96ed-457e-a28e-a444978185f8','published','optimal-idm','Optimal IdM','www.optimalidm.com','Optimal IdM is a global provider of innovative and affordable identity access management solutions that meet businesses specific security, usability, and scalability needs for every industry as well as federal, state and local government agencies. ','3959 Van Dyke Rd. ','Suite 190','Lutz','FL','USA'); -INSERT INTO vendors VALUES('386563de-e351-4727-be05-f297f49d048c','published','ox-security','Ox Security','https://www.ox.security/',replace('OX Security transforms fragmented workflows and noise from tool overload into Continuous Software Supply Chain Security. Protect dev and prod environments, build and deliver secure software, and secure your software supply chain, from code to cloud.\n','\n',char(10)),'Tozeret Haaretz 7',NULL,'Tel Aviv ',NULL,'ISR'); -INSERT INTO vendors VALUES('fc88cb06-875c-43cc-8808-ab83956af300','published','ontinue-the-mdr-division-of-open-systems','Ontinue, the MDR division of Open Systems.','https://www.ontinue.com/','Ontinue is the only MDR provider that leverages AI-driven automation, human expertise, and the Microsoft security platform to continuously assess and protect your environment and advance your security posture for digital transformation.','450 Maple Street',NULL,'Redwood City','CA','USA'); -INSERT INTO vendors VALUES('f12810a3-c41a-4575-a117-53e346907939','published','ordr','Ordr','https://ordr.net/','Ordr makes it easy to see, know, and secure every connected device, from traditional IT to newer and more vulnerable IoT, IoMT, and OT devices.','2445 Augustine Drive ','Suite 601','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('1a21cbe7-dbe1-4fba-8a90-f281aab3e33c','published','onetrust','OneTrust','www.onetrust.com',replace('The market-defining Trust Intelligence Platform from OneTrust connects privacy, GRC, ethics, and ESG teams, data, and processes, so all companies can collaborate seamlessly and put trust at the center of their operations and culture by unlocking their value and potential to thrive by doing what’s good for people and the planet.\n\nLearn more at OneTrust.com.\n','\n',char(10)),'1200 Abernathy Rd ','Suite 700','Atlanta','GA','USA'); -INSERT INTO vendors VALUES('55a27aee-5a97-46c5-9dd0-c4c42a779b52','published','opentext-cybersecurity','OpenText Cybersecurity','https://www.opentext.com/products/cyber-security','OpenText Cybersecurity provides comprehensive security solutions for companies and partners of all sizes. From prevention, detection and response to recovery, investigation and compliance, our unified end-to-end platform helps customers build cyber resilience via a holistic security portfolio. ','385 Interlocken Crescent','Suite 800','Broomfield','CO','USA'); -INSERT INTO vendors VALUES('e373784b-586f-420c-948c-2436599c4756','published','open-raven','Open Raven','www.openraven.com','Open Raven is the secure, private, budget-safe data security posture management solution that prevents leaks, breaches, and compliance incidents across thousands of accounts, billions of objects, and petabytes of data. Learn more at openraven.com','601 Marshall St.',NULL,'Redwood City','CA','USA'); -INSERT INTO vendors VALUES('cc26a8ba-dde9-475f-a285-ff23d38bd589','published','halcyon','Halcyon','www.halcyon.ai','Halcyon is the first, dedicated anti-ransomware and endpoint resiliency platform focused on reducing the risk and impact of destructive ransomware events. Learn more at www.halcyon.ai','5900 Balcones Drive ','Suite 5404','Austin','TX','USA'); -INSERT INTO vendors VALUES('f5af83bb-fc58-4526-a7b9-50935158c31c','published','zimperium','Zimperium','www.zimperium.com','Founded upon the premise that mobile security requires a novel approach, Zimperium protects both mobile devices and the entire application development cycle to ensure secure access to enterprise data.','4055 Valley View ','Suite 300','Dallas','TX','USA'); -INSERT INTO vendors VALUES('b5d2a094-63e3-42a9-a1e6-bf3c67787737','published','oloid-inc','Oloid, Inc.','www.oloid.com','OLOID is a leading provider of physical identity and access technology, dedicated to facilitating secure and privacy-focused authentication for the contemporary workplace.','440 N Wolfe Rd.',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('5ed3f660-c359-4b46-89bd-8ff9ae5b512c','published','obsidian-security','Obsidian Security','www.obsidiansecurity.com','Obsidian Security is the only comprehensive security solution built for SaaS. We help reduce enterprise risk by proactively identifying SaaS misconfigurations, detecting real-time threats and enabling visibility into risky SaaS integrations.','680 Newport Center Drive ','Suite 200','Newport Beach','CA','USA'); -INSERT INTO vendors VALUES('0db96494-f2bd-4f03-918c-d2e862399527','published','kyndryl','Kyndryl','https://www.kyndryl.com/us/en/services/cyber-resilience','Kyndryl Security and Resiliency provides the expertise, services and technologies that help enterprises anticipate, protect against, withstand, and recover from adverse conditions, stresses, attacks and compromises of cyber-enabled services. ','1 Vanderbilt Ave',NULL,'New York','NY','USA'); -INSERT INTO vendors VALUES('d2b93d14-2e2c-40dd-989a-ff2c51fdee94','published','kandji','Kandji','www.kandji.io','We’re Kandji: the Apple device management and security platform that empowers secure and productive global work.','101 W Broadway ','Suite 1440','San Diego','CA','USA'); -INSERT INTO vendors VALUES('bb1f09be-0d81-4ec5-a36b-363417baaa47','published','keyfactor','Keyfactor','www.keyfactor.com','Keyfactor is the identity-first security solution for modern enterprises. Keyfactor brings digital trust to the hyper-connected world with identity-first security for every machine and human.','6150 Oak Tree Blvd. ','Suite 200','Independence','OH','USA'); -INSERT INTO vendors VALUES('e35c56b1-81f9-405c-9ec8-856e36e0fbd3','published','kingston-technology','Kingston Technology','www.kingston.com/us','Kingston Technology is known for many things, from memory and storage solutions like solid-state drives (SSDs) and encrypted USBs to high-performance memory. Kingston is made of amazing people who operate more like a family than a large corporation.','17600 Newhope St.',NULL,'Fountain Valley','CA','USA'); -INSERT INTO vendors VALUES('daa1d3e6-38c6-464b-aeb4-455701ed9ed9','published','keysight-technologies','Keysight Technologies','https://www.keysight.com/us/en/products/network-visibility.html',replace('Keysight Network Visibility & Test solutions eliminate blind spots, expose hidden threats and validate network architectures. Our tools enable enterprises, NEMs, SPs and governments to optimize network performance and defend against cyberattacks.   \n','\n',char(10)),'1400 Fountaingrove Parkway',NULL,'Santa Rosa','CA','USA'); -INSERT INTO vendors VALUES('7c43e7f5-bcb8-484c-b473-7298b1ba35a5','published','heroic-com','HEROIC.com','www.heroic.com','With a vision to protect against next-generation cyber threats, HEROIC began with reactive cybersecurity solutions. Although enterprise-level products have drastically improved, artificially-intelligent solutions have yet to reach the masses.','1881 W Traverse Pkwy','Ste E257','Lehi','UT','USA'); -INSERT INTO vendors VALUES('9e2b5baf-46fc-4928-9b9c-e71d7b811906','published','hub-security','HUB Security','https://hubsecurity.com/',replace('HUB Security specializes in unique Cyber Security solutions protecting sensitive information. The company’s Confidential Computing platforms secure the entire computing stack environment by utilizing advanced encryption and Cyber Digital Twins.\n\n\n','\n',char(10)),'17 Rothschild Av.',NULL,'Tel Aviv',NULL,'ISR'); -INSERT INTO vendors VALUES('675bf6cc-d537-4732-8400-8957f7a384d7','published','korea-trade-investment-promotion-agency','Korea Trade-Investment Promotion Agency','www.kotrasv.org',replace('[KOREA PAVILION] \nKorea Trade-Investment Promotion Agency is a state-funded organization operated by the Government of South Korea which has facilitated Korea''s rapid export-led economic development through various trade promotion activities.','\n',char(10)),'3003 North First Street',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('78dc3cee-5aee-46f7-8ee2-6bed45b0ab26','published','zscaler','Zscaler','www.zscaler.com','Zscaler accelerates digital transformation with its Zero Trust Exchange, an SSE-based platform that provides fast, secure connections between users, devices, and applications over any network.','120 Holger Way',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('9854312d-ad8a-4c12-bf0f-dc244908fd68','published','zpe-systems','ZPE Systems','zpesystems.com',replace('ZPE Systems addresses IT pain from service reliability, security & personnel shortages delivering out-of-band automation infrastructure to simplify Hyperautomation. Six of 10 tech giants rely on ZPE to eliminate human error from datacenter to edge.\n','\n',char(10)),'3793 Spinnaker Court',NULL,'Fremont','CA','USA'); -INSERT INTO vendors VALUES('37571df6-8557-4bed-907b-9ab4d6015118','published','human','HUMAN','https://www.humansecurity.com/?utm_source=rsa_portal&utm_medium=referral&utm_campaign=rsa_apr_2023&utm_content=link','HUMAN is a cybersecurity company that safeguards 465+ customers from digital attacks, including bots, fraud and account abuse with an industry-leading modern defense strategy. To Know Who’s Real, visit www.humansecurity.com.','111 W 33rd Street ','Floor 11','New York','NY','USA'); -INSERT INTO vendors VALUES('21c53653-b1d0-4757-98ca-618dc7681445','published','zenity','Zenity','www.zenity.io','The only security governance platform for no-code/low-code development. Zenity enables enterprises to promote no-code/low-code and citizen development securely- discover shadow app development, detect risks, and enforce security policies.','10 Dubnov street',NULL,'Tel-Aviv',NULL,'ISR'); -INSERT INTO vendors VALUES('1d605a1e-4c29-400f-9cc8-21c5aae9f39d','published','huntress','Huntress','www.huntress.com','We protect small and mid-sized businesses from cyber threats. Founded by NSA veterans and backed by a team of 24/7 threat hunters—our managed security platform defends against persistent footholds, ransomware and other attacks. Visit huntress.com.','6021 University Ave. ','Suite 450','Ellicott City','MD','USA'); -INSERT INTO vendors VALUES('76d08b39-4ceb-48d4-a4e8-3c55cc8deb71','published','picus','PICUS','https://www.picussecurity.com/',replace('Picus Security makes it easy for security teams to validate cyber resilience 24/7. As the pioneer of Breach & Attack Simulation, our Complete Security Validation Platform identifies security gaps and optimizes controls & processes to mitigate them.\n\n\n','\n',char(10)),'160 Spear Street','#1000','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('190ce542-17e0-4d77-8440-f85e01aa1671','published','hillstone-networks','Hillstone Networks','www.hillstonenet.com','Hillstone Networks'' innovative and accessible cybersecurity solutions enable an enterprise’s cyber resilience by providing visibility, intelligence and protection to see, understand, and act against cyberthreats.','5201 Great America Parkway ','#420','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('b10c73a9-b215-4d07-8b75-ecb65046f0e7','published','haproxy-technologies','HAProxy Technologies','www.haproxy.com',replace('HAProxy Technologies is the company behind HAProxy, the world’s fastest and\nmost widely used software load balancer. Deploy HAProxy products to deliver websites and applications with the utmost performance, observability, and security at any scale.','\n',char(10)),'375 Totten Pond Road','Suite 302','Waltham','MA','USA'); -INSERT INTO vendors VALUES('882eade6-cbae-4456-bba4-f8041542b1d0','published','passbolt','Passbolt','https://www.passbolt.com',replace('Passbolt is a security-first, open source password manager for businesses.\n','\n',char(10)),'9 Avenue du Blues',NULL,'Belvaux',NULL,'LUX'); -INSERT INTO vendors VALUES('4e046750-9660-4637-bde6-f7c8fac4f09c','published','partner-with-finland','Partner with Finland','www.fisc.fi','Finland stands for trust, innovation and calmness, qualities that make us humbly the best nation to partner with. Experience the Finnish spirit of good partnership with HoxHunt, Xiphera, SensorFleet, SSH Communications, Binare, Traficom & WithSecure.','Eteläranta 10',NULL,'Helsinki',NULL,'FIN'); -INSERT INTO vendors VALUES('a73a5786-3abf-4def-86be-efc2acf584cf','published','hashicorp-inc','HashiCorp, Inc.','www.hashicorp.com/','HashiCorp provides infrastructure automation software for multi-cloud environments, enabling enterprises to unlock a common cloud operating model to provision, secure, connect, and run any application on any infrastructure.','101 2nd St.','Suite 700','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('680c4a68-2c61-4015-b454-5810b7428fae','published','hughes-an-echostar-company','Hughes, An EchoStar Company','www.hughes.com/security','Hughes provides tailored managed security services and smart connectivity for small, medium or large enterprises. Managed Services, Managed Smarter','11717 Exploration Lane',NULL,'Germantown','MD','USA'); -INSERT INTO vendors VALUES('881c4157-1bfa-444f-8bc7-df50cac91506','published','hoxhunt','Hoxhunt','https://www.hoxhunt.com/','Hoxhunt helps security leaders and employees join forces to prevent data breaches. Combining AI and behavioral science, their Human Risk Management Platform drives behavior change that auto-enhances protect-detect-respond capabilities to lower risk. ','7760 France Avenue South','Suite 1146','Minneapolis','MN','USA'); -INSERT INTO vendors VALUES('b098f279-7e4f-4914-8f27-17ce832752a1','published','privacera','Privacera','www.privacera.com',replace('Privacera is the only open-standards based data security governance leader that enables data and security teams to simplify data access, security, and privacy for data applications and analytical workloads. \n','\n',char(10)),'39300 Civic Center Drive','Suite 140','Fremont','CA','USA'); -INSERT INTO vendors VALUES('2b97b039-5e9f-4c47-b3a9-0b22f0ded9ce','published','processunity','ProcessUnity','https://www.processunity.com/?utm_source=rsa&utm_medium=rsa_website_link&utm_campaign=cpm-shw-tradeshow-rsac-230424&utm_content=sponsor_link','ProcessUnity is a leading provider of cloud-based applications for third-party risk and cybersecurity performance management. The ProcessUnity platform unifies how organizations assess, measure, and mitigate risk through automation. ','3 Bradford Street',NULL,'Concord','MA','USA'); -INSERT INTO vendors VALUES('1271d5dd-c4d6-4f5d-a42e-37756d5e721b','published','pluralsight','Pluralsight','www.pluralsight.com','Pluralsight is the leading technology workforce development company that helps companies and teams build better products by developing critical skills, improving processes and gaining insights through data, and providing strategic skills consulting. ','42 Future Way',NULL,'Draper','UT','USA'); -INSERT INTO vendors VALUES('3e146074-f246-4295-9049-c919d6e61ef2','published','horizon3-ai','Horizon3.ai','www.horizon3.ai','Our autonomous pentesting solution, NodeZero, offers a find, fix, verify loop using AI to identify paths to exploit before attackers do. Continuously verify your security posture by executing internal & external pentests at-scale.','8 The Green ','Suite 8584','Dover','DE','USA'); -INSERT INTO vendors VALUES('1a889051-5535-40f5-89ce-60bdaac73dcc','published','pkware','PKWARE','www.pkware.com','PKWARE offers the only data discovery and protection solution that locates and secures sensitive data to minimize organizational risks and costs, regardless of device or environment. Our software enables visibility and control of personal data, even in complex environments.','201 E. Pittsburgh Ave. ','Suite 400','Milwaukee','WI','USA'); -INSERT INTO vendors VALUES('554daabd-d3e8-4ded-82f4-b74f837c840c','published','panther','Panther','www.panther.com','Panther is a solution for security practitioners who face challenges of security operations at scale. Panther is a threat detection and response platform powered by a highly scalable security data lake and detection-as-code.','38 Bluxome Street',NULL,'San Francisco','CA','USA'); -INSERT INTO vendors VALUES('daf0cc6b-a6ac-4634-b7a0-0193d2bdac2c','published','pradeo','Pradeo','https://www.pradeo.com','Pradeo is a global mobile security leader. It provides solutions to protect mobile device fleets, mobile applications, and associated web services. The technology Pradeo Security is recognized by Gartner, IDC, Forrester and Frost & Sullivan.','71 Place Vauban ','Les Portes d'' Antigone','Montpellier',NULL,'FRA'); -INSERT INTO vendors VALUES('66803190-9ffb-459f-8407-5f8297e775e9','published','nokia','Nokia','www.nokia.com',replace('At Nokia, we create technology that helps the world act together.\nAs a trusted partner for critical networks, we are committed to innovation and technology leadership across mobile, fixed and cloud networks. ','\n',char(10)),'Karakaari 7',NULL,'Espoo',NULL,'FIN'); -INSERT INTO vendors VALUES('b44c225c-2b60-4f2f-935a-762d354e9b44','published','palo-alto-networks','Palo Alto Networks','https://www.paloaltonetworks.com/','Palo Alto Networks is the world’s cybersecurity leader. Our next-gen security solutions, expert services, and industry-leading threat intelligence empower organizations across every sector to transform with confidence. We’re committed to helping ensure each day is safer than the one before.','3000 Tannery Way',NULL,'Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('fe82c5c6-167a-4eb1-919d-0b86f1b47910','published','proofpoint','Proofpoint','www.proofpoint.com','Proofpoint, Inc. is a leading cybersecurity and compliance company that protects organizations’ greatest assets and biggest risks: their people. With an integrated suite of cloud-based solutions, Proofpoint helps companies around the world stop targeted threats, safeguard their data, and make their users more resilient against cyber attacks.','925 W. Maude Ave',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('a149f958-47b3-46ac-a1b2-09e165d1878c','published','netenrich','Netenrich','www.netenrich.com','Netenrich boosts the effectiveness of organizations’ security and digital operations so they can avoid disruption and preempt risk. Its Resolution Intelligence Cloud™ is a native SaaS data analytics platform for managing secure operations. ','2590 N. First Street ','Suite 300','San Jose','CA','USA'); -INSERT INTO vendors VALUES('49d10d82-6d44-4965-8050-e838b52750a5','published','napatech','Napatech','https://www.napatech.com/','Whether your critical network application is commercial, open-source or homegrown, Napatech SmartNICs can offload burdensome infrastructure and pre-processing workloads from the CPU to free up valuable compute resources to your application.','Tobaksvejen 23A',NULL,'Soeborg',NULL,'DNK'); -INSERT INTO vendors VALUES('b76ffaae-310c-4961-be15-aa1e8edd0cd6','published','pentera','Pentera','www.pentera.io','Pentera is the category leader for Automated Security Validation, allowing every organization to test with ease the integrity of all cybersecurity layers including their ransomware readiness, unfolding true, current security exposures at any moment.','200 Summit Drive','Floor 3','Burlington','MA','USA'); -INSERT INTO vendors VALUES('bff854cf-8d16-4540-b588-922d98004227','published','netography','Netography','https://netography.com/','Netography® has created the first network-centric platform that reconstitutes capabilities disrupted by the combined impact of encryption and Atomized Networks across the security world. ','382 NE 191st St.','#60908','Miami','FL','USA'); -INSERT INTO vendors VALUES('97109e2e-68ae-490d-8ccc-ec64334de229','published','netskope','Netskope','www.netskope.com','Netskope, a global cybersecurity leader, is redefining cloud, data, and network security. The Netskope platform provides optimized access and zero trust security for people, devices, and data anywhere they go.','2445 Augustine Dr.','3rd Floor','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('96bccfd5-54a4-453e-a6ff-f6d093c5f645','published','netscout','NETSCOUT','www.netscout.com','The world’s most demanding digital ecosystems rely on our Visibility Without Borders® platform to ensure the performance, security, and availability of their business services. Our solutions include Arbor DDoS Protection and Omnis Network Security.','310 Littleton Rd',NULL,'Westford','MA','USA'); -INSERT INTO vendors VALUES('32d13e5b-4e1d-4c52-984e-ca207f0697ec','published','neosec','Neosec','www.neosec.com','Neosec is reinventing application security. Built for organizations that expose APIs to partners, suppliers, and users, Neosec discovers all your APIs, analyzes their behavior, and stops threats lurking inside.','691 South Milpitas Blvd. ','Suite 212','Milpitas','CA','USA'); -INSERT INTO vendors VALUES('d59b59be-6ea4-41f6-b861-b14444ea449b','published','netally','NetAlly','https://netally.com','NetAlly helps network engineers and technicians better deploy, manage, and maintain complex wired and wireless networks. We simplify network testing, provide instant visibility, and enable seamless collaboration between site and remote personnel.','2075 Research Parkway ','Suite 190','Colorado Springs','CO','USA'); -INSERT INTO vendors VALUES('fa7eec14-cc80-49a6-85d6-01d47473958f','published','nasa-sewp','NASA SEWP','www.sewp.nasa.gov','NASA SEWP GWAC provides the latest in Information Technology products and services for all Federal Agencies and their approved contractors. SEWP offers low prices, the lowest surcharge, and the fastest ordering procedure using pre-competed contracts.','10210 Greenbelt Road ','Suite 200','Lanham','MD','USA'); -INSERT INTO vendors VALUES('5fcf9221-a4f1-4717-886d-051be1b12781','published','ncp-engineering-inc','NCP engineering, Inc.','www.ncp-e.com','NCP is a software vendor and technological market leader for secure communcations products including advanced VPN solutions for cloud environments to level up companies IT strategy for SASE, SD-WAN and Zero Trust.','19321 US Highway 19 N. ','Suite 401','Clearwater','FL','USA'); -INSERT INTO vendors VALUES('de6e6f78-57d0-4922-a071-6f3362cb6b65','published','netwrix','Netwrix','www.netwrix.com','Netwrix empowers information security professionals at more than 13,000 organizations worldwide to identify and protect sensitive data by strengthening their security posture across all three primary attack vectors: data, identity and infrastructure.','6160 Warren Parkway','Suite 100','Frisco','TX','USA'); -INSERT INTO vendors VALUES('1bd6ae88-49ff-4087-9481-ffdddaa578c8','published','next-dlp','Next DLP','nextDLP.com','Next DLP (“Next”) is a leading provider of data protection solutions for organizations with valuable data who need to uncover risk, educate employees and fulfill security, compliance and regulatory needs. ','110 East 42nd St ','Suite 815','New York','NY','USA'); -INSERT INTO vendors VALUES('fb9d1399-b329-48fc-a016-ac8014595952','published','ninjio-cybersecurity-awareness-training','NINJIO Cybersecurity Awareness Training','www.ninjio.com','NINJIO offers a cybersecurity awareness training and simulated phishing solution that uses engaging, 3 to 4-minute Hollywood-style micro-learning videos to empower individuals and organizations to become defenders against cyberthreats.','880 Hampsire Rd. ','Suite B','Westlake Village','CA','USA'); -INSERT INTO vendors VALUES('06adf6dd-b7dc-475a-85b1-436405f1544e','published','nozomi-networks','Nozomi Networks','www.nozominetworks.com','Nozomi Networks accelerates digital transformation by protecting critical infrastructure organizations from cyber threats. Our solution delivers exceptional network & asset visibility, threat detection & insights for OT & IoT environments.','575 Market St. ','Suite 3650','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('fff4660f-7655-4b98-97d5-e8aa69b5ad9f','published','nri-secure','NRI Secure','https://www.nri-secure.com/','NRI Secure is a global MSSP delivering 20+ years of managed security services including: 24x7 Cybersecurity Defense ◇ Managed Detection & Response ◇ Vulnerability Management ◇ Security Consulting, Assessment & Pentesting ◇ Security Awareness Training','26 Executive Park ','#150','Irvine','CA','USA'); -INSERT INTO vendors VALUES('8fff2e56-8579-4acc-a0b9-a754e2e85073','published','laminar','Laminar','www.laminarsecurity.com','Laminar’s Cloud Data Security Platform protects data for everything you build and run in the cloud. Visit: www.laminarsecurity.com.','1013 Centre Road',NULL,'Wilmington','DE','USA'); -INSERT INTO vendors VALUES('1a9e504a-e8b8-4a1e-9065-8319145d1661','published','lumu-technologies','Lumu Technologies','www.lumu.io','Lumu is focused on helping organizations detect threats and confirmed instances of compromise. Applying principles of continuous compromise assessment, Lumu has built a solution that helps security teams accelerate compromise detection in real-time.','8600 NW 36 Street','Suite 150','Doral','FL','USA'); -INSERT INTO vendors VALUES('07533898-bf7d-40cb-a8e9-2c31057fc765','published','lanner-electronic-inc','Lanner Electronic Inc.','www.lannerinc.com','Lanner Electronics Inc is a world leading provider of design, engineering and manufacturing services for advanced network appliances and rugged applied computing platforms for system integrator, service providers and application developers.','7F, 173 Datong Road Section 2','Xizhi District','New Taipei City ',NULL,'TWN'); -INSERT INTO vendors VALUES('59ee341b-6c4a-4702-80f3-27af9b9cde54','published','lookingglass-cyber-solutions','LookingGlass Cyber Solutions','www.LookingGlassCyber.com',NULL,'10740 Parkridge Blvd ','Suite 200','Reston','VA','USA'); -INSERT INTO vendors VALUES('a219b6a3-8f22-4d9d-a571-52ebeaef6a5e','published','liveaction','LiveAction','http://www.liveaction.com','The LiveAction Network Intelligence platform empowers network and security teams to rapidly resolve network and application performance issues at scale, accelerate threat response, increase employee productivity, and reduce business risk.  ','960 San Antonio Rd. ','Suite 200','Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('675e6d81-eba9-4fda-9115-d5f18ae3931f','published','salt-security','Salt Security','https://salt.security','Salt Security protects the APIs that form the core of every modern application. Our patented API Platform is the only API security solution that combines the power of cloud-scale big data and time-tested ML/AI to detect and prevent API attacks. ','3921 Fabian Way ',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('17075a35-5bec-4580-8c51-bf634b41f549','published','sumo-logic','Sumo Logic','www.sumologic.com','Sumo Logic empowers the people who power modern, digital business through its Continuous Intelligence Platform™ to help practitioners and developers deliver reliable and secure cloud-native applications. For more information, visit www.sumologic.com.','305 Main Street','3rd floor','Redwood City','CA','USA'); -INSERT INTO vendors VALUES('e69ef4a2-1233-4e67-a0c0-f479d9ef4176','published','lumen','Lumen','www.lumen.com','Lumen is dedicated to furthering human progress through technology, providing the fastest, most secure platform for applications and data to help businesses, government and communities deliver amazing experiences around the world.','1025 El Dorado Blvd.',NULL,'Broomfield','CO','USA'); -INSERT INTO vendors VALUES('b10114a0-8313-4a61-966b-f4b2ac8314ba','published','lepide','Lepide','https://www.lepide.com/','Lepide is a global provider of data security solutions. We help thousands of organizations, large and small, protect their sensitive data, reduce their threat surface, and meet compliance through our award-winning Lepide Data Security Platform.','600 Congress Avenue',NULL,'Austin','TX','USA'); -INSERT INTO vendors VALUES('e4a55dc0-2cf7-42f2-9556-500ab2f2e15b','published','logrhythm','LogRhythm','www.logrhythm.com','Security made easy: LogRhythm empowers security teams with the most intuitive experience and contextual analytics into cybersecurity threats so they can reduce noise, prioritize work and quickly secure their environment.','385 Interlocken Crescent Suite 1050',NULL,'Broomfield','CO','USA'); -INSERT INTO vendors VALUES('0e881d97-7c9a-4d03-b0d3-7126ae9f77ce','published','sands-lab','SANDS Lab','https://www.sandslab.io/','For actively responding against cyber security threats, SANDSLab has been putting its best efforts to generate so called “Hyper-Intelligence” and to develop related various base technologies along with AI, big data and cloud technology.','Floor 4, Chosun-Newha Building','Seolleungno 577','Gangnam-gu, Seoul',NULL,'KOR'); -INSERT INTO vendors VALUES('6aec9681-86ad-43e7-b96e-94e7a449a3de','published','legit-security','Legit Security','www.legitsecurity.com','Legit Security''s platform protects an organization''s software supply chain from attack and ensures secure application delivery, governance and risk management from code to cloud.','2345 Yale St. ','1st Floor','Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('014fe9a9-c8d4-4769-86e9-4b482356404f','published','simeon-cloud','Simeon Cloud','www.simeoncloud.com','Simeon Cloud helps IT teams manage their M365 configurations by providing a purpose-built Configuration as Code platform for Microsoft 365. The platform offers baseline management, lifecycle & change management, drift detection, as well as backups.','2570 N. First Street ','2nd Floor','San Jose','CA','USA'); -INSERT INTO vendors VALUES('e8c0ddd9-aaff-402f-ba80-4ded12c78470','published','intelligent-ciso','Intelligent CISO','https://www.intelligentciso.com/','Intelligent CISO is a technology brand that encompasses various intelligence platforms aimed at the enterprise sector looking for updates and research driven data about cybersecurity. As part of Lynchpin Media, this digital medium gives unparalleled advice to the EMEA, APAC and North America cybersecurity communities. Spreading our resources across print, digital and events, Intelligent CISO endeavours to guide CISOs within the EMEA, APAC, North America and Latin America regions with thought leadership, industry expertise, knowledge sharing and practical platforms from which to better understand the views of the cybersecurity industry, encompassing the voice of vendors, distributors, resellers and the all-important end-user. With social media supporting all the above, our content is delivered across all platforms and enables industry professionals to discover and read this on their preferred device.','63-66 Hatton Garden',NULL,'London ',NULL,'GBR'); -INSERT INTO vendors VALUES('3c67a34d-6519-41f7-8af7-c31fe62b6c67','published','sepio','Sepio','https://sepiocyber.com/','Sepio is the leading asset risk management platform that operates on asset existence rather than activity. Within 24 hours, Sepio''s solution will report what assets you actually have and help enhance your cybersecurity posture. ','1 Research Court','Suite 160','Rockville','MD','USA'); -INSERT INTO vendors VALUES('b864a410-4ec9-42de-aa70-ff4527d4086b','published','safebreach','SafeBreach','www.safebreach.com','SafeBreach provides you with visibility across siloed security solutions to reveal your actual risk and promote cross-functional mitigation efficiency.','111 W. Evelyn Avenue ','Suite #117','Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('7277b2d5-7e39-449e-857b-9649e61df96e','published','sgs-north-america','SGS North America','www.sgs.com','Information is your most important and valuable asset. As the world’s leading testing, inspection and certification company, SGS has the global network you need to help you protect your information and provide assurance to your stakeholders.','201 Route 17 North',NULL,'Rutherford','NJ','USA'); -INSERT INTO vendors VALUES('665dcda9-a868-4f10-93cd-0f3ed14c87d6','published','s3m-security','S3M Security','www.s3msecurity.com','S3M Security brings advanced network and information security products offering pioneering solutions from London based office and our centers across US, Europe and EMEA regions.','4 Edgecot Grove, N15 5HD ',NULL,'London',NULL,'GBR'); -INSERT INTO vendors VALUES('0d4dd52c-ea43-455a-9f1e-5e067078586c','published','software-engineering-institute-at-carnegie-mellon-university','Software Engineering Institute at Carnegie Mellon University','www.sei.cmu.edu','The Carnegie Mellon University Software Engineering Institute, a Federally Funded Research and Development Center, conducts evidence-based research, introducing private-sector innovations into government to ensure a more secure tomorrow.','4500 5th Ave.',NULL,'Pittsburgh','PA','USA'); -INSERT INTO vendors VALUES('b3692191-90b3-4384-b1be-ea9d973d58af','published','sysdig','Sysdig','www.sysdig.com','Sysdig is driving the standard for cloud and container security. With Sysdig, teams prioritize software vulnerabilities, detect and respond to threats, and manage configurations, permissions and compliance.','135 Main Street ','21st Floor','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('679c2583-ae24-41e3-b32f-7c9024863596','published','senseon','SenseOn','www.senseon.io','SenseOn improves cyber team productivity with more effective and faster investigations, and reduces costs for its clients by consolidating point solutions and deploying 15x faster than legacy security architectures.','8 St James''s Square',NULL,'London',NULL,'GBR'); -INSERT INTO vendors VALUES('6fc7d36e-9aaa-4494-b263-0109f4017d5b','published','solarwinds','SolarWinds','www.solarwinds.com','SolarWinds is a leading provider of simple, powerful, and secure IT management software. Our solutions provide organizations worldwide with a comprehensive and unified view of today’s distributed and hybrid IT environments.','7171 Southwest Parkway ','Bldg 400','Austin','TX','USA'); -INSERT INTO vendors VALUES('126d531c-054e-4ce1-90fd-b530f4aff734','published','sectigo','Sectigo','sectigo.com','Sectigo is the leading provider of digital certificates and automated Certificate Lifecycle Management (CLM) solutions. Its cloud-based universal CLM platform issues and manages the lifecycles of digital certificates to secure every human and machine identity across the enterprise. Sectigo''s 700,000 customers include 36% of the Fortune 1000. Visit www.sectigo.com.','5 Becker Farm Road ','Ste 300','Roseland','NJ','USA'); -INSERT INTO vendors VALUES('3943d24f-9663-47ee-96e3-c8e71921189d','published','sentinelone','SentinelOne','www.sentinelone.com',replace('SentinelOne (NYSE:S) is pioneering autonomous cybersecurity to prevent, detect, and respond\nto cyber attacks faster and with higher accuracy than ever before. Our Singularity XDR platform\nprotects and empowers leading global enterprises with real-time visibility into attack surfaces,\ncross-platform correlation, and AI-powered response. ','\n',char(10)),'444 Castro Street ','4th Floor','Mountain View','CA','USA'); -INSERT INTO vendors VALUES('f5b7ce86-02bc-475f-88a2-61c2ed0e9470','published','spin-ai','Spin.AI','www.spin.ai',replace(' SpinOne, the all-in-one SaaS data protection platform for your mission-critical SaaS Apps, provides an extra protection layer of security across multiple environments, including Google Workspace, Microsoft Office 365, Salesforce and Slack.\n','\n',char(10)),'2100 Geng Road ','#210','Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('a2fe228c-770a-4851-90fb-b50a0a6b107b','published','slashnext','SlashNext','www.slashnext.com','SlashNext protects the modern workforce from malicious messages with integrated cloud messaging security for email, mobile, and browser that stops BEC, smishing, account takeovers, scams, and phishing attacks in M365, Zoom, SMS, LinkedIn, and more.','6701 Koll Center Parkway ','Suite 250','Pleasanton','CA','USA'); -INSERT INTO vendors VALUES('b6d96df9-04f6-4e4f-92ae-20202c36e86d','published','spyderbat','Spyderbat','www.spyderbat.com','Gain runtime superpowers from Spyderbat to ensure resilience across your Software Development Lifecycle (SDLC) in Linux VMs and Kubernetes clusters. Achieve the ability to time travel, stop application drift, and surgically extract attackers!','7301 Ranch Rd 620 N ','Suite 155','Austin','TX','USA'); -INSERT INTO vendors VALUES('9017b48d-88c6-4d72-9e53-ba38e2bf9641','published','qwiet-ai','Qwiet.ai','https://qwiet.ai/','Qwiet AI is the first AppSec platform to utilize AI and ML to provide highly accurate and relevant findings that enable our customers to spend less time chasing false positives and more time focusing on fixing the vulnerabilities that truly matter.','2033 Gateway Place','Ste. 500','San Jose ','CA','USA'); -INSERT INTO vendors VALUES('657d7944-db95-4eb0-bdba-6b9f72b507e9','published','securityscorecard','SecurityScorecard','www.securityscorecard.com','SecurityScorecard is an information security company that rates cybersecurity postures of corporate entities through completing scored analysis of cyber threat intelligence signals for the purposes of third party management and IT risk management.','Tower 49, 12E 49th St.','Suite 15-001','New York','NY','USA'); -INSERT INTO vendors VALUES('8c93e729-b8b0-42d9-baa4-bd039b0f8a79','published','stackhawk','StackHawk','https://www.stackhawk.com/',replace('StackHawk gives Development teams the ability to find and fix security vulnerabilities during pre-production through automation in CI/CD, while giving AppSec teams controlled and security-tested applications in production.\n\n','\n',char(10)),'1624 Market St ','Suite 226 PMB 36969','Denver','CO','USA'); -INSERT INTO vendors VALUES('9021517a-f2b2-4710-a49d-5fb582253eea','published','silobreaker','Silobreaker','www.silobreaker.com','Silobreaker enables organisations to make confident intelligence-led decisions that reduce risk, by providing insights no other solution can match, at unprecedented speed.','Holden House 4th Floor ','57 Rathbone Place','London',NULL,'GBR'); -INSERT INTO vendors VALUES('66cd84cc-a8d4-42fe-ade3-4294c6498f9b','published','snyk','Snyk','snyk.io',NULL,'100 Summer Street ','7th Floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('aadd32f4-bdf4-4f76-86e5-92a65f5852c2','published','saviynt','Saviynt','www.saviynt.com','Saviynt’s Enterprise Identity Cloud helps enterprises scale cloud initiatives and solve security and compliance challenges. Saviynt brings together identity governance, cloud security, and privileged access to secure the entire business ecosystem. ','1301 E. El Segundo Blvd. ','Suite D','El Segundo','CA','USA'); -INSERT INTO vendors VALUES('0029db09-1b29-477d-929b-f95d2e189e9e','published','securitymetrics','SecurityMetrics','www.securitymetrics.com','SecurityMetrics secures peace of mind for organizations that handle sensitive data. They hold their tools, training, and support to a higher, more thorough standard of performance and service. Never have a false sense of security.™','1275 W 1600 N',NULL,'Orem','UT','USA'); -INSERT INTO vendors VALUES('4938b523-5b48-463b-b5b0-a11f890bd204','published','sonicwall','SonicWall','www.sonicwall.com','SonicWall delivers Boundless Cybersecurity for the hyper-distributed workforce era with an industry-leading TCO. SonicWall empowers enterprises, governments and SMBs worldwide with threat intelligence critical to remain ahead of tomorrow''s threats.','1033 McCarthy Blvd',NULL,'Milpitas','CA','USA'); -INSERT INTO vendors VALUES('2334fe11-d2d8-4b5c-a61c-0df262a9e04f','published','strider','Strider','www.striderintel.com','Strider is revolutionizing the way companies protect their innovation and compete in an era of competition. Our technology enables clients to identify, manage, and respond to nation state directed IP theft and supply chain vulnerabilities.','10377 South Jordan Gateway','Suite 150','South Jordan','UT','USA'); -INSERT INTO vendors VALUES('263c4ce5-e50f-4635-b07a-a7da1bcdda63','published','sailpoint','SailPoint','www.sailpoint.com','SailPoint is the leading provider of identity security for the modern enterprise, empowering organizations worldwide to put identity security at the core of their business. ','11120 Four Points Drive ','Suite 100','Austin','TX','USA'); -INSERT INTO vendors VALUES('beb17682-52a1-49f3-a1a6-61d797b16723','published','spycloud','SpyCloud','www.spycloud.com','SpyCloud transforms recaptured darknet data to protect businesses from cyberattacks. Its proprietary engine collects, curates, enriches and analyzes data, allowing enterprises to prevent account takeover, ransomware and online fraud.','2130 South Congress Ave',NULL,'Austin','TX','USA'); -INSERT INTO vendors VALUES('8b328334-4c1b-49c8-a1c5-10c3530d5a95','published','spirion','Spirion','www.spirion.com','Spirion is STEP ONE in sensitive data governance. Spirion’s Privacy-Grade™ data protection platform addresses these challenges with our sensitive data governance framework — a comprehensive foundation for data security and privacy programs.','3030 North Rocky Point Drive West','Suite 470','Tampa','FL','USA'); -INSERT INTO vendors VALUES('10294b5d-b262-4b19-9efb-3f142aa953f9','published','specterops','SpecterOps','www.specterops.io','SpecterOps aspires to set the cadence for the security industry and bring unique insight into the advanced threat actor tradecraft. We help clients shut down attack paths, evaluate, and develop security operations programs, provide premier training courses, and sponsor projects to help the industry.','100 N. Pitt St.','Suite 310','Alexandria','VA','USA'); -INSERT INTO vendors VALUES('5db5342f-a133-4ba8-8c04-1196385b19f8','published','runecast-solutions','RUNECAST SOLUTIONS','https://www.runecast.com/','Runecast is a provider of a patented solution for proactive risk mitigation, security compliance, operational efficiency & mission-critical stability for IT Security and Operations teams. To add proactive to your IT strategy, visit www.runecast.com','300 Delaware Ave','Suite 210, Box #241','Wilmington','DE','USA'); -INSERT INTO vendors VALUES('0ff5ac0c-c65e-4b24-8bb0-df663819da80','published','sans-institute','SANS Institute','www.sans.org','SANS'' full-spectrum of courses, certifications, degree programs, and community events led by the world''s most esteemed cyber professionals provides you and your organization with an unrivaled security foundation and critical edge required to win.','11200 Rockville Pike ','Suite 200','North Bethesda','MD','USA'); -INSERT INTO vendors VALUES('dd359d97-b940-4551-b1df-c126e88e535f','published','secureauth','SecureAuth','www.secureauth.com','SecureAuth is a leading next-gen access management and authentication company that enables the most secure and passwordless, continuous authentication experience for everyone. Our mission is to make every digital journey simple, seamless, and secure.','38 Discovery ','Suite 100','Irvine ','CA','USA'); -INSERT INTO vendors VALUES('173ac286-8b64-4312-b651-513e352ec890','published','spanning','Spanning','www.spanning.com','You don''t have time for lengthy, complex, and manual backup and recovery processes. That''s why we''ve created backup solutions purpose built for Microsoft 365, Google Workspace, and Salesforce that are secure, affordable, and insanely easy to use.','701 Brickwell Ave.','#400','Miami','FL','USA'); -INSERT INTO vendors VALUES('3acf608e-30d5-41b1-a479-8d41524b6187','published','stytch','Stytch','https://stytch.com/','Stytch is an all-in-one customer identity and access management platform that enables companies to incorporate frictionless authentication and bot detection technology into applications and websites through flexible API and SDKs.','555 Montgomery Street','Floor 17','San Francisco ','CA','USA'); -INSERT INTO vendors VALUES('2e86dbab-28b9-4cb4-8016-78cc6d52d1df','published','softwarfare','SOFTwarfare','www.softwarfare.com','SOFTwarfare is a trusted provider of passwordless multi-factor authentication and cybersecurity integrations. Our patented solutions combine multi-modal biometric factors with AI and ML learning to rapidly modernize security infrastructures.','7301 Mission Rd. ','Suite 141','Prairie Village','KS','USA'); -INSERT INTO vendors VALUES('aa1e2c24-5c42-4f13-ba1c-ee4d67f7ff73','published','sisa','SISA','www.sisainfosec.com/us/','SISA is a global forensics-driven cybersecurity solutions company trusted by leading organizations for securing their businesses with robust preventive, detective, and corrective cybersecurity solutions. ','Las Colinas The Urban Towers','22 West Las Colinas Boulevard, Suite 1650','Irving','TX','USA'); -INSERT INTO vendors VALUES('176ffee1-8869-4d69-91f9-a7b3397ef9b9','published','secpod-technologies','SecPod Technologies','www.secpod.com','SecPod is a cyber security product company. We prevent cyberattacks. Our SanerNow platform provides continuous visibility to the computing environment, detects vulnerabilities and misconfigurations, mitigates loopholes to eliminate attack-surface.','303 Twin Dolphin Dr 6th Floor',NULL,'Redwood City','CA','USA'); -INSERT INTO vendors VALUES('c0de18f2-a2e4-47b0-97e3-f7cb7bb31347','published','rapidfort','RapidFort','https://www.rapidfort.com/','RapidFort is the first Software Attack Surface Optimization Platform that optimizes and secures modern cloud software automatically, dramatically increasing security and efficiency of an organization.','440 North Wolfe Road',NULL,'Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('db16c9ba-97b3-4dc6-8edb-c370a8e4cd15','published','searchlight-cyber','Searchlight Cyber','www.slcyber.io','Searchlight Cyber provides organizations with relevant and actionable dark web threat intelligence, to help them identify and prevent criminal activity, we have the most comprehensive dataset based on proprietary techniques and research. ','Pure Office, One Port Way',NULL,'Port Solent',NULL,'GBR'); -INSERT INTO vendors VALUES('67525914-76fb-44a2-94cb-02ca23023eed','published','ridge-security-technology-inc','Ridge Security Technology Inc.','www.ridgesecurity.ai','Ridge Security is in the heart of Silicon Valley. Our relentless vision is to bring information security to enterprises, small or large, with cutting edge technology to ensure our customers stay complied, alerted, and secured all the time. ','1601 McCarthy Blvd.',NULL,'Milpitas','CA','USA'); -INSERT INTO vendors VALUES('40d97783-3e8d-43fc-84b8-4465a87af475','published','recorded-future','Recorded Future','www.recordedfuture.com','Recorded Future is the world’s largest intelligence company. Its Intelligence Cloud provides complete coverage across adversaries, infrastructure, and targets, empowering countries and organizations to disrupt adversaries.','363 Highland Avenue ','Suite 2','Somerville','MA','USA'); -INSERT INTO vendors VALUES('7e946c51-02d6-4d8b-ba60-d9fb47016ee8','published','resecurity-inc','Resecurity, Inc.','www.resecurity.com','Resecurity® is a cybersecurity company that delivers a unified platform for endpoint protection, risk management, and cyber threat intelligence.','445 S. Figueroa Street','Suite 3100','Los Angeles','CA','USA'); -INSERT INTO vendors VALUES('9c015820-0f90-4d2c-989c-069645e72bfb','published','riskoptics','RiskOptics','riskoptics.com','RiskOptics helps organizations make proactive, risk-informed decisions by unifying compliance, cybersecurity and IT risk activities and aligning them with the business objectives your organization cares about.','548 Market Street','#73905','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('108c8fc7-4a58-421b-a418-a9a155e3de6c','published','red-canary','Red Canary','www.redcanary.com','Red Canary stops cyber threats no one else does, so organizations can fearlessly pursue their missions. We do it by delivering managed detection and response (MDR) across enterprise endpoints, cloud workloads, network, identities, and SaaS apps. ','1601 19th St','900','Denver','CO','USA'); -INSERT INTO vendors VALUES('f7bc35ac-b559-4f55-864b-0785dc5684d6','published','relyance-ai','Relyance AI','relyance.ai',replace('Privacy. It''s in the Code. Using machine learning, Relyance AI builds a dynamic, real-time data inventory and map so your organization can monitor how personal data moves through your code, applications, infrastructure, and to third-party vendors.\n','\n',char(10)),'1900 South Norfolk Street ','Suite 350','San Mateo','CA','USA'); -INSERT INTO vendors VALUES('f134c7b8-444c-46dd-a1e9-72aa1d3a51c3','published','rangeforce','RangeForce','www.rangeforce.com','RangeForce reduces cyber risk with a cloud-based upskilling platform designed to help SOC teams detect, disrupt, and defend against the latest threats. ','440 Monticello Ave. ','Ste. 1802 PMB 44296','Norfolk','VA','USA'); -INSERT INTO vendors VALUES('db2300ad-e5d9-446c-9da0-6bfbef0cf595','published','rubrik','Rubrik','www.rubrik.com','Rubrik is a cybersecurity company on a mission to secure the world’s data. Our Zero Trust Data Security™ platform keeps your data secure, monitors your data risks, and quickly recovers your data, wherever it lives.','3495 Deer Creek Road',NULL,'Palo Alto','CA','USA'); -INSERT INTO vendors VALUES('118de4cb-819c-4878-a888-36771f8e3e99','published','rackspace-technology-government-solutions','Rackspace Technology-Government Solutions','https://www.rackspace.com/industry/government','The Rackspace Government Solutions portfolio offers unparalleled multicloud, security and compliance expertise; empowering Public Sector organizations and their partners to confidently design, build, manage, and optimize the cloud. ','9836 Bowden Mill Court',NULL,'Land O Lakes','FL','USA'); -INSERT INTO vendors VALUES('85094a4c-20fe-4db4-ab31-c6730b502518','published','common-vulnerabilities-and-exposures-cve-program','Common Vulnerabilities and Exposures (CVE) Program','www.cve.org','The mission of the CVE® Program is to identify, define, and catalog publicly disclosed cybersecurity vulnerabilities. ','7515 Colshire Drive',NULL,'McLean','VA','USA'); -INSERT INTO vendors VALUES('d735c2aa-11d5-4d49-92e9-e13fa3a7e1e4','published','rockwell-automation','Rockwell Automation','https://www.rockwellautomation.com/en-us/capabilities/industrial-cybersecurity.html','We provide end-to-end industrial cybersecurity protection for operational technology, from plant floor to cloud. Our proven solutions ensure today’s manufacturers have reliable threat protection and are equipped for secure digital transformation. ','1201 S Second Street',NULL,'Milwaukee','WI','USA'); -INSERT INTO vendors VALUES('7896b940-33be-4ff1-9b77-9fa6fd816bbf','published','reliaquest','ReliaQuest','www.reliaquest.com','ReliaQuest, the force-multiplier of security operations, increases visibility, reduces complexity, and manages risk with its cloud-native security operations platform, GreyMatter. ','1001 Water Street','Suite 1400','Tampa','FL','USA'); -INSERT INTO vendors VALUES('5e9b6380-852c-4981-9d5e-5700f791e43e','published','code42','Code42','code42.com','Code42 is the leader in Insider Risk Management. Native to the cloud, the Code42® Incydr™ solution rapidly detects data loss and speeds incident response without inhibiting employee productivity. With Code42, security professionals can protect corporate data and reduce insider threats while fostering an open and collaborative culture for employees.','100 Washington Avenue South','Suite 2000','Minneapolis','MN','USA'); -INSERT INTO vendors VALUES('38caf300-c009-410f-b3c3-439bd09779c1','published','comcast-business','Comcast Business','www.business.comcast.com','Comcast Business is a leading connectivity provider for small and mid-size businesses and a rising leader in technology solutions for the Enterprise market.','1701 JFK Blvd.',NULL,'Philadelphia','PA','USA'); -INSERT INTO vendors VALUES('028f9c22-44d6-4446-8276-fb9bfc0c58e7','published','cloud-native-computing-foundation-cncf','Cloud Native Computing Foundation (CNCF)','https://www.cncf.io/','CNCF is the vendor-neutral hub of cloud native computing, dedicated to making cloud native ubiquitous. ','548 Market St','PMB 57274','San Francisco ','CA','USA'); -INSERT INTO vendors VALUES('d7e9df0d-d3d1-42ac-b596-ac52a594eb2b','published','radiant-logic','Radiant Logic','www.radiantlogic.com','Radiant Logic, the Identity Data Fabric company, helps organizations combat complexity and improve security by making identity data easy to use, manage, and protect. Improve decision making, accelerate innovation, and minimize risk with RadiantOne.','75 Rowland Way ','Suite 300','Novato','CA','USA'); -INSERT INTO vendors VALUES('e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','published','crowdstrike','CrowdStrike','https://www.crowdstrike.com/',replace('CrowdStrike (Nasdaq: CRWD), a global cybersecurity leader, has redefined modern security with the world’s most advanced cloud-native platform for protecting critical areas of enterprise risk — endpoints and cloud workloads, identity and data.\n\nCrowdStrike: We stop breaches.','\n',char(10)),'150 Mathilda Place ','Suite 300','Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('119b447d-223f-4274-9986-84dd1830d4e0','published','ctm360','CTM360','www.ctm360.com','A global Digital Risk Protection Platform, CTM360® identifies vulnerabilities, and detects, manages and responds to threats in the Surface, Deep & Dark web. Offered as a fully managed technology platform in the cloud.','Office 2101 Bahrain Financial Harbour',NULL,'Manama',NULL,'BHR'); -INSERT INTO vendors VALUES('48d740df-7602-4e6c-b8e2-9cc93b2e936b','published','cequence-security','Cequence Security','www.cequence.ai','Cequence Unified API Protection maximizes API business value, eliminates shadow API risk and protects all APIs against attacks. Cequence, Know the Unknown, Protect the Unprotected ','100 S Murphy St.','#300','Sunnyvale','CA','USA'); -INSERT INTO vendors VALUES('2066516f-e6d2-41e6-8ef2-9a450750e7ef','published','center-for-internet-security','Center for Internet Security','www.cisecurity.org',replace('CIS® is responsible for the CIS Benchmarks™ and CIS Critical Security Controls®, globally recognized best practices for securing IT systems and data. Our CIS Hardened Images® provide secure, on-demand, scalable computing environments in the cloud.\n','\n',char(10)),'31 Tech Valley Drive ','Suite 2','East Greenbush','NY','USA'); -INSERT INTO vendors VALUES('7c8fbdf8-4350-4f26-a2c5-a1792f633ba2','published','cynet','Cynet','https://www.cynet.com/','Cynet’s end-to-end, natively automated XDR platform was purpose-built to enable lean IT security teams to easily achieve comprehensive, effective, and efficient protection regardless of their resources. ','33 Arch Street',NULL,'Boston','MA','USA'); -INSERT INTO vendors VALUES('c02f3aae-1e0d-47c4-8610-f8736ce4dd02','published','cyera','Cyera','cyera.io','Cyera is the data security company that gives businesses visibility, context and control over their sensitive data. As a pioneer in Data Security Posture Management, Cyera empowers teams to reduce the attack surface and ensure operational resilience.','3 East 3rd Ave. ','Suite 200','San Mateo','CA','USA'); -INSERT INTO vendors VALUES('4b69039a-acad-464a-abb2-2b0a1e1049ff','published','cybersecurity-and-infrastructure-security-agency-cisa','Cybersecurity and Infrastructure Security Agency (CISA)','www.cisa.gov',replace('As America’s Cyber Defense Agency and the National Coordinator for critical infrastructure resiliency and security, CISA leads the national effort to understand, manage, and reduce risk to the cyber and physical infrastructure. \n','\n',char(10)),'1110 N. Glebe Road',NULL,'Arlington','VA','USA'); -INSERT INTO vendors VALUES('f72eb235-2bb1-4629-9043-b2b5154ae5dd','published','cyderes','Cyderes','www.cyderes.com','As the #1 MSSP in the world (Cyber Defense Magazine’s 2021 Top MSSPs List), Cyderes is a global cybersecurity powerhouse offering comprehensive solutions around managed security, identity and access management, and professional services.','13333 Holmes Rd',NULL,'Kansas City','MO','USA'); -INSERT INTO vendors VALUES('134014ff-400a-4165-af24-2f658ba38732','published','cyberhaven','Cyberhaven','https://www.cyberhaven.com/','Cyberhaven is the data security company transforming how companies protect their valuable information. Our data tracing technology protects data other security products can’t see, from threats they can’t detect, across assets they can’t control.','101 Metro Dr.','Suite #340','San Jose','CA','USA'); -INSERT INTO vendors VALUES('67233af8-9a37-4503-9b5b-8b12030d5d2e','published','cyberint','CYBERINT','https://www.cyberint.com/','Cyberint fuses threat intelligence with attack surface management, providing extensive integrated visibility into their external risk exposure. Leveraging autonomous discovery of all external-facing assets, coupled with open, deep & dark intelligence','17 Ha-Mefalsim St',NULL,'Petah Tikva',NULL,'ISR'); -INSERT INTO vendors VALUES('1c070431-05ea-41ac-9601-8d086581f0cf','published','cycode','Cycode','www.cycode.com','Application Security That Delivers Visibility And Integrity Across The SDLC','181 Metro Drive ','Suite 290','San Jose','CA','USA'); -INSERT INTO vendors VALUES('da16129f-6005-4d3a-9c91-890ed477feb0','published','censys','Censys','https://censys.io/','The one place to understand everything on the internet. Censys is the proven leader in Attack Surface Management by relentlessly searching and proactively monitoring your digital footprint far more broadly and deeply than ever thought possible.','116 S Main Street',NULL,'Ann Arbor','MI','USA'); -INSERT INTO vendors VALUES('18e4b228-8d4e-4cf9-bc68-c02664283d62','published','critical-start','Critical Start','https://www.criticalstart.com',replace('CRITICALSTART® simplifies breach prevention with managed detection and incident response services powered by our Zero Trust Analytics Platform™ (ZTAP), seasoned SOC, and threat intelligence experts.\n','\n',char(10)),'6100 Tennyson Parkway ','Suite 200','Plano','TX','USA'); -INSERT INTO vendors VALUES('4ecd01fe-f249-475c-8aac-5514473123dd','published','contrast-security','Contrast Security','https://www.contrastsecurity.com/','Contrast Security is a world-leading code security platform company purposely built for developers to get secure code moving and trusted by security teams to protect business applications.','240 Third Street ','Suite 200','Los Altos','CA','USA'); -INSERT INTO vendors VALUES('8c2141b9-b468-4edf-9727-a8f3b75fff0a','published','cigent','Cigent','www.cigent.com','We protect your data from insiders and external sources, such as ransomware and malware (including wiper). Our strategy integrates preventative measures into both storage and individual files, ensuring complete protection throughout their lifespan.','2211 Widman Way ','Suite 150','Ft Meyers','FL','USA'); -INSERT INTO vendors VALUES('36d22286-00d1-4bf9-be29-d09f18273b4e','published','concentric-ai','Concentric AI','www.concentric.ai','Concentric AI''s Data Security Posture Management solutions uses deep learning to accurately categorize data, assess risk, and remediate security issues – without relying on upfront rules or complex configuration and can be deployed in minutes.','19548 Chardonnay Ct.',NULL,'Saratoga','CA','USA'); -INSERT INTO vendors VALUES('5368f957-67e1-48b8-aea9-ae2cb85e0e6b','published','coalfire','Coalfire','www.coalfire.com/','The world’s leading organizations trust Coalfire to elevate their cyber programs and secure the future of their business. #1 in compliance and cloud pen testing, Coalfire provides unparalleled technology-enabled professional and managed services.','11000 Westmoor Circle ','Suite 450','Westminster','CO','USA'); -INSERT INTO vendors VALUES('3d43229e-3794-47ee-872a-2d1ac6631a7a','published','corelight','Corelight','www.corelight.com','Corelight transforms network and cloud activity into evidence so that data-first defenders can stay ahead of ever-changing attacks.','548 Market Street','PMB 77799','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('b5e40917-372c-42dc-b57a-6249cecfcef2','published','cloudflare','Cloudflare','https://www.cloudflare.com/','Cloudflare is the security, performance, and reliability company on a mission to help build a better Internet — Running one of the world’s largest networks, Cloudflare powers & secures anything connected to the Internet including about 20% of the web','101 Townsend Street',NULL,'San Francisco','CA','USA'); -INSERT INTO vendors VALUES('e6b5ee43-d25d-414d-935f-d49964a9bbea','published','cisco','Cisco','www.cisco.com','Cisco''s the worldwide leader in technology that powers the Internet. Cisco inspires new possibilities by reimagining your applications, securing your data, transforming your infrastructure, and empowering your teams for a global and inclusive future.','170 W. Tasman Drive',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('26748f62-b978-4a49-a479-d191bcc2e581','published','cato-networks','Cato Networks','www.catonetworks.com','Cato is the world’s first SASE platform, converging SD-WAN and network security into a global cloud-native service. Cato optimizes and secures application access for all users and locations. CatoNetworks.com ','3031 Tisch Way, 110 Plaza West',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('db743858-0e7d-4f97-b023-74bffde3f65c','published','cardinalops','CardinalOps','www.cardinalops.com','Proactively eliminate detection coverage gaps with automation, analytics, and MITRE ATT&CK. The CardinalOps detection posture management platform helps you close critical security gaps in your existing SIEM/XDR and build a threat-informed defense.','1007 North Orange St',NULL,'Wilmington','DE','USA'); -INSERT INTO vendors VALUES('f411d16d-6f78-49e8-97b1-06eef870873e','published','cybereason','Cybereason','www.cybereason.com',replace('Cybereason arms today’s cyber defenders, with an AI-driven security platform, the most effective in the history of MITRE testing, that can end attacks on the endpoint, across the enterprise, and everywhere the battle is waged. \n','\n',char(10)),'200 Clarendon St ','18th Floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('7c55fecd-4135-400b-b016-353b5737d715','published','cyral','Cyral','www.cyral.com','The Last Line of Defense For Data - Secure databases in any cloud with authentication, authorization, and auditing controls.','691 S Milpitas Blvd. ','Suite 212','Milpitas','CA','USA'); -INSERT INTO vendors VALUES('b5566a53-6e67-420b-a23c-ebc7b04a276c','published','cohesity','Cohesity','https://www.cohesity.com/','Cohesity is a leader in data security and management. Cohesity protects the world’s most critical data workloads and provides organizations a simple way to secure and manage their data across data centers, edge, and cloud. ','300 Park Ave ','Suite 1700','San Jose','CA','USA'); -INSERT INTO vendors VALUES('9fdd7715-8948-4eba-a06e-b5acc4a1e625','published','cyber-defense-magazine','Cyber Defense Magazine','www.cyberdefensemagazine.com',NULL,'1717 Pennsylvania Avenue NW','10th Floor, Suite 1025 ','Washington','DC','USA'); -INSERT INTO vendors VALUES('fa11b1ba-78b7-481d-83a0-88fe228ec672','published','bolster-inc','Bolster, Inc.','www.bolster.ai',replace('Bolster offers the only platform in the world that automates the detection, analysis, and takedown of threats across domains, social media, app stores, and the dark web.\n\n','\n',char(10)),'4940 El Camino Real ','#200','Los Altos','CA','USA'); -INSERT INTO vendors VALUES('26a97c11-2043-453a-9afa-45a53007879e','published','bright-data','Bright Data','brightdata.com','Bright Data is the leading web data platform, with Fortune 500 companies, universities, & small businesses relying on its solutions to retrieve reliable web data efficiently, in order to make better business decisions, faster.','4 Hamahshev St.',NULL,'Netanya',NULL,'ISR'); -INSERT INTO vendors VALUES('5ec33240-9d29-4b1b-92c2-db6ea69daf0b','published','beyondtrust','BeyondTrust','www.beyondtrust.com','BeyondTrust is the worldwide leader in intelligent identity and access security, empowering organizations to protect identities, stop threats, and deliver dynamic access to empower and secure a work-from-anywhere world.','11695 Johns Creek Parkway','Suite 200','Johns Creek','GA','USA'); -INSERT INTO vendors VALUES('87124091-d4cb-4452-b1ee-2e374c73d32e','published','grammatech','GrammaTech','www.grammatech.com','GrammaTech is a leading provider of product security solutions. CodeSonar''s (SAST) integrates into a team''s DevSecOps process . CodeSentry discovers vulnerabilities with out access to source code while creating a software bill of material (SBOM).','6903 Rockledge Drive','Suite 1250','Bethesda','MD','USA'); -INSERT INTO vendors VALUES('e5cf632a-d876-448d-9772-6108eb53124d','published','domaintools','DomainTools','www.domaintools.com','DomainTools is the global leader for Internet intelligence that enables security practitioners to proactively defend their organization in a constantly evolving threat landscape. ','2101 4th Avenue ','Suite 1150','Seattle','WA','USA'); -INSERT INTO vendors VALUES('5c22ea8c-4a31-42dd-b988-213697c49761','published','datasunrise-data-and-database-security','DataSunrise Data and Database Security','www.datasunrise.com','DataSunrise homogeneous security experience in heterogeneous database environment. DataSunrise protects sensitive structured & unstructured data, enforces compliance.Data Auditing, DAM, Database Firewall, Dynamic & Static Data Masking, Data Discovery','3040 78th Avenue SE ','#273','Mercer Island','WA','USA'); -INSERT INTO vendors VALUES('eb0eaf42-29c4-4aca-8788-bfae50f4fb71','published','d3-security','D3 SECURITY','www.d3security.com','D3 Security’s NextGen SOAR is the #1 independent SOAR platform, automating and orchestrating across 500+ integrations with an event pipeline that reduces alerts by over 90%. Build, modify, and scale SecOps workflows with our no-code playbooks.','1450-700 W Pender St',NULL,'Vancouver','BC','CAN'); -INSERT INTO vendors VALUES('9c797883-97b7-4747-ba69-a2874368de75','published','infosecutiry-magazine','Infosecutiry Magazine','www.infosecurity-magazine.com',NULL,'28 The Quadrant',NULL,'Richmond',NULL,'GBR'); -INSERT INTO vendors VALUES('9a6f7666-8927-41a6-9668-fba91629a56b','published','ismg','ISMG','https://ismg.io/',NULL,'902 Carnegie Center','Suite 430','Princeton','NJ','USA'); -INSERT INTO vendors VALUES('6732c915-3498-4dda-9965-d3399676846c','published','infoblox','Infoblox','https://www.infoblox.com/','Infoblox is the company that unites networking and security to deliver better performance and protection. We provide visibility and control over who and what connects to your network and identify threats through intelligent DNS.','2390 Mission College Blvd. ','Suite 501','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('323a2bed-5c8d-4cc5-97c0-b33df7fd32dd','published','enea-qosmos','Enea - Qosmos','www.enea.com/qosmos','Enea Qosmos ixEngine is the leading embedded traffic intelligence & DPI engine. It is used by security vendors & service providers to classify encrypted traffic, applications, services & users in NGFW, FWaaS, SWG, SD-WAN, XDR, SIEM, SASE, ZTNA, AI/ML','1700 Alma Drive','Suite 550','Plano','TX','USA'); -INSERT INTO vendors VALUES('5e77cd0c-5695-480e-aede-275607362e56','published','threatdefence','Threatdefence','www.threatdefence.com','ThreatDefence is a security operations platform that provides evidence-based threat detection and response solutions. Our SecOps platform includes SIEM, NDR, threat hunting, SOC automation, attack surface management, and other services.','88 Pitt St.',NULL,'Sydney',NULL,'AUS'); -INSERT INTO vendors VALUES('c0c373b2-8079-453a-a98e-25ef05d8f6a7','published','iei-technology-usa-corp','IEI Technology USA Corp.','www.ieiworld.com','IEI has more than 25-year experience as a provider of computer-based solutions across diverse applications, in this annual RSA event, IEI will dive into several major core tracks: Edge AI, 5G Networking, Cybersecurity, and Edge to Cloud.','138 University Parkway',NULL,'Pomona','CA','USA'); -INSERT INTO vendors VALUES('7031c12e-9c4f-4718-842e-0a076cb72afd','published','traceable','Traceable','https://www.traceable.ai/','Traceable is the leading API security platform for a cloud-first, API-driven world. The platform helps organizations discover, test and secure APIs, minimize business risk, and optimize the value that APIs bring to their customers.','548 Market Street ','PMB 83903','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('6103e31f-752d-4fd6-b702-b1ccc1b9b82b','published','twingate','Twingate','https://www.twingate.com/',replace('It’s time to break up with your VPN. Connect securely from anywhere with Twingate. Eliminate public attack surfaces and prevent lateral traffic with Twingate’s Zero Trust Network Access. Easy to deploy, even easier to use, and always secure.\n','\n',char(10)),'541 Jefferson Avenue ','# 100','Redwood City','CA','USA'); -INSERT INTO vendors VALUES('3f23cdc2-8045-4597-b882-d3778a366b93','published','futurex','Futurex','www.futurex.com','For over 40 years Futurex has delivered enterprise security solutions for organizations worldwide. Customers choose Futurex for our best-in-class technology solutions and our exceptional customer support.','864 Old Boerne Road',NULL,'Bulverde','TX','USA'); -INSERT INTO vendors VALUES('f25c6ba6-ada2-4567-9e6e-efad9f85cd4d','published','vulcan-cyber','Vulcan Cyber','https://vulcan.io','Vulcan Cyber automates the management of the entire vulnerability risk lifecycle across IT and cloud-native environments by aggregating scan data, prioritizing vulnerability risk to the business, and orchestrating a clear path to risk mitigation.','116 Menachem Begin Street',NULL,'Tel Aviv',NULL,'ISR'); -INSERT INTO vendors VALUES('d239e441-4cae-4af4-92b8-36708740fb5c','published','fbi','FBI','www.fbi.gov',replace('The FBI’s cyber mission is to impose risk and consequences on our cyber adversaries through our unique authorities, world-class investigative capabilities, and enduring partnerships.\n','\n',char(10)),'935 Pennsylvania Ave NW',NULL,'Washington','DC','USA'); -INSERT INTO vendors VALUES('910d3261-7d4b-4c76-a785-9b0d45c1f23e','published','versa-networks','Versa Networks','http://versa-networks.com/','Versa Networks, a leader in single-vendor SASE platforms, provides networking and security with true multitenancy and sophisticated analytics via the cloud, on-premises, or as a combination to meet the SASE needs of small to large enterprises and SPs','2550 Great America Way ','Suite 350','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('9d644ca0-3868-4743-ba78-c2aae1ea4210','published','venafi','Venafi','www.venafi.com','Venafi is the cybersecurity market leader in IAM for machines. From the ground to the cloud, Venafi automates the lifecycle of identities for all types of machines—from physical devices to software applications, APIs & containers.','175 E 400 Street ','Suite 300','Salt Lake City','UT','USA'); -INSERT INTO vendors VALUES('c780a8b2-c4f6-4758-be52-9ab2971be10e','published','feitian-technologies','FEITIAN Technologies','https://ftsafe.us/','FEITIAN is the world’s leading supplier and provider of customizable cyber-physical security, payment and IoT hardware and technology solutions. ','2580 N First St','Unit 130','San Jose','CA','USA'); -INSERT INTO vendors VALUES('064f7e5b-a4fc-43dc-b0ff-fc7fcc830165','published','fortanix','Fortanix','www.fortanix.com','Fortanix secures data, wherever it is. Our data-first approach helps businesses to modernize their security solutions on-premises, in the cloud and everywhere in-between. Enterprises trust Fortanix for data security, privacy and compliance. ','3910 Freedom Circle','Suite 104','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('bf9b0265-06b3-4f98-863d-e2d5ef2c9a5a','published','akamai','Akamai','https://www.akamai.com/','Akamai powers and protects life online. Leading companies choose Akamai to build, deliver, and secure digital experiences. Akamai Connected Cloud, a massively distributed edge and cloud platform, puts apps and experiences closer to users and keeps threats farther away. Learn more about Akamai’s cloud computing, security, and content delivery solutions at akamai.com.','145 Broadway Street',NULL,'Cambridge','MA','USA'); -INSERT INTO vendors VALUES('7835a78c-fd3c-4587-a6f5-85f9473614e1','published','armis','Armis','www.armis.com','The Armis Platform is the industry’s most comprehensive asset intelligence platform providing unified asset visibility and superior security for organizations that need to protect against unseen operational and cyber risks, increase efficiencies, optimize use of resources, and safely innovate with new technologies to grow the business.','548 Market Street','Suite 97439','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('2b1ef4ea-53b7-4ddc-b44b-7af750577b1c','published','automox','AUTOMOX','www.automox.com','Automox is the cloud-native endpoint management platform for modern organizations ensuring every endpoint is automatically patched, configured and secured – anywhere, anytime.','4845 Pearl East Cir ','Ste 118 PMB 80340','Boulder','CO','USA'); -INSERT INTO vendors VALUES('6a86b413-d77f-45db-93a6-89f6fe16ddb2','published','aci-learning','ACI Learning','https://www.itpro.tv/','The products you know and love, ITProTV, AuditProTV & Practice Labs are training the modern workforce TOGETHER,as ACI Learning.Whether you''re starting your career,mastering your profession,or developing your team,we''re with you every step of the way.','7525 NW 4th Blvd',NULL,'Gainsville ','FL','USA'); -INSERT INTO vendors VALUES('5f9f140b-4475-425f-b763-c93384838f66','published','jscrambler','JSCRAMBLER','https://jscrambler.com','Jscrambler is the leading client-side security solution for JavaScript protection and webpage monitoring. Jscrambler''s technology enables enterprises to mitigate JavaScript code tampering, reverse-engineering, and client-side attacks.','Rua Alfredo Allen, 455',NULL,'Porto',NULL,'PRT'); -INSERT INTO vendors VALUES('18be3db7-4f52-463f-aefa-5544212b2fd5','published','quantropi-inc','Quantropi Inc.','quantropi.com','Quantropi''s QiSpace™ and TrUE suite of quantum-secure cryptographic solutions and quantum entropy services enable public and private organizations to protect their data and communications from today''s AI cyberattacks and tomorrow''s quantum threat.','1545 Carling Ave. ','Suite 620','Ottawa','ON','CAN'); -INSERT INTO vendors VALUES('6b7af552-7a3a-49b9-a993-1cc4a7a6988c','published','meritalk','MeriTalk','www.meritalk.com',NULL,'921 King St.',NULL,' Alexandria','VA','USA'); -INSERT INTO vendors VALUES('d1b20e0d-9ed8-4ce1-afbb-24168bc40404','published','wib','Wib','www.wib.com','Wib is revolutionizing API security with its holistic API security platform providing continuous and complete visibility and control across the entire API ecosystem. Our advanced API security protects the digital economy and empowers innovation.','144 Menahem Begin Street',NULL,'Tel Aviv',NULL,'ISR'); -INSERT INTO vendors VALUES('eefd9aa7-8933-4e05-9f1f-e3a6bbfbc4ba','published','mitre','MITRE','mitre.org','At MITRE, we''re dedicated to solving problems for a safer world. That includes advancing the worldwide community of cyber defenders with the knowledge, training, frameworks, and tools needed to address the ever-evolving challenges in cybersecurity.','7596 Colshire Dr.',NULL,'McLean','VA','USA'); -INSERT INTO vendors VALUES('6b4f1462-c457-4d2d-816e-98a4ba2d10ca','published','mezmo','Mezmo','www.mezmo.com?utm_medium=sponsorship&utm_source=sponsorship-partner&utm_campaign=fy23q2-rsa',replace('Mezmo provides an observability pipeline to collect, transform, and route telemetry data to control costs and drive actionability. \nIngest, process, and route data to make it more consumable to drive faster decision-making across various use cases.','\n',char(10)),'2059 Camden Avenue ','#297','San Jose','CA','USA'); -INSERT INTO vendors VALUES('f94d60dc-4f08-4346-ac55-9e56b62f4776','published','wiz','Wiz','https://www.wiz.io/','Wiz secures everything organizations build and run in the cloud. Organizations across verticals, including 30% of the F100, use our agentless graph-based platform to accurately identify, prioritize, and remove critical risks. Learn more at wiz.io.','One Manhattan West ','57th Floor','New York','NY','USA'); -INSERT INTO vendors VALUES('a8600860-d9e2-40cd-b13d-5eaab0782dba','published','okta','Okta','www.okta.com','Okta is the World’s Identity Company. We free everyone to safely use any technology. Our Workforce and Customer Identity Clouds enable secure yet flexible access, authentication,and automation that transforms how people move through the digital world','100 First Street ','6th Floor','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('61e31947-53b5-41d5-9a13-a864afb5b6e2','published','onapsis','Onapsis','www.onapsis.com','Onapsis protects the business applications that run the global economy. The Onapsis Platform uniquely delivers vulnerability management, threat detection and response, change assurance, and continuous compliance for business-critical applications from leading vendors such as SAP, Oracle, and others.','101 Federal Street ','Suite 1800','Boston','MA','USA'); -INSERT INTO vendors VALUES('c08a92bb-5879-4927-894d-762829ed9268','published','harness','Harness','www.harness.io',replace('Harness, an end-to-end platform for complete software delivery, empowers developers to release applications into production securely, detects quality of deployments and rolls back failed ones, saving time and reducing the need for manual oversight.\n','\n',char(10)),'55 Stockton Street',NULL,'San Francisco','CA','USA'); -INSERT INTO vendors VALUES('27c174a1-7ec3-4069-8588-7c4528c8406f','published','zerofox','ZeroFox','https://www.zerofox.com/','ZeroFox (Nasdaq: ZFOX), is the pioneer in external cybersecurity, delivering the world’s first unified solution to expose malicious activity and end cyber threats targeting your most critical external assets – brands, domains and people.','1834 S. Charles St.',NULL,'Baltimore','MD','USA'); -INSERT INTO vendors VALUES('414b238d-d86c-4b35-81c8-bf02fa39bfcc','published','penn-state-world-campus','Penn State World Campus','worldcampus.psu.edu/rsac','Whether you''re just starting out in the IT field, or ready to advance your career, Penn State''s online degrees can help you gain the expertise you need to succeed. Penn State World Campus has programs that meet all levels of experience.','227 Outreach Building',NULL,'University Park','PA','USA'); -INSERT INTO vendors VALUES('5345a988-0aad-4300-8226-0556d6a428e5','published','panorays','Panorays','www.panorays.com','Panorays automates, accelerates and scales your third-party security evaluation and management process so you can easily manage and remediate risk','155 East 44th Street ','Suite 701','New York','NY','USA'); -INSERT INTO vendors VALUES('375c8452-e190-4985-b4bb-deebbc1104f7','published','noname-security','Noname Security','https://nonamesecurity.com/','Noname Security is taking a complete, proactive approach to API Security. Noname works with 20% of the Fortune 500 and covers the entire API security scope across three pillars - Posture Management, Runtime Security, and API Security Testing. ','181 Metro Drive',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('7f65369b-ff04-457e-b310-43b413b431d1','published','nsfocus','NSFOCUS','www.nsfocusglobal.com','NSFOCUS protects telcos, ISPs, MSSPs & enterprises from advanced cyberattacks. Its Intelligent Hybrid Security strategy utilizes cloud + on-premises products and services with real-time global threat intelligence to provide multi-layered, unified and dynamic cyber defense. ','690 N McCarthy Blvd','Suite 170','Milpitas','CA','USA'); -INSERT INTO vendors VALUES('11fd5516-6319-4a54-b717-1609601c9b01','published','national-security-agency','National Security Agency','www.nsa.gov','The NSA leads the U.S. Government in cryptology that encompasses both signals intelligence insights and cybersecurity products and services and enables computer network operations to gain a decisive advantage for the nation & our allies.','9800 Savage Road',NULL,'Ft. Meade','MD','USA'); -INSERT INTO vendors VALUES('540f0c2d-5d5a-44c3-833a-38a7a4dbc933','published','ninjaone','NinjaOne','https://www.ninjaone.com/','NinjaOne''s Unified IT Management platform enables IT departments to centrally manage, support, patch, and secure any endpoint anywhere within one intuitive platform that improves technician efficiency and device security.','301 Congress Avenue','Suite 400','Austin','TX','USA'); -INSERT INTO vendors VALUES('8802fc56-e386-4f86-87fd-94c02383509f','published','xm-cyber','XM Cyber','www.xmcyber.com','XM Cyber is a hybrid cloud security company changing the way organizations approach cyber risk. By continuously uncovering hidden attack paths to critical assets, it enables security teams to remediate exposures at key junctures and eradicate risk. ','7 Sapir',NULL,'Herzlyia',NULL,'ISR'); -INSERT INTO vendors VALUES('c8ae6a0c-6315-48b1-ba9a-b4d517366ca1','published','logicgate','LogicGate','www.logicgate.com','LogicGate''s Risk Cloud® is the most nimble and collaborative GRC solution out there. Automate. Collaborate. Build. Risk Cloud’s interconnected view of risk helps you risk better. After all, great companies don’t avoid risks but choose the right ones.','320 W Ohio St.','#5E','Chicago','IL','USA'); -INSERT INTO vendors VALUES('cf0afbc2-dd11-48ef-bebb-be0394e41af3','published','lansweeper','Lansweeper','www.lansweeper.com',NULL,'Zeelsebaan 83/Z',NULL,'Dendermonde',NULL,'BEL'); -INSERT INTO vendors VALUES('b8c78f5a-f771-4830-a728-dcc0d2f7d868','published','swimlane','Swimlane','https://swimlane.com/','Swimlane provides cloud-scale, low-code security automation for organizations of all industries and sizes. Our technology is relied upon by major security-forward organizations including Sony, Lumen, Sagicor and Toshiba. ','363 Centennial Pkwy',NULL,'Louisville','CO','USA'); -INSERT INTO vendors VALUES('23fb0449-9c5a-42f9-9916-062e8204d864','published','lookout','Lookout','www.lookout.com','With a unified policy engine, complete visibility & data-centric approach, Lookout protects mobile endpoints & secures access to corporate apps and data. Secure your hybrid workforce, detect & mitigate risk across all your endpoints, apps and data.','3 Center Plaza','Suite 330','Boston','MA','USA'); -INSERT INTO vendors VALUES('bdcd0662-7818-43ce-9fb3-370203b8fdec','published','securonix','Securonix','www.securonix.com','Securonix provides threat detection and response solutions powered by the most advanced analytics and built on a scalable, flexible cloud native architecture. Securonix Unified Defense SIEM enables fast, precise incident response, providing high fidelity alerts with analytics that pioneered the UEBA category. For more information visit www.securonix.com.','5080 Spectrum Drive','Suite 950W','Addison','TX','USA'); -INSERT INTO vendors VALUES('8be69f08-2e3a-4dba-8380-dc9c3de67413','published','syxsense','Syxsense','www.syxsense.com','Syxsense delivers real-time vulnerability monitoring & intelligent automation for IT management, patch management, and security remediation with a Zero Trust approach. We secure every endpoint, remote, roaming, or in the cloud, from a single console.','100 Bayview Circle','Suite 100','Newport Beach','CA','USA'); -INSERT INTO vendors VALUES('82dd2e41-b03b-4a7c-b30f-77c16f7e76bb','published','strike-graph','Strike Graph','http://strikegraph.com',replace('Strike Graph offers an easy, flexible security compliance solution that scales efficiently with your business needs — from SOC 2 to ISO 27001 to GDPR and beyond. \n\n\n\n','\n',char(10)),'999 Third Avenue','33rd Fl','Seattle','WA','USA'); -INSERT INTO vendors VALUES('472fdf86-866b-4f3a-81a2-d8c3123c8e8f','published','soos','SOOS','soos.io','SOOS is an open source vulnerability, monitoring, license, compliance, SBOM, and DAST (Dynamic Application Security Testing) platform that integrates easily into your developer pipelines and repositories. One low price for the whole team - Free Trial','20 Winooski Falls Way ','Suite 302','Winooski','VT','USA'); -INSERT INTO vendors VALUES('2b3f86c2-d992-4a52-8b94-c7def8cd103c','published','security-journey','Security Journey','https://www.securityjourney.com/','Security Journey (previously HackEDU), delivers secure code training and AppSec education to the entire SDLC team to help build a security-first development culture, improve efficiency, and reduce vulnerabilities. ','40 24th Street ','4th floor','Pittsburgh','PA','USA'); -INSERT INTO vendors VALUES('b6872124-d2d0-4b12-bc3e-4aa48c91c7ac','published','skopenow','Skopenow','www.skopenow.com','Skopenow helps ORC investigations by giving investigators the ability to analyze the subject''s online content using keyword & object recognition to flag brand mentions & photos of stolen products across third party listings and social media sites.','12 East 49th Street','11th Floor','New York','NY','USA'); -INSERT INTO vendors VALUES('40b56406-8033-4c26-9131-a7484d87a4e3','published','riskrecon-a-mastercard-company','RiskRecon, a Mastercard Company','www.riskrecon.com','RiskRecon’s cybersecurity ratings and assessments make it easy for you to understand and act on your risks, delivering accurate, risk-prioritized action plans custom-tuned to match your risk priorities. ','5241 S. State Street ','Unit 3','Murray','UT','USA'); -INSERT INTO vendors VALUES('cadaf7b3-fdcb-4266-9417-1d0aefdb26c1','published','mitigant-by-resility','Mitigant by Resility','www.mitigant.io','Mitigant is an enterprise cloud security SaaS solution helping organizations to build security, compliance, and cyber-resilience for their public cloud infrastructures (AWS, Azure, GCP, Kubernetes) with a continuous security verification approach. ','August-Bebel-strasse 89','Haus 7','Potsdam',NULL,'DEU'); -INSERT INTO vendors VALUES('a0e5261a-4532-4896-aedf-68ed04f1a698','published','checkmarx-inc','Checkmarx, Inc.','www.checkmarx.com','Checkmarx offers the most comprehensive AppSec platform, providing unparalleled accuracy, coverage, visibility and guidance to reduce risk across all components of software—including proprietary code, open source, APIs, and Infrastructure as Code.','7000 Central Parkway ','Suite 1045','Atlanta','GA','USA'); -INSERT INTO vendors VALUES('50ea95e6-5fb1-4b1a-9f5e-031d933e3426','published','cybrary','Cybrary','www.cybrary.it','Cybrary is the industry-leading cybersecurity training platform that provides professionals at every stage of their career with interactive training to level up their skills to confidently address the ever-evolving threat landscape.','4600 River Rd','Suite 400','Riverdale Park','MD','USA'); -INSERT INTO vendors VALUES('81ef426a-f452-40a8-b2bb-8fc01c18e6f7','published','ionix','IONIX','https://www.ionix.io','IONIX (formerly Cyberpion) is the attack surface management solution that uses Connection Intelligence to shine a spotlight on exploitable risks across your real attack surface – and its digital supply chain.','218 Main Street ','Suite 500','Kirkland','WA','USA'); -INSERT INTO vendors VALUES('d90b41b0-c7ae-4c1c-8556-73dcfb9e43f3','published','cado-security','Cado Security','cadosecurity.com',' Cado Security is a cloud forensics and incident response company. The Cado platform leverages the scale, speed and automation of the cloud to effortlessly deliver forensic-level detail into cloud, container and serverless environments. ','30 Stamford Street',NULL,'London',NULL,'GBR'); -INSERT INTO vendors VALUES('d6bd06e1-397f-45cf-aeba-c507ff150397','published','brandshield-ltd','BrandShield Ltd.','https://www.BrandShield.com/',replace('BrandShield is a Brand-Oriented Digital Risk Protection company. BrandShield''s proactive approach to protecting against online threats: online scams, phishing, social media impersonation, typosquatting, and more.\nExperts'' detection and takedown services lead to outstanding takedown success rates. ','\n',char(10)),'4 Shenkar Street',NULL,'Herzliya',NULL,'ISR'); -INSERT INTO vendors VALUES('11487246-05c2-4d8f-a103-e96a86810300','published','baramundi-software-usa-inc','baramundi software USA, Inc.','www.baramundi.com/en-us/','baramundi software is a leading developer of Unified Endpoint Management and provides efficient and secure cross-platform management of their workstation and mobile environments. Customers worldwide benefit from the German manufacturer‘s many years of experience and outstanding products.','30 Speen St. ','Suite 401','Framingham','MA','USA'); -INSERT INTO vendors VALUES('68528a17-2fd2-4535-8961-d8cb73694fa4','published','bloombase','Bloombase','www.bloombase.com','Bloombase is the intelligent storage firewall company providing data-at-rest encryption using post-quantum cryptography (PQC) from edge, physical/virtual DCs, through hyper-converged (HCI) and composable disaggregated infrastructures (CDI), to cloud.','1300 Island Drive ','Suite 103','Redwood City','CA','USA'); -INSERT INTO vendors VALUES('a54c2d12-03a4-4a7d-a10c-c983d0fb95b4','published','gitguardian','GitGuardian','https://www.gitguardian.com/',replace('GitGuardian is the code security platform for the DevOps generation.\nWith automated secrets detection and remediation, our platform enables Dev, Sec, and Ops to advance together toward the Secure Software Development Lifecycle.','\n',char(10)),'17 Rue de la Banque',NULL,'Paris',NULL,'FRA'); -INSERT INTO vendors VALUES('6225c4c5-cca9-44dd-91c8-debbfad71f3b','published','bitdefender','Bitdefender','www.bitdefender.com','Bitdefender provides cybersecurity solutions with leading security efficacy, performance, and ease of use to enterprise organizations and consumers. ','3945 Freedom Circle','Suite 500','Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('b0d4fbeb-adb7-4c4e-a679-4d58cf462a2f','published','deleteme','DeleteMe','https://business.joindeleteme.com/','DeleteMe proactively reduces attack vectors by continuously removing executive and employee personal data online. With 35+ million pieces of personal data removed since 2010, we are the trusted privacy partner to the world’s most recognizable brands.','18 Bow St. ','#55','Somerville','MA','USA'); -INSERT INTO vendors VALUES('42798bfc-6b27-42bf-87f6-c97310e887b6','published','german-pavilion-teletrust-it-security-association-germany','German Pavilion / TeleTrusT - IT Security Association Germany','https://www.rsac.german-pavilion.com',replace('The German Pavilion is presented by the Federal Ministry for Economic Affairs and Climate Action and AUMA and is supported by TeleTrusT – IT Security Association Germany (www.teletrust.de). Explore 25 companies! Visit www.rsac.german-pavilion.com \n','\n',char(10)),'NuernbergMesse GmbH','Messezentrum','Nuernberg',NULL,'DEU'); -INSERT INTO vendors VALUES('ec6360f0-266a-41d5-b9d6-f09f90954a03','published','globalsign','GlobalSign','www.globalsign.com','GMO GlobalSign is the leading Certificate Authority of security solutions for businesses to conduct secure communications, manage millions of verified digital identities and automate authentication and encryption. See https://www.globalsign.com.','Two International Drive ','Suite 150','Portsmouth','NH','USA'); -INSERT INTO vendors VALUES('2bdca711-421f-4d91-8940-dccb6777a7cc','published','gtb-data-security','GTB Data Security','www.gttb.com','GTB, the creator of DLP for IP, offers the only data security platform that prevents data breaches from insider threats. Delivered as a SaaS or on-premises, GTB integrates awareness, encryption, & controls to prevent data loss, misuse, and theft.','2054 Vista Parkway','Suite 400','West Palm Beach','FL','USA'); -INSERT INTO vendors VALUES('8628e1b9-7a59-4048-9d24-d45cf51f0b3a','published','devo','Devo','https://www.devo.com/','Devo is the only cloud-native logging and security analytics platform that releases the full potential of your data to empower bold, confident action. ','255 Main Street ','Suite 702','Cambridge','MA','USA'); -INSERT INTO vendors VALUES('e3d92cc2-d50d-4de8-b00f-7f72aa6b34dc','published','delinea','Delinea','www.delinea.com',replace('Delinea is a leading provider of privileged access management (PAM) solutions that make security seamless for the modern, hybrid enterprise. Our solutions empower thousands of global organizations to secure critical data, devices, code, and cloud infrastructure to help reduce risk, ensure compliance, and simplify security.\n','\n',char(10)),'201 Redwood Shores Parkway','Suite 300','Redwood City','CA','USA'); -INSERT INTO vendors VALUES('7c5b8427-0661-416c-8be7-506a1c330259','published','intel-471','Intel 471','www.intel471.com','Fight cyber threats and win ⁠— Intel 471 empowers security teams to be proactive with our relevant and timely insights into the cyber underground.','1209 Orange Street',NULL,'Wilmington','DE','USA'); -INSERT INTO vendors VALUES('72727c14-a170-4ec4-b519-eb5ccab7a36a','published','iboss','iboss','www.iboss.com','iboss is a cloud security company that enables organizations to reduce cyber risk by delivering a Zero Trust Security Service Edge platform designed to protect resources and users. The iboss platform replaces legacy VPN, Proxies and VDI with a consolidated service that improves security, increases the end user experience, and substantially reduces network security costs.','101 Federal Street ','23rd Floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('cf002015-454a-4608-bbc8-a3e96b029d43','published','elastic','Elastic','www.elastic.co','Elastic modernizes SecOps by unifying SIEM, endpoint security, and cloud security capabilities so you can protect, detect, and respond to complex attacks. Get a limitless view of your data across cloud and on-prem. Eliminate blindspots, automate threat detection, and streamline investigation and response. All at scale with Elastic Security.','800 W El Camino Real ','Suite 350','Mountain View','CA','USA'); -INSERT INTO vendors VALUES('4d20f7b5-c2ff-4bbd-9208-56f372a73a10','published','expel','Expel','https://expel.com/','Expel''s security operations platform and people work together to make sense of security signals to detect, understand, and fix issues fast - minimizing risk. We offer managed detection and response (MDR), remediation, phishing, and threat hunting. ','12950 Worldgate Drive','Suite 200','Herndon','VA','USA'); -INSERT INTO vendors VALUES('acb8e9ef-a0e0-43a9-9d46-473b2156c68b','published','esentire','eSentire','www.esentire.com','eSentire is the Authority in Managed Detection and Response. With XDR, 24/7 threat hunting and SOC, we disrupt threats before they impact your business.','451 Phillip St.','Suite 135','Waterloo','ON','CAN'); -INSERT INTO vendors VALUES('22b25fa1-f9b0-49c2-81da-5edb3aee721d','published','eclypsium','Eclypsium','https://www.eclypsium.com','Eclypsium’s cloud-based platform provides digital supply chain security for critical hardware, firmware and software. Eclypsium defends enterprises from the deep implants and exploits that have become the vector of choice for modern adversaries.','920 SW 6th Avenue','Suite 375','Portland','OR','USA'); -INSERT INTO vendors VALUES('9193a3d0-3f6c-4fd5-851c-9cfd271012e8','published','think-cyber-security-ltd','Think Cyber Security Ltd.','thinkcyber.co.uk','ThinkCyber deliver secure behaviour change for their customers. Their award-winning Redflags™ software applies behavioural science theory to uniquely deliver real-time, context-aware, on-device security interventions and nudges at the point of risk.','20-22 Wenlock Road',NULL,'London',NULL,'GBR'); -INSERT INTO vendors VALUES('eae64c9d-2389-420d-b40f-0178c50cf193','published','techtarget','TechTarget','https://www.techtarget.com/searchsecurity/',NULL,'275 Grove Street',NULL,'Newton','MA','USA'); -INSERT INTO vendors VALUES('1568e065-665f-4d95-b118-d6066fa33200','published','threatconnect','ThreatConnect','https://threatconnect.com/','ThreatConnect’s market leading, cloud-native solutions enables threat intelligence operations, security operations, and cyber risk management teams to work together for more efficient, effective, and collaborative cyber defense and protection.','3865 Wilson Blvd. ','Suite 550','Arlington','VA','USA'); -INSERT INTO vendors VALUES('8ccb0d6f-7351-4aca-9bad-a6fd88f8ebf6','published','teramind-inc','Teramind Inc','www.teramind.co','Teramind provides comprehensive user behavior data for insider threat management, data loss prevention, and business process optimization. Our user behavior analytics brings organizations peace of mind by providing data-backed workforce insights.','19495 Biscayne Blvd','Suite 606','Aventura','FL','USA'); -INSERT INTO vendors VALUES('567c3b3a-72c6-40db-8b34-05dc569b12d7','published','tufin','Tufin','https://www.tufin.com/','Tufin is the leader in network security policy management. The platform centralizes and automates network and cloud access. Over 2,900 enterprises have trusted Tufin to implement accurate network changes in minutes instead of days, accelerate secure application deployments, and virtually eliminate manual tasks. Find out more at www.tufin.com. ','10 Summer Street','Suite 605','Boston','MA','USA'); -INSERT INTO vendors VALUES('e9785138-d377-430e-93e0-d6c3b967801e','published','technology-record','Technology Record','https://www.technologyrecord.com/',NULL,'6 Friar Lane',NULL,'Leicester',NULL,'GBR'); -INSERT INTO vendors VALUES('3a9862a7-da3f-46c1-a296-5aacb3ed65eb','published','thinkst-canary','Thinkst Canary','https://canary.tools/','Most companies discover they''ve been breached way too late. Thinkst Canary fixes this: just 3 minutes of setup; no ongoing overhead; nearly 0 false positives, and you can detect attackers long before they dig in. Check out why our Canaries are deployed and loved on all 7 continents...','Unit L6, 5 Howe Street','Observatory','Cape Town',NULL,'ZAF'); -INSERT INTO vendors VALUES('a8f1955f-b008-4ec5-ad87-d0f8ec82d204','published','tessian','Tessian','www.tessian.com','Tessian Cloud Email Security intelligently prevents advanced email threats and protects against data loss, to strengthen email security and build smarter security cultures in modern enterprises.','200 Portland St.','5th Floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('13681959-5495-4f85-a94c-c2e878520d8e','published','team-cymru','Team Cymru','https://team-cymru.com/','Team Cymru provides digital business risk platforms for private organizations, and community services that maintain internet integrity to save and improve human lives.','901 International Parkway ','Suite 350','Lake Mary','FL','USA'); -INSERT INTO vendors VALUES('2787a618-487c-4401-ab82-39ae4559e614','published','virtue-security','Virtue Security','https://www.virtuesecurity.com',NULL,'244 5th Avenue ','F290','New York','NY','USA'); -INSERT INTO vendors VALUES('6296623d-beac-400d-9aa7-cc56514e73a1','published','fortra','Fortra','https://www.fortra.com/','Fortra is a cybersecurity company like no other. We’re creating a simpler, stronger future for our customers. Our trusted experts and portfolio of integrated, scalable solutions bring balance and control to organizations around the world. We’re the positive change makers and your relentless ally to provide peace of mind through every step of your cybersecurity journey. ','11096 Viking Dr. ','Suite 100','Eden Prairie','MN','USA'); -INSERT INTO vendors VALUES('f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','published','f5','F5','https://www.f5.com/','​​​F5 is a multi-cloud application services & security company committed to bringing a better digital world to life.​​​​​​​ F5 partners with the most advanced organizations to secure & optimize every app and API anywhere—on premises, in the cloud, or at the edge. F5 enables organizations to provide secure digital experiences for their customers & stay ahead of threats.','501 5th Ave',NULL,'Seattle','WA','USA'); -INSERT INTO vendors VALUES('eabdf306-eb0a-4168-a01a-0d6b81f9d288','published','flanders-investment-and-trade','Flanders Investment & Trade','https://www.flandersinvestmentandtrade.com/invest/en','Flanders Investment & Trade enhances Flanders’ position as the gateway to Europe for inward investors. The government agency identifies, informs, advises, and supports overseas enterprises.','Koning Albert II-laan 37',NULL,'Brussels',NULL,'BEL'); -INSERT INTO vendors VALUES('f26558dc-0663-4731-817f-7bb52f9b6bd1','published','flow-security','Flow Security','www.flowsecurity.com','Flow Security’s DSPM platform offers a new approach to data security by combining data scanning and real-time analysis to continuously detect and prevent data-related risks, providing comprehensive data discovery, classification, and protection.','3 Aluf Albert Mendler',NULL,'Tel-Aviv',NULL,'ISR'); -INSERT INTO vendors VALUES('5a3b0090-6024-4e2a-b259-d4f3dd9dfe18','published','arcon','ARCON','http://www.arconnet.com','ARCON is a leading Information Technology company specialized in providing Risk Control solutions. ARCON believes in ceaseless technological innovations to mitigate the current and emerging IT security threats that can wreak havoc on organizations.','Kamla Executive Park, 901, Andheri - Kurla Rd,','Vljay Nagar Colony, J B Nagai, Andherl East,','Mumbai','MH','IND'); -INSERT INTO vendors VALUES('c922e3d5-4378-4948-9ef1-e7ba8979e4bb','published','apiiro','Apiiro','apiiro.com','Apiiro helps security teams and developers gain full visibility by discovering all app components like APIs, services, dependencies & sensitive data, and mapping the attack surface to proactively remediate critical risks before releasing to the cloud','150 Greenwich St ','4 WTC Floor 29 Room 81','New York','NY','USA'); -INSERT INTO vendors VALUES('d3dc60e7-a5e7-4703-a7a4-43644c7be7b2','published','amax','AMAX','www.amax.com','AMAX is a designer and provider of advanced computing solutions. Focusing on artificial intelligence, high performance computing, edge computing and appliance manufacturing.','1565 Reliance Way',NULL,'Fremont','CA','USA'); -INSERT INTO vendors VALUES('d99273a4-c186-4ed2-893f-c2a21b6a992a','published','appsealing','AppSealing','https://www.appsealing.com/','AppSealing is a leader in mobile app shielding solutions that deliver robust runtime features and ensures mobile apps and customers'' data are safe from reverse engineering, tampering, untrusted environments, and other unknown threats.','3003 North First Street#322, San Jose, California 95134',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('98dcedda-1511-4482-9519-b709aac81981','published','asrock-rack-inc','ASRock Rack Inc.','https://www.asrockrack.com/index.asp','ASRock Rack Inc., established in 2013, specialized in the field of Cloud Computing server hardware with “Creativity and Reliability", ','4F., No.37, Sec. 2, Jhongyang S. Rd., ','Beitou District','Taipei City ',NULL,'TWN'); -INSERT INTO vendors VALUES('6e67e3e1-9a44-44e0-9e85-eaed9a02a9ce','published','apricorn','Apricorn','www.apricorn.com',replace('THE LEADER IN PORTABLE USB DEVICE ENCRYPTION\n\nHeadquartered in Poway, California, Apricorn provides hardware-based 256-bit encrypted external storage products to companies and organizations that require high-level protection for their data at rest.','\n',char(10)),'12191 Kirkham Rd',NULL,'Poway','CA','USA'); -INSERT INTO vendors VALUES('4ebfd933-cbcf-43d3-b98f-0d66e28820b1','published','appviewx','AppViewX','www.appviewx.com','As a leading provider of automated machine identity management and application infrastructure security solutions, AppViewX is trusted by many global organizations to reduce risk and ensure compliance with centralized orchestration capabilities.','City Hall, 222 Broadway',NULL,'New York','NY','USA'); -INSERT INTO vendors VALUES('36f5a55c-d35b-41f2-ba17-2151b0a2b7db','published','arqit','Arqit','arqit.uk','Arqit supplies a unique quantum safe encryption Platform-as-a-Service which makes the communications links or data at rest of any networked device or cloud machine secure against current and future forms of attack – even from a quantum computer.','11 Bressenden Place ','Nova North Floor 7','London',NULL,'GBR'); -INSERT INTO vendors VALUES('e84c8429-dac2-4bf5-b517-e91e61e15090','published','arista-networks','Arista Networks','www.arista.com',replace('From network security to trusted, secure networks with:\n- Arista NDR: AI-driven network detection & response platform\n- Arista CUE: Optimal edge as a service solution\n- Arista DMF: Integrated network packet broker & analytics for network visibility \n','\n',char(10)),'5453 Great America Parkway',NULL,'Santa Clara','CA','USA'); -INSERT INTO vendors VALUES('2c8ed487-54c5-4969-ac80-61dd6609682f','published','afero','Afero','https://afero.io/',replace('Afero''s mission is to make all the world''s devices really smart and really secure.\nThe Afero IoT Platform provides the ''Operating System'' to make the massive range of connected products work securely every-time.','\n',char(10)),'4410 El Camino Real','#200','Los Altos','CA','USA'); -INSERT INTO vendors VALUES('de66d675-b417-4ec1-9483-ad5558669458','published','adaptive-shield','Adaptive Shield','https://www.adaptive-shield.com/',replace('Adaptive Shield, leader in SaaS security. \nEnable security teams to gain visibility and control over all business-critical SaaS apps. With Adaptive Shield’s SSPM platform, prevent, detect and respond to SaaS threats.\n','\n',char(10)),'181 Metro Drive','Suite 290','San Jose','CA','USA'); -INSERT INTO vendors VALUES('32a3655a-3c7e-4ed5-a4e3-6216a65804c2','published','adlumin-inc','Adlumin Inc.','www.adlumin.com','Adlumin Inc. provides the enterprise-grade security operations platform and managed detection and response services that keep mid-market organizations secure.','1140 3rd Street NE ','Suite 340','Washington','DC','USA'); -INSERT INTO vendors VALUES('3502ef1d-9c2b-451b-be39-9cbe10bdd999','published','uptycs','Uptycs','www.uptycs.com','Uptycs reduces risk by prioritizing your responses to threats, vulnerabilities, misconfigurations, sensitive data exposure, and compliance mandates across your modern attack surface—all from a single UI and data model. Shift up with Uptycs.','404 Wyman Street ','Suite 357','Waltham','MA','USA'); -INSERT INTO vendors VALUES('e738e4aa-1cd4-4cab-addc-6f85ea795d32','published','morphisec','Morphisec','www.morphisec.com','Morphisec prevents the most damaging, undetectable attacks others don’t by securing runtime memory, while giving you real-time app inventory and risk visibility. Our Moving Target Defense technology stops threats that evade NGAV, EPP, and EDR/XDR, with no performance impact or additional staff. ','11 Beacon Street','Suite 735','Boston','MA','USA'); -INSERT INTO vendors VALUES('17bce8d5-eac6-45c8-9791-44cc11749f4a','published','utimaco-inc','UTIMACO INC.','www.utimaco.com','UTIMACO is a global platform provider of Cybersecurity & Compliance solutions + services & develops on-premises & cloud-based HSMs, solutions for key management, data protection, identity management & data intelligence for regulated critical infrastructures & Public Warning Systems.','900 E Hamilton Ave ','Suite 400','Campbell','CA','USA'); -INSERT INTO vendors VALUES('c78c1501-dd64-41a0-b9bc-1aa6808eff27','published','aioncloud','AIONCLOUD','https://www.aioncloud.com/','AIONCLOUD is the ALL in ONE SECaaS platform of MONITORAPP utilizing Security Service Edge(SSE) offering services for Website Protection such as cloud-based WAAP & Malware Scanning; and Secure Internet Access such as Secure Web Gateway, CASB, and ZTNA','9342 Greenbelt Place',NULL,'Rancho Cucamonga','CA','USA'); -INSERT INTO vendors VALUES('739d440d-509f-42ef-b89a-c77f9b84ff03','published','manageengine','ManageEngine','www.manageengine.com',replace('We craft the industry’s broadest suite of IT management software. We have everything you need to manage all of your IT operations, from networks and servers to applications, service desk, Active Directory, security, desktops, and mobile devices.\n','\n',char(10)),'4141 Hacienda Drive ',NULL,'Pleasanton','CA','USA'); -INSERT INTO vendors VALUES('8776f02f-fb45-439d-bfe4-a943cf589595','published','mitiga','Mitiga','www.mitiga.io','Mitiga is the cloud and SaaS incident response leader. Our IR2 solution provides instant answers to incident-related questions, to speed investigations, prevent unnecessary loss, and develop greater cyber resilience against future attacks.','131 7th Ave ','Suite 253','New York','NY','USA'); -INSERT INTO vendors VALUES('6d17cac8-0ddd-4402-ad92-5b94eda1fbc3','published','1password','1Password','www.1password.com','1Password’s human-centric security safeguards people’s most important data, at work and at home. Our solution enables 100,000 businesses and millions of individuals to navigate the digital world without fear or friction – and in less time.','4711 Yonge St. ','10th Floor','Toronto','ON','CAN'); -INSERT INTO vendors VALUES('a69a637e-9f37-4cda-998d-1a0f2259c4b1','published','owasp-foundation-inc','OWASP Foundation, Inc.','https://owasp.org/','OWASP is the premier global application security non-profit, with a mission to provide free and open source standards, tools, events, and learning. Our worldwide community hosts hundreds of chapters and thousands of active members.','401 Edgewater Place','#600','Wakefield','MA','USA'); -INSERT INTO vendors VALUES('85d4d4fc-f87c-4f85-be9b-41e3dbc8978d','published','orca-security','Orca Security','https://orca.security','Orca Security provides instant-on security and compliance for AWS, Azure, and GCP - without the gaps in coverage, alert fatigue, and operational costs of agents. Orca’s CNAPP platform detects and prioritizes risk and is trusted by global innovators.','2175 NW Raleigh St. ','Suite 110','Portland','OR','USA'); -INSERT INTO vendors VALUES('de7b30b6-8ff9-4284-8234-e054b9aec6aa','published','knowbe4','KnowBe4','www.knowbe4.com','KnowBe4 is the world’s largest security awareness training and simulated phishing platform that helps you manage the ongoing problem of social engineering.','33 N Garden Ave. ','Suite 1200','Clearwater','FL','USA'); -INSERT INTO vendors VALUES('4ced0e79-3944-47ba-9833-7ae433e7a137','published','oomnitza','Oomnitza','www.oomnitza.com','The industry’s most versatile Enterprise Technology Management platform that delivers key business process automation for IT. Our SaaS solution enables enterprises to achieve operational, security & financial efficiency.','548 Market St.',NULL,'San Francisco','CA','USA'); -INSERT INTO vendors VALUES('45dfbc38-e5a6-4224-a76a-0a891fc75ab6','published','hive-pro','Hive Pro','www.hivepro.com','Hive Pro provides an all-in-one Threat Exposure Management Platform, promoting collaboration, streamlining vulnerability management, and enhancing organizational resilience, while optimizing security controls and risk management.','1551 McCarthy Blvd. ','Suite 212','Milipitas','CA','USA'); -INSERT INTO vendors VALUES('cae024cd-7957-4054-bb92-e589c7870683','published','kroll','Kroll','https://www.kroll.com/en/services/cyber-risk','Kroll is uniquely positioned to deliver end-to-end cyber risk solutions, merging unrivaled incident response expertise with frontline threat intelligence from over 3000 incidents handled per year to protect, detect, and respond against cyberattacks.','55 East 52nd Street ','Floor 17','New York','NY','USA'); -INSERT INTO vendors VALUES('7ebd2fea-89e3-41fe-8a03-374a71d0fb53','published','keeper-security-inc','Keeper Security, Inc.','www.keepersecurity.com','Keeper Security is transforming cybersecurity for organizations around the world with next-generation privileged access management. Keeper’s solutions are built with zero-trust and zero-knowledge security to protect every user on every device. ','333 N. Green Street','Suite 811','Chicago','IL','USA'); -INSERT INTO vendors VALUES('ce061bb2-1620-4591-9498-0e8ef370993d','published','probely','Probely','http://www.probely.com','Probely is a DAST Scanner designed for companies that manage many web applications and APIs, internal or exposed on the Internet. Get the security vulnerabilities that matter, false-positive free - 0.06%','Rua Alfredo Allen 455',NULL,'Porto',NULL,'PRT'); -INSERT INTO vendors VALUES('81bb869a-0c28-412c-84cf-254be3bb758b','published','hackerone','HackerOne','www.hackerone.com','HackerOne''s Attack Resistance Management blends the security expertise of ethical hackers with asset discovery, continuous assessment, and process enhancement to find and close the security gaps in the ever-evolving digital attack surface. ','180 Geary Street ','5th Floor','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('0d9e3cc7-72db-4881-9438-8efe9172dce8','published','phishfirewall','PhishFirewall','https://www.phishfirewall.com/','Experience PhishFirewall, the game-changing AI-powered cybersecurity solution that slashes phish clicks by 99% in 6 months! Personalized training elevates your security, saves time, and maximizes ROI. Embrace the future of cybersecurity now! ','120 Holmes Ave NE','STE 305','Huntsville','AL','USA'); -INSERT INTO vendors VALUES('a74ee0fb-6fe9-44d7-91b8-1363d3e8a8b8','published','promon','Promon','www.promon.co','Promon’s technology is research-based, and their patented deep protection technology Promon SHIELD™ protects apps used by hundreds of millions of users.','Stortingsgata 4',NULL,'Oslo',NULL,'NOR'); -INSERT INTO vendors VALUES('691b6a86-4509-4757-8068-afd8e430f4ad','published','hunters','Hunters','www.hunters.ai','Hunters SOC Platform empowers security teams to automatically identify and respond to incidents that matter, helping teams mitigate real threats faster and more reliably than SIEM.','275 Grove St.',NULL,'Newton','MA','USA'); -INSERT INTO vendors VALUES('6dea3b78-dfa8-43ec-936d-87f371375a17','published','pqshield','PQShield','http://www.pqshield.com/','PQShield is a world leader in Post-Quantum Cryptography - for standards, software and hardware. Team PQShield contributed to all the PQC NIST standards announced so far. Team PQShield is also involved in WEF, NCCoE, GSMA, IETF, RISC-V and more...','Prama House',NULL,'Oxford',NULL,'GBR'); -INSERT INTO vendors VALUES('7b1023b0-b3c2-4b82-97b8-44a58d6f235b','published','plextrac-inc','PlexTrac, Inc.','https://plextrac.com/','The Premier Cybersecurity Reporting and Collaboration Platform making security data aggregation, red and blue team reporting, purple team collaboration, and remediation tracking more effective and efficient so security teams become more proactive.','816 W Bannock St','Ste. 400','Boise','ID','USA'); -INSERT INTO vendors VALUES('5bf93977-e02b-4d2c-a3d6-5844ee3c3d1b','published','pavilion-of-spain','Pavilion of Spain','www.icex.es','Spanish Pavilion is showcasing a collection of 18 Spanish cybersecurity companies at RSA Conference 2023 in San Francisco. For profiles of our partipating companies, download https://www.icex.es/estaticos/spain-rsa-2023.pdf','1900 Avenue of the Stars','Suite 2430','Los Angeles','CA','USA'); -INSERT INTO vendors VALUES('59078edd-8c33-4528-866e-24e9984ace8d','published','netquest-corporation','NetQuest Corporation','https://netquestcorp.com/','NetQuest offers Ethernet and WAN Flow and Packet-Based traffic monitoring solutions that deliver the highest levels of accuracy, capacity, and performance. Solutions from NetQuest are deployed across thousands of network segments across the globe.','523 Fellowship Road ','Suite 205','Mount Laurel','NJ','USA'); -INSERT INTO vendors VALUES('eab580a0-3fef-437a-9926-aa4e6dfe604d','published','netacea','Netacea','www.netacea.com','Netacea is the fastest and most accurate protection against malicious automated threats, such as credential stuffing and scraping. Our technology is quickly implemented and supports a range of integrations to protect websites, mobile apps and APIs.','Maybrook House ','40 Blackfriar''s Street','Manchester',NULL,'GBR'); -INSERT INTO vendors VALUES('2b6df386-fad2-4355-a117-061714d9d8e3','published','netspi','NetSPI','www.netspi.com','NetSPI is the leader in enterprise penetration testing and attack surface management. ','800 Washington Avenue N ','Suite 670','Minneapolis','MN','USA'); -INSERT INTO vendors VALUES('4113c016-cbc9-48f3-90bc-df0ffe69b74b','published','normalyze','Normalyze','normalyze.ai','Normalyze is a cloud data security platform that continuously discovers sensitive data and their access paths across your cloud environments. Normalyze provides the ability to analyze, prioritize and respond to data threats to prevent data leakage.','1276 Nightingale Ct.',NULL,'Los Altos','CA','USA'); -INSERT INTO vendors VALUES('10024645-3dc9-4654-9a45-496c7ffe5d22','published','nucleus-security','Nucleus Security','www.nucleussec.com','Nucleus is a vulnerability and risk management solution that automates VM processes and workflows, enabling organizations to mitigate vulnerabilities 10 times faster, using a fraction of the resources that it takes to perform these tasks today. ','71 Alafia Drive',NULL,'Sarasota','FL','USA'); -INSERT INTO vendors VALUES('ec7d47d3-2bd9-4cea-89e3-87baad13c6d2','published','nanitor','Nanitor','www.nanitor.com','Nanitor delivers a market-leading out-of-the-box vulnerability management system empowering SME''s to simply monitor, identify, and remediate vulnerabilities across their entire IT infrastructure. Nanitor makes vulnerability management easy.','Sudurlandsbraut 6',NULL,'Reykjavik',NULL,'ISL'); -INSERT INTO vendors VALUES('4a01fd03-d4d3-4d77-9aa7-fee232d97aff','published','lacework','Lacework','www.lacework.com','Lacework is the data-driven security platform for the cloud. Lacework is the only CNAPP solution that can collect, analyze, & accurately correlate data, without requiring manually written rules, across an organization’s cloud and K8s environments.','391 San Antonio Rd',NULL,'Mountain View','CA','USA'); -INSERT INTO vendors VALUES('6b5d85e1-a608-4e0e-83ac-428a7f29be4f','published','lastpass','LastPass','https://www.lastpass.com/products/business','LastPass® is an award-winning password manager that provides identity and access management solutions. From single sign-on and enterprise password management to multi-factor authentication, LastPass gives superior control to IT and access to users. For more information, visit https://lastpass.com. ','333 Summer Street',NULL,'Boston','MA','USA'); -INSERT INTO vendors VALUES('d0fd8de7-af24-4dcb-8a30-96c88ce2a456','published','lydsec-digital-technology','Lydsec Digital Technology','https://www.keypasco.com/','Lydsec Digital Tech. focuses on Keypasco Multi-Factor Authentication (MFA) solution that protects the security of access to identity and provides for enterprise zero-trust networks or cloud services to meet various network security needs.','No. 159, Songde Rd, Xinyi District','25F','Taipei City ',NULL,'TWN'); -INSERT INTO vendors VALUES('9d5eaa23-a790-4592-8370-1646c24eaff1','published','servadus','Servadus','servadus.com','We provide best-in-class Cybersecurity assessments and consulting. Our team supports CMMC v2, PCI DSS, NIST 800-53, 800-171, CSF, and many others. We also offer first-of-its-kind online shopping for businesses to conduct self-assessments. ',NULL,NULL,'Walnut Creek','CA','USA'); -INSERT INTO vendors VALUES('da550280-f3b3-4b66-b65b-8171fbf68eab','published','simspace','SimSpace','simspace.com','Founded in 2015 by experts from the U.S. Cyber Command and MIT’s Lincoln Laboratory, SimSpace combines the highest-fidelity, military-grade cyber ranges and training content with unique user and adversary emulation techniques.','320 Congress St. ','7th Floor','Boston','MA','USA'); -INSERT INTO vendors VALUES('8c3ae928-58de-4856-bd3e-bd73dacaafa9','published','ssh-communications-security','SSH Communications Security','https//www.ssh.com/','SSH helps organizations safeguard their mission-critical digital assets at rest, in transit, and in use with Zero Trust, Operational Technology and Quantum-Safe solutions. We have 5,000+ customers worldwide, including 40 % of Fortune 500 companies. ','434 W 33rd Street ','Suite 842','New York ','NY','USA'); -INSERT INTO vendors VALUES('5f57bbee-240f-4545-a9a7-d9eeb54f2612','published','sasa-software','Sasa Software','https://www.sasa-software.com',replace('Sasa Software'' GateScanner solutions protect critical networks from email and file based attacks using Content Disarm and Reconstruction (CDR) file-sanitization technology. CDR prevents known and unknown malware in email, USB and file shares.\n','\n',char(10)),'Kibbutz Sasa',' M.P. Merom Hagalil','Kibbutz Sasa',NULL,'ISR'); -INSERT INTO vendors VALUES('ef2b68a4-648d-4b82-99e7-4c28e2355310','published','synopsys','Synopsys','https://www.synopsys.com/software-integrity','Synopsys builds trust in software by enabling organizations to manage application security, quality, and compliance risks at the speed their business demands. With Synopsys, organizations can transform the way they build and deliver software, aligning people, processes, and technology to address risks across their portfolio and at all stages of the application lifecycle. ','690 E Middlefield Rd',NULL,'Mountain View','CA','USA'); -INSERT INTO vendors VALUES('ddedbeee-d237-4ab4-a142-0f74f7b6b97b','published','safebase','SafeBase','safebase.com','SafeBase is the customer trust platform that helps organizations develop long-term buyer confidence through improved transparency, proactive communication, and real-time oversight and insights. ','441 43rd Ave',NULL,'San Francisco','CA','USA'); -INSERT INTO vendors VALUES('a2bffa33-78b3-457d-850a-7fc771eb454d','published','silverfort','Silverfort','www.silverfort.com','Silverfort pioneers the first Unified Identity Protection platform, enabling enterprises to extend MFA and modern identity security controls to resources that couldn’t be protected before – legacy applications, service accounts, and many more.','43 Westland Ave',NULL,'Boston','MA','USA'); -INSERT INTO vendors VALUES('aecb6818-1437-4320-86fe-6e985dc7486c','published','sphere','SPHERE','www.sphereco.com',replace('We are a woman-owned company that has redefined how organizations achieve controls across their environment. Our mission is to empower security & IT teams to improve identity hygiene so information can be properly protected against theft and abuse.\n','\n',char(10)),'3 Gateway Center','100 Mulberry Street, 8th Floor','Newark','NJ','USA'); -INSERT INTO vendors VALUES('421e62ae-a336-4733-9e47-e14e561d444a','published','sentra','Sentra','www.sentra.io','Sentra’s data lifecycle security platform protects data as it moves through cloud environments. With total visibility and control of data, organizations can finally leverage the speed and scalability of the cloud while keeping sensitive data secure. ','101 Avenue of the Americas ','8th and 9th Floors','New York','NY','USA'); -INSERT INTO vendors VALUES('fea46d07-fcac-4c74-ad34-8c01ffd52600','published','stellar-cyber','STELLAR CYBER','https://stellarcyber.ai','Stellar Cyber’s Open XDR platform delivers comprehensive, unified security without complexity, empowering lean security teams of any skill to secure their environments successfully. For more information, contact https://stellarcyber.ai.','2590 N First St Suite 360',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('fc60cb9a-5561-4c49-97ab-1165d41b135e','published','secutech','SecuTech','www.esecutech.com','For the past decade, SecuTech has been regarded as a global leader in providing hardware-based software protection & licensing options, as well as strong two factor authentication for Windows, iOS and Linux based systems.','Suite 206, 32 Delhi Rd',NULL,'North Ryde',NULL,'AUS'); -INSERT INTO vendors VALUES('8f178664-0966-4489-90d4-b0d8e18d5ad4','published','security-compass','Security Compass','https://www.securitycompass.com/?utm_source=rsac&utm_medium=referral&utm_campaign=fy23_rsac','Secure, compliant software by design. Implement secure software coding practices at scale in environments with increasingly complex security and compliance requirements, rapidly accelerating release schedules, and limited access to security experts.','390 Queens Quay W ','Suite 209','Toronto','ON','CAN'); -INSERT INTO vendors VALUES('75aca8f8-1c54-466d-826d-4576e060d617','published','sonatype','Sonatype','www.sonatype.com','Sonatype is the software supply chain management company. We empower developers and security professionals with intelligent tools to innovate more securely at scale. ','8161 Maple Lawn Blvd.','Suite 250','Fulton','MD','USA'); -INSERT INTO vendors VALUES('ec8c73a5-27f0-4732-8b08-68569843841b','published','splunk','Splunk','https://www.splunk.com/?utm_medium=medium&utm_source=3rdparty&utm_campaign=AMERFY24Q1_GEM_GLBL_TSHW_SEC_EN_RSAApr23','Splunk delivers unified security operations for digital resilience through a unified work surface combining industry-leading SIEM, SOAR, behavior analytics & threat intelligence management. This helps customers achieve efficient integration & process execution across cloud, on-prem & hybrid environments to accelerate threat detection, investigation & response. ','250 Brannan St',NULL,'San Francisco','CA','USA'); -INSERT INTO vendors VALUES('6422321c-34c7-42e4-8334-59cae78e2b10','published','snapattack','SnapAttack','https://www.snapattack.com','SnapAttack provides organizations with a unique platform combining Threat Intelligence, BAS, Detection Engineering, Threat Hunting, and Purple Teaming — to help them stay ahead of cyber threats and stop attacks before they occur.','4075 Wilson Blvd',NULL,'Alexandria','VA','USA'); -INSERT INTO vendors VALUES('5ae1a58a-612a-4af9-a25b-25cb0c9ababf','published','rsa','RSA','https://www.rsa.com/','RSA provides trusted identity and access management for 12,000 organizations around the world, managing 25 million enterprise identities and providing secure, convenient access to millions of users. RSA empowers organizations to thrive in a digital world, with complete capabilities for modern authentication, lifecycle management, and identity governance. Whether in the cloud or on-premises, RSA connects people with the digital resources they depend on everywhere they live, work, and play.','176 Middlesex Turnpike',NULL,'Bedford','MA','USA'); -INSERT INTO vendors VALUES('02eb55c1-9846-4903-af75-3d1491e527c4','published','rackmount-it','Rackmount.IT','https://www.rackmount.it/','Rackmount.IT produces 19” mount kits for network security brands like Fortinet, Cisco, SonicWall and more! Secure your appliances, perfect for Retail, MSP''s. Rackmount.IT kits are a perfect fit for your specific appliance. We Rack Your World!','9201 Metric Blvd.','Unit A','Austin','TX','USA'); -INSERT INTO vendors VALUES('1c3ac6ad-9ab1-4be0-99c2-661d1741a225','published','reversinglabs','ReversingLabs','www.reversinglabs.com','ReversingLabs provides the only software supply chain security platform for Dev and SOC teams. The ReversingLabs Titanium Platform integrates seamlessly at scale, analyzing compiled binaries and release packages for tampering, enabling Devs to release confidently, and the SOC to accelerate response.','222 Third St. ','Suite 1101','Cambridge','MA','USA'); -INSERT INTO vendors VALUES('6708b129-7ee6-4a81-b722-bc9ad67a800d','published','redseal','RedSeal','www.redseal.net','RedSeal – a security solutions and professional services company – helps government agencies and Global 2000 companies see and secure their on-premise networks and cloud environments. ','C/O Symphony Technology Group 1300 El Camino Real','Suite 300','Menlo Park','CA','USA'); -INSERT INTO vendors VALUES('bf389b3c-2cfe-48aa-9767-b2de7b55e047','published','revealsecurity','RevealSecurity','https://www.reveal.security/','RevealSecurity detects malicious insiders and imposters by monitoring user journeys in SaaS applications. Reveal''s tracking of insider threats is based on an advanced unsupervised ML algorithm to detect and alert abnormal journeys in appslications.','5 HaHilazon Street Street','7th Floor','Ramat Gan',NULL,'ISR'); -INSERT INTO vendors VALUES('a6aa0f04-27ff-4ca1-9e22-0b5f8c6077a7','published','radware-inc','Radware, Inc.','www.radware.com',replace('Radware® is a global leader of cybersecurity and application delivery solutions for physical, cloud and software-defined data centers. Our solutions empower enterprise and carrier customers worldwide maintaining business continuity & productivity. \n','\n',char(10)),'575 Corporate Drive ','Suite 1','Mahwah','NJ','USA'); -INSERT INTO vendors VALUES('e84e87e1-101c-494b-8605-2fbe747edf28','published','colortokens','ColorTokens','https://colortokens.com','ColorTokens provides a Unified Zero Trust Platform that protects against modern cyberattacks such as ransomware by detecting and stopping its lateral movement inside the enterprise network. ','3590 North First St',NULL,'San Jose','CA','USA'); -INSERT INTO vendors VALUES('b4a068b1-0f0a-40db-ac8c-0b72e9caf559','published','cybersecurity-ventures','Cybersecurity Ventures','https://cybersecurityventures.com/',NULL,'83 Main St. ','Ste #5 ','Northport','NY','USA'); -INSERT INTO vendors VALUES('042c858c-6261-4dcd-823a-4d8237470cb0','published','cybersixgill','Cybersixgill','www.cybersixgill.com','Cybersixgill''s threat intelligence and ASM solutions exposes and prioritizes the earliest possible indications of risk produced by threat actors moments after they surface allowing you to take action before the threat can materialize into an attack. ','177 Huntington Ave ','Ste 1703','Boston','MA','USA'); -INSERT INTO vendors VALUES('f6249598-7b92-4937-8170-1657bfbd97a6','published','cribl','Cribl','https://cribl.io/','The Cribl product suite makes open observability a reality for today’s tech professionals by defying data gravity with radical levels of choice and control.','22 4th street ','13th floor','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('f178b667-e29f-4b2a-bfd4-91e2bbf4035f','published','cybervista','CyberVista','www.cybervista.net','CyberVista is a cybersecurity training and workforce development company. Our data-driven approach gives organizations the visibility to make better training decisions, build the right skills, and drive defense. ','1300 17th St. North ','17th Floor, Suite 1600','Arlington','VA','USA'); -INSERT INTO vendors VALUES('7e7b7992-6274-474c-9eee-bff973300fd9','published','endpoint-protector-by-cososys','Endpoint Protector by CoSoSys','endpointprotector.com','Endpoint Protector by CoSoSys is a leading developer of endpoint centric Data Loss Prevention solutions and security software. Its flagship product, Endpoint Protector, is an advanced multi-OS DLP solution for Windows, macOS, and Linux, that protects businesses from insider threats and data breaches','213 Fayetteville Street, 1st Floor',NULL,' Raleigh',NULL,'USA'); -INSERT INTO vendors VALUES('8c45ead9-b82e-4f04-8db8-d2d03e71f546','published','constella-intelligence','Constella Intelligence','https://constellaintelligence.com/','The global leader in Digital Risk Protection to anticipate and remediate external threats to your executives, employees, brand, and business assets —powered by the world’s largest collection of proprietary breach and botnet data.','201 Redwood Shores ','Suite 345','Redwood City','CA','USA'); -INSERT INTO vendors VALUES('36d7af10-a74b-4d8f-8eb3-fe74eff88f46','published','cobalt','Cobalt','https://cobalt.io','Cobalt’s Pentest as a Service (PtaaS) model empowers organizations with fast, easy pentests. Our SaaS platform and closed tester community help you create stronger security programs and sharpen your competitive edge while maintaining velocity.','575 Market Street','4th Floor','San Francisco','CA','USA'); -INSERT INTO vendors VALUES('6a2306bd-4301-457e-ad1a-6bc2ac578b0a','published','comptia','CompTIA','comptia.org','CompTIA is a leading voice for the global IT industry and professionals. Through education, training, certifications, advocacy, philanthropy, and market research, CompTIA is the hub for unlocking the potential of the tech industry and its workforce.','3500 Lacey Road ','Suite 100','Downers Grove','IL','USA'); -INSERT INTO vendors VALUES('4a66a75f-440c-4075-864f-9e0fd25ca304','published','cybelangel','CybelAngel','https://cybelangel.com/','CybelAngel protects its customers with External Attack Surface Management (EASM) solutions that are powered by the most comprehensive external asset discovery and threat detection technologies available. Learn more https://cybelangel.com/','185 Alewife Brook Parkway ','Suite 210','Cambridge','MA','USA'); -INSERT INTO vendors VALUES('b5e3dc4f-8fd5-4334-ba10-56ce601034ff','published','cloud-security-alliance','Cloud Security Alliance','www.cloudsecurityalliance.org','The Cloud Security Alliance (CSA) is the world’s leading organization dedicated to defining and raising awareness of best practices to help ensure a secure cloud computing environment.','709 Dupont Street',NULL,'Bellingham','WA','USA'); -INSERT INTO vendors VALUES('56506710-7919-478e-8ab6-474c5202ba9f','published','caveonix','Caveonix','https://www.caveonix.com','Caveonix’s unified platform protects against compliance, security, and governance risks. It employs AI and automation to ensure full-stack visibility, prioritize risks and continuously assess and remediate risks to reduce your attack surface and TCO.','7777 Leesburg Pike ','#303s','Falls Church','VA','USA'); -INSERT INTO vendors VALUES('fd1bbc1a-0234-4388-8ca6-a887bd036ca6','published','cyberark','CyberArk','www.cyberark.com','CyberArk is the global leader in Identity Security. Centered on Privileged Access Management, CyberArk provides the most comprehensive security solutions for any identity – human or machine – across business applications, distributed workforces, hybrid cloud workloads, and throughout DevOps pipelines. ','60 Wells Avenue ',NULL,'Newton','MA','USA'); -INSERT INTO vendors VALUES('ab785b28-a5e9-4b54-a184-a17f78482de9','published','cybergrx','CyberGRX','https://www.cybergrx.com','CyberGRX standardizes third-party cyber risk management, making it possible to make smarter decisions across your entire vendor ecosystem. Driven by sophisticated data analytics, automation, and threat intelligence, CyberGRX provides customers with comprehensive analysis of their vendor portfolio.','1601 19th Street','Ste 350','Denver','CO','USA'); -INSERT INTO vendors VALUES('e2d75d9c-5164-404a-b98b-205375a1fb7e','published','acronis','Acronis','www.acronis.com',replace('Acronis delivers integrated, automated cyber protection that solves the safety, accessibility, privacy, authenticity, and security challenges. They provide cyber protection for data, applications, and systems with antivirus, backup, disaster recovery, and endpoint protection management solutions. \n','\n',char(10)),'1 Van de Graaff Drive','Suite 301','Burlington','MA','USA'); -INSERT INTO vendors VALUES('c8fbef01-de25-4b26-9b0e-c20728454692','published','skyhigh-security','Skyhigh Security','https://www.skyhighsecurity.com','Skyhigh Security is securing the world’s data with our cloud-native security solutions that are data-aware and simple to use. Our Security Service Edge Portfolio goes beyond data access and focuses on use, organizations can collaborate from any device and from anywhere without sacrificing security.','6000 Headquarters Drive',NULL,'Plano','TX','USA'); CREATE TABLE IF NOT EXISTS "vendors_categories" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `vendors_id` char(36) NULL, `categories_id` char(36) NULL, CONSTRAINT `vendors_categories_categories_id_foreign` FOREIGN KEY (`categories_id`) REFERENCES `categories` (`id`) ON DELETE SET NULL, CONSTRAINT `vendors_categories_vendors_id_foreign` FOREIGN KEY (`vendors_id`) REFERENCES `vendors` (`id`) ON DELETE SET NULL); -INSERT INTO vendors_categories VALUES(962,'e91b7ed4-765f-46e7-80ba-434a863d18c2','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(963,'e91b7ed4-765f-46e7-80ba-434a863d18c2','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(964,'76902808-b97b-4631-8481-46dc9fcb8953','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(965,'76902808-b97b-4631-8481-46dc9fcb8953','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(966,'76902808-b97b-4631-8481-46dc9fcb8953','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(967,'76902808-b97b-4631-8481-46dc9fcb8953','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(968,'a00e5537-56e0-40f1-9479-d4a1be297666','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(969,'73708e68-bd96-4dc5-91d6-bc25ee259066','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(970,'73708e68-bd96-4dc5-91d6-bc25ee259066','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(971,'53782c5a-f3dd-40bc-97c3-f1251126b148','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(972,'53782c5a-f3dd-40bc-97c3-f1251126b148','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(973,'b11eed3e-6e65-40ab-812b-7bc8e7162c45','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(974,'b11eed3e-6e65-40ab-812b-7bc8e7162c45','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(975,'918a4d84-ee93-49f0-bcc5-5e4c886f3ded','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(976,'918a4d84-ee93-49f0-bcc5-5e4c886f3ded','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(977,'a981b9f7-e1ea-41aa-b543-59dea3230559','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(978,'a981b9f7-e1ea-41aa-b543-59dea3230559','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(979,'a981b9f7-e1ea-41aa-b543-59dea3230559','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(980,'a981b9f7-e1ea-41aa-b543-59dea3230559','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(981,'a981b9f7-e1ea-41aa-b543-59dea3230559','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(982,'a981b9f7-e1ea-41aa-b543-59dea3230559','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(983,'a981b9f7-e1ea-41aa-b543-59dea3230559','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(984,'a981b9f7-e1ea-41aa-b543-59dea3230559','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(985,'fab4b9dc-4a6f-4b00-ac09-c3208df45b35','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(986,'5e4cdcb9-25af-464e-9f0b-f1ab1f09c28c','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(987,'2857adfa-4e98-4dec-80f0-93fd323ca3b5','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(988,'2857adfa-4e98-4dec-80f0-93fd323ca3b5','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(989,'6601a1e2-ec76-41f2-bf90-6317af8024ad','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(990,'6601a1e2-ec76-41f2-bf90-6317af8024ad','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(991,'e8e92a93-cf22-4808-99e9-1a62146da82d','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(992,'e8e92a93-cf22-4808-99e9-1a62146da82d','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(993,'5f340fa5-1cae-4430-a2c3-b76c208e7bad','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(994,'b5355a46-6bb1-47fb-bda7-9bff3f2ef64e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(995,'b5355a46-6bb1-47fb-bda7-9bff3f2ef64e','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(996,'727c0cda-eb98-493d-9871-a89a3353902c','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(997,'727c0cda-eb98-493d-9871-a89a3353902c','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(998,'6cfbd79b-1bf3-4558-87c7-9de00140abe2','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(999,'6cfbd79b-1bf3-4558-87c7-9de00140abe2','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1000,'6cfbd79b-1bf3-4558-87c7-9de00140abe2','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1001,'6cfbd79b-1bf3-4558-87c7-9de00140abe2','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1002,'cb898cd7-699c-4ad2-b6fd-bc5178820905','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1003,'e1d0f8f0-1cf6-4eab-a415-5a2976910f94','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1004,'e1d0f8f0-1cf6-4eab-a415-5a2976910f94','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1005,'c31cac40-32e5-4f8e-864e-d9e655998b8a','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1006,'c31cac40-32e5-4f8e-864e-d9e655998b8a','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1007,'109b32a8-9d1d-4140-87ff-880c8e0f5d60','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1008,'109b32a8-9d1d-4140-87ff-880c8e0f5d60','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1009,'bc766526-a31c-46a7-8493-c899022ec4c2','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1010,'bc766526-a31c-46a7-8493-c899022ec4c2','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1011,'96da39c1-baa7-4655-bf47-2e1bc3d3c402','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1012,'96da39c1-baa7-4655-bf47-2e1bc3d3c402','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1013,'59229d67-5dba-4bfd-add0-d26d962f41f6','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1014,'59229d67-5dba-4bfd-add0-d26d962f41f6','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1015,'f35e5345-8ae5-4e8f-aefc-091a77cde7c8','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1016,'d5683a0b-2be4-4d98-87f6-a688ada3c25d','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1017,'d5683a0b-2be4-4d98-87f6-a688ada3c25d','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1018,'5d2e540b-1dc4-4fc6-96ca-89e33a739643','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1019,'5d2e540b-1dc4-4fc6-96ca-89e33a739643','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1020,'a7e95036-4212-4b45-9ab2-14206f8faa9c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1021,'a7e95036-4212-4b45-9ab2-14206f8faa9c','1e9ba8ac-ff62-4a5e-a06d-915fa568c2d9'); -INSERT INTO vendors_categories VALUES(1022,'e7aefe92-0e7c-4a4e-95e3-218ae68c8989','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1023,'e7aefe92-0e7c-4a4e-95e3-218ae68c8989','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1024,'d1c559ae-da92-41f7-8ddd-e188dd20e00a','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1025,'d1c559ae-da92-41f7-8ddd-e188dd20e00a','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1026,'f81cc402-465a-4b69-a00f-6eb61775c2a0','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1027,'f81cc402-465a-4b69-a00f-6eb61775c2a0','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1028,'a576ce6a-934e-448c-8595-3c25f590a48d','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1029,'a576ce6a-934e-448c-8595-3c25f590a48d','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1030,'a576ce6a-934e-448c-8595-3c25f590a48d','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1031,'a576ce6a-934e-448c-8595-3c25f590a48d','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1032,'0d5895bd-7649-4aef-a5a6-bb969671e031','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1033,'0d5895bd-7649-4aef-a5a6-bb969671e031','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1034,'244f5934-975e-4a79-a594-badbac8540ea','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1035,'c66078ce-a23a-4142-b35d-43f7de7d27a1','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1036,'c66078ce-a23a-4142-b35d-43f7de7d27a1','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1037,'7419112e-50a0-4bd6-bd70-7b148fe47bd7','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1038,'7419112e-50a0-4bd6-bd70-7b148fe47bd7','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1039,'e031bfac-3cd2-4c23-abb2-992c89e7b22e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1040,'e031bfac-3cd2-4c23-abb2-992c89e7b22e','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1041,'78418f77-4b93-435b-86d5-f250778fd4c0','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1042,'7a0233e7-2452-46b4-9ee4-50e7166766e7','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1043,'7a0233e7-2452-46b4-9ee4-50e7166766e7','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1044,'abd192bc-cfdb-464d-b59a-9f7d923e4f62','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1045,'abd192bc-cfdb-464d-b59a-9f7d923e4f62','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1046,'abd192bc-cfdb-464d-b59a-9f7d923e4f62','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1047,'abd192bc-cfdb-464d-b59a-9f7d923e4f62','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1048,'717faca8-fc9d-49ea-a8d6-ccf8826ceb3a','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1049,'717faca8-fc9d-49ea-a8d6-ccf8826ceb3a','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1050,'6e8ac3b0-1608-484e-b2da-afcf640ce274','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1051,'6e8ac3b0-1608-484e-b2da-afcf640ce274','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1052,'45dafba9-e124-4baf-b290-5150185b84bd','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1053,'45dafba9-e124-4baf-b290-5150185b84bd','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1054,'24cb8ca5-d171-4590-bc2e-f5290db1a49f','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1055,'d77125d4-4fe0-4e9d-8511-af4129c28074','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1056,'d77125d4-4fe0-4e9d-8511-af4129c28074','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1057,'83b4c01f-15c4-4009-8b74-9232c5df535b','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1058,'83b4c01f-15c4-4009-8b74-9232c5df535b','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1059,'1c379362-1e53-4edc-aeea-5a9e60ced379','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1060,'1c379362-1e53-4edc-aeea-5a9e60ced379','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1061,'e8cfadc1-2871-44cc-81e9-d5c49e67a38b','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1062,'e8cfadc1-2871-44cc-81e9-d5c49e67a38b','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1063,'833f6ebf-4c67-4bed-8691-83a3db9a3647','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1064,'833f6ebf-4c67-4bed-8691-83a3db9a3647','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1065,'112a33c2-ca67-4896-b907-a4228a8da473','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1066,'112a33c2-ca67-4896-b907-a4228a8da473','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1067,'620cac11-303f-4a6a-95a9-c60c08824747','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1068,'620cac11-303f-4a6a-95a9-c60c08824747','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1069,'620cac11-303f-4a6a-95a9-c60c08824747','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1070,'620cac11-303f-4a6a-95a9-c60c08824747','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1071,'620cac11-303f-4a6a-95a9-c60c08824747','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1072,'620cac11-303f-4a6a-95a9-c60c08824747','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1073,'620cac11-303f-4a6a-95a9-c60c08824747','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1074,'4befcdd8-f450-45fb-8725-12135543a4c9','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1075,'4befcdd8-f450-45fb-8725-12135543a4c9','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1076,'c6715e8a-78a0-48e1-9402-a9926df73799','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1077,'c6715e8a-78a0-48e1-9402-a9926df73799','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1078,'c6715e8a-78a0-48e1-9402-a9926df73799','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1079,'c6715e8a-78a0-48e1-9402-a9926df73799','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1080,'c6715e8a-78a0-48e1-9402-a9926df73799','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1081,'c6715e8a-78a0-48e1-9402-a9926df73799','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1082,'c6715e8a-78a0-48e1-9402-a9926df73799','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1083,'5fa91909-8e5b-4fbe-88da-22d31c13afe1','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1084,'5fa91909-8e5b-4fbe-88da-22d31c13afe1','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1085,'5fa91909-8e5b-4fbe-88da-22d31c13afe1','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1086,'5fa91909-8e5b-4fbe-88da-22d31c13afe1','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1087,'5fa91909-8e5b-4fbe-88da-22d31c13afe1','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1088,'5fa91909-8e5b-4fbe-88da-22d31c13afe1','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1089,'efeb7959-6d0f-4430-9f2c-7d071714cb50','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1090,'07535b36-a80a-423a-a92a-4c31d7106185','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1091,'07535b36-a80a-423a-a92a-4c31d7106185','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1092,'9e97c80d-cdb5-44d3-8478-9d3eba48d562','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1093,'388b1467-61d5-40f6-932d-0034eeabcff7','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1094,'388b1467-61d5-40f6-932d-0034eeabcff7','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1095,'160d074d-4988-4f1e-a7a1-ff9a13819f88','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1096,'160d074d-4988-4f1e-a7a1-ff9a13819f88','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1097,'e9316c5e-7600-428c-a959-5441dad9318f','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1098,'f94f8be2-0130-41e0-a878-68ed8e5c23f0','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1099,'f94f8be2-0130-41e0-a878-68ed8e5c23f0','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1100,'2c06bacc-2fe4-4d10-bace-bab199cdaac9','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1101,'c3ed8ae8-36da-4425-a29a-37333de6e271','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1102,'e55ff5d9-7225-4d11-afaa-e87fc72568f8','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1103,'e55ff5d9-7225-4d11-afaa-e87fc72568f8','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1104,'dd77d983-68e7-4720-bb7c-554c50dee804','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1105,'dd77d983-68e7-4720-bb7c-554c50dee804','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1106,'dd77d983-68e7-4720-bb7c-554c50dee804','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1107,'dd77d983-68e7-4720-bb7c-554c50dee804','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1108,'dd77d983-68e7-4720-bb7c-554c50dee804','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1109,'dd77d983-68e7-4720-bb7c-554c50dee804','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1110,'dd77d983-68e7-4720-bb7c-554c50dee804','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1111,'dd77d983-68e7-4720-bb7c-554c50dee804','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1112,'6ec05c4e-db30-4967-b32e-63acdbaaf6ff','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1113,'6ec05c4e-db30-4967-b32e-63acdbaaf6ff','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1114,'4653871c-048d-4c28-927e-6d55496f47ad','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1115,'4653871c-048d-4c28-927e-6d55496f47ad','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1116,'b6414250-b828-4716-87e0-d862aa4e8df6','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1117,'b6414250-b828-4716-87e0-d862aa4e8df6','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1118,'2f8087c4-0009-40d2-9f1e-98415a2ae488','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1119,'2f8087c4-0009-40d2-9f1e-98415a2ae488','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1120,'78732a48-ecef-4545-80b1-dca4e58413ab','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1121,'78732a48-ecef-4545-80b1-dca4e58413ab','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1122,'9600f9a4-b70d-45b1-8108-84ae8c190b29','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1123,'9600f9a4-b70d-45b1-8108-84ae8c190b29','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1124,'85d66e7e-7117-452e-b429-8d78400c8069','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1125,'85d66e7e-7117-452e-b429-8d78400c8069','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1126,'85d66e7e-7117-452e-b429-8d78400c8069','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1127,'85d66e7e-7117-452e-b429-8d78400c8069','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1128,'85d66e7e-7117-452e-b429-8d78400c8069','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1129,'85d66e7e-7117-452e-b429-8d78400c8069','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1130,'cd7bf24a-7d22-460a-855a-7864a8820c2e','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1131,'cd7bf24a-7d22-460a-855a-7864a8820c2e','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1132,'1c7e89b7-7763-47a8-9314-492a0caf2443','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1133,'1c7e89b7-7763-47a8-9314-492a0caf2443','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1134,'1c7e89b7-7763-47a8-9314-492a0caf2443','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1135,'21ccff7c-5930-4544-9760-8497a621f3bf','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1136,'21ccff7c-5930-4544-9760-8497a621f3bf','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1137,'21ccff7c-5930-4544-9760-8497a621f3bf','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1138,'21ccff7c-5930-4544-9760-8497a621f3bf','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1139,'29ec926c-36a2-44ac-96c7-b9a5e63fbec7','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1140,'29ec926c-36a2-44ac-96c7-b9a5e63fbec7','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1141,'29ec926c-36a2-44ac-96c7-b9a5e63fbec7','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1142,'29ec926c-36a2-44ac-96c7-b9a5e63fbec7','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1143,'fef63460-4110-4bd3-8826-04b480a9b709','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1144,'0a6d046b-7098-4b02-a689-a4e7c3bcbd9b','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1145,'0a6d046b-7098-4b02-a689-a4e7c3bcbd9b','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1146,'6e7a3240-c120-4d2f-9d4e-9283735c1a98','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1147,'bccc2072-1d4f-4dfe-97ac-06c748b08e6f','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1148,'bccc2072-1d4f-4dfe-97ac-06c748b08e6f','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1149,'91bbcbf3-db2d-495f-b04d-f0671fab3d9c','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1150,'91bbcbf3-db2d-495f-b04d-f0671fab3d9c','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1151,'4ea63486-3260-4d14-abb1-13a4b6b9b679','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1152,'4ea63486-3260-4d14-abb1-13a4b6b9b679','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1153,'24df8ad4-8093-4a42-823d-519b7d5fd5ed','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1154,'24df8ad4-8093-4a42-823d-519b7d5fd5ed','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1155,'63181861-2f0d-4f3c-8743-0bee000fff80','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1156,'63181861-2f0d-4f3c-8743-0bee000fff80','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1157,'63181861-2f0d-4f3c-8743-0bee000fff80','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1158,'e6dd5abe-33be-4616-beb6-0d19903f83c1','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1159,'e6dd5abe-33be-4616-beb6-0d19903f83c1','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1160,'2ef77bfa-06a4-433e-b42b-8a1e11618009','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1161,'2ef77bfa-06a4-433e-b42b-8a1e11618009','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1162,'c12a6bf1-c5aa-47d0-87d8-d18b2f1c67b6','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1163,'c12a6bf1-c5aa-47d0-87d8-d18b2f1c67b6','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1164,'2ae29aa3-1c97-4297-8035-1d8bb92219af','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1165,'4feb1fc5-5474-4a11-a430-5e2bef218132','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1166,'4feb1fc5-5474-4a11-a430-5e2bef218132','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1167,'f80c3438-a9c8-4324-afc5-c7443429b108','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1168,'2ab54171-9b56-4bad-90a4-4109f21df473','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1169,'2ab54171-9b56-4bad-90a4-4109f21df473','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1170,'7e2671a4-df8e-45e4-b0bf-ba353d287cea','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1171,'7e2671a4-df8e-45e4-b0bf-ba353d287cea','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1172,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1173,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1174,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1175,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1176,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1177,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1178,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1179,'9c1b42ea-dfd9-4bf4-8b39-4b91e5d66395','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1180,'9781b52d-2307-4ed0-b0de-f4af7991005c','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1181,'9781b52d-2307-4ed0-b0de-f4af7991005c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1182,'9781b52d-2307-4ed0-b0de-f4af7991005c','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1183,'3ede0933-e8b9-427a-b1c4-19e326e1e32d','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1184,'fcbb90c3-57d8-4b8c-92c6-146474df3ecd','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1185,'fcbb90c3-57d8-4b8c-92c6-146474df3ecd','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1186,'c08d88c5-2262-4ba7-a8ba-9cd63def83b8','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1187,'c08d88c5-2262-4ba7-a8ba-9cd63def83b8','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1188,'c08d88c5-2262-4ba7-a8ba-9cd63def83b8','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1189,'c08d88c5-2262-4ba7-a8ba-9cd63def83b8','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1190,'c08d88c5-2262-4ba7-a8ba-9cd63def83b8','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1191,'c08d88c5-2262-4ba7-a8ba-9cd63def83b8','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1192,'c08d88c5-2262-4ba7-a8ba-9cd63def83b8','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1193,'5e4af345-2323-4cb2-abe7-7730a9eaf4ca','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1194,'1b2e9c37-5e71-452e-b61a-e663bfda7223','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1195,'1b2e9c37-5e71-452e-b61a-e663bfda7223','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1196,'1b2e9c37-5e71-452e-b61a-e663bfda7223','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1197,'4571ee3f-a6eb-43b3-8495-7a346fddce4d','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1198,'c12d85e8-1318-463e-a27a-4fbf4c888a04','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1199,'c184ea71-4c25-4eb8-b5f3-720b0b82ab36','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1200,'539c1848-6173-4151-a6d3-ce47c99dc739','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1201,'539c1848-6173-4151-a6d3-ce47c99dc739','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1202,'ed9ec750-23b5-410b-88e1-bfa5992d28b4','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1203,'e3cade40-dede-4bd3-9aba-7c895f4cc76b','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1204,'e3cade40-dede-4bd3-9aba-7c895f4cc76b','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1205,'4e1ac738-68f0-4a1b-b290-944741d285cd','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1206,'75fcc1fc-23f4-4e16-b382-440950b292e5','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1207,'75fcc1fc-23f4-4e16-b382-440950b292e5','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1208,'d90928ce-8c10-4c1c-9017-eeb2f0748246','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1209,'d90928ce-8c10-4c1c-9017-eeb2f0748246','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1210,'0c523fef-3428-4523-a9bc-92b7357ad50c','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1211,'0c523fef-3428-4523-a9bc-92b7357ad50c','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1212,'12dfd783-077f-4da4-9973-c960ba72600f','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1213,'b3a1c7f5-748e-4496-81dd-aa6a770ebe1d','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1214,'b3a1c7f5-748e-4496-81dd-aa6a770ebe1d','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1215,'b3a1c7f5-748e-4496-81dd-aa6a770ebe1d','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1216,'b3a1c7f5-748e-4496-81dd-aa6a770ebe1d','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1217,'3f2f23fe-ce67-4252-b2d9-828a0a76c6f1','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1218,'79a4bc60-6055-49c9-9e8b-9a1171fd24bd','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1219,'e3a74d25-53ac-4bd5-8393-0135dc348766','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1220,'e3a74d25-53ac-4bd5-8393-0135dc348766','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1221,'ae833937-9905-4b87-9d6d-54e40966dc95','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1222,'ae833937-9905-4b87-9d6d-54e40966dc95','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1223,'bfa84e80-213d-42e7-a5f7-5b7e6cab9422','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1224,'729b1d96-cdb3-43dd-b7b5-66c6ed194313','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1225,'729b1d96-cdb3-43dd-b7b5-66c6ed194313','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1226,'9df62db9-2e9c-4cc6-bc9c-631352f6e2c3','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1227,'9df62db9-2e9c-4cc6-bc9c-631352f6e2c3','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1228,'e1129463-7598-4374-8088-e435e1f40c93','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1229,'e1129463-7598-4374-8088-e435e1f40c93','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1230,'bade8efe-1aae-4a3e-9995-534e64f981a0','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1231,'bade8efe-1aae-4a3e-9995-534e64f981a0','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1232,'d953e3c6-9b84-4528-9c35-16e4917c7e2a','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1233,'d953e3c6-9b84-4528-9c35-16e4917c7e2a','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1234,'d953e3c6-9b84-4528-9c35-16e4917c7e2a','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1235,'d953e3c6-9b84-4528-9c35-16e4917c7e2a','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1236,'d953e3c6-9b84-4528-9c35-16e4917c7e2a','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1237,'d953e3c6-9b84-4528-9c35-16e4917c7e2a','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1238,'d953e3c6-9b84-4528-9c35-16e4917c7e2a','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1239,'ff211273-6ed3-4cf0-854d-30dbcc2bcb69','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1240,'c68d5cf4-1b07-4139-8868-6fbc9be57859','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1241,'c68d5cf4-1b07-4139-8868-6fbc9be57859','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1242,'f9753c94-782f-4632-b691-d1017526d71d','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1243,'f9753c94-782f-4632-b691-d1017526d71d','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1244,'af5c9b97-bd24-4923-9ee4-55dedddfd2ef','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1245,'af5c9b97-bd24-4923-9ee4-55dedddfd2ef','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1246,'00585ee3-9144-4308-8e3b-00343dfadf5b','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1247,'00585ee3-9144-4308-8e3b-00343dfadf5b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1248,'efe73437-9498-4233-afdc-a73d2a6d7a6f','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1249,'efe73437-9498-4233-afdc-a73d2a6d7a6f','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1250,'5c2b0a4a-acb5-48eb-b624-049952054ae2','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1251,'5c2b0a4a-acb5-48eb-b624-049952054ae2','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1252,'5c2b0a4a-acb5-48eb-b624-049952054ae2','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1253,'bf140905-6bdc-417c-8ff6-809ea9c22f43','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1254,'bf140905-6bdc-417c-8ff6-809ea9c22f43','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1255,'71cbc701-3612-4f71-9717-8e0da4271ce9','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1256,'71cbc701-3612-4f71-9717-8e0da4271ce9','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1257,'316836de-6d81-4c3a-8b99-7a61ccaa78af','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1258,'316836de-6d81-4c3a-8b99-7a61ccaa78af','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1259,'4ea2dd74-0517-4152-9ae3-8e8475c3184f','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1260,'4ea2dd74-0517-4152-9ae3-8e8475c3184f','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1261,'7130e1c4-59c6-459a-a819-2eb14f3e9847','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1262,'ca3bf765-2182-4a34-a5cf-da17810ccfd6','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1263,'ab7a419c-4dbc-471d-97a0-c56f7c5c3b03','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1264,'ab7a419c-4dbc-471d-97a0-c56f7c5c3b03','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1265,'157868ff-103a-431a-a078-3c7fc9723bb8','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1266,'157868ff-103a-431a-a078-3c7fc9723bb8','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1267,'56e7ef1f-3437-43ec-bda6-e0153b74034e','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1268,'1829dbd6-6c24-4595-a81f-e9fe5ee4d443','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1269,'1829dbd6-6c24-4595-a81f-e9fe5ee4d443','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1270,'ff62460b-d2a2-4e49-853c-de54e82cc38e','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1271,'ff62460b-d2a2-4e49-853c-de54e82cc38e','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1272,'b09535b4-5fb5-4866-8bee-0c09a2813943','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1273,'b09535b4-5fb5-4866-8bee-0c09a2813943','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1274,'7eb015f9-71fe-47aa-a930-29cb2bcc4af8','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1275,'7eb015f9-71fe-47aa-a930-29cb2bcc4af8','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1276,'7eb015f9-71fe-47aa-a930-29cb2bcc4af8','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1277,'7eb015f9-71fe-47aa-a930-29cb2bcc4af8','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1278,'7eb015f9-71fe-47aa-a930-29cb2bcc4af8','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1279,'7eb015f9-71fe-47aa-a930-29cb2bcc4af8','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1280,'7eb015f9-71fe-47aa-a930-29cb2bcc4af8','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1281,'e1014347-b4f1-4844-864c-11323f1c0631','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1282,'f299bbb4-0d01-43b2-a7f7-d3b479776a04','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1283,'f299bbb4-0d01-43b2-a7f7-d3b479776a04','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1284,'f299bbb4-0d01-43b2-a7f7-d3b479776a04','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1285,'f299bbb4-0d01-43b2-a7f7-d3b479776a04','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1286,'c0bfeef1-8a4e-4d44-a84c-2f6fcc9c7d1a','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1287,'c0bfeef1-8a4e-4d44-a84c-2f6fcc9c7d1a','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1288,'f83e8166-5209-4c8c-9345-145965b24420','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1289,'7985b050-f1fe-49df-a9bf-e4239073ce31','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1290,'7985b050-f1fe-49df-a9bf-e4239073ce31','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1291,'ceeb5238-18c0-41da-868c-5bfdf82336c6','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1292,'014e19ce-8cc2-44c0-bef1-7a4cf145b0f6','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1293,'014e19ce-8cc2-44c0-bef1-7a4cf145b0f6','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1294,'9c48f472-efa1-4d56-9351-2bff6a3e5d42','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1295,'9c48f472-efa1-4d56-9351-2bff6a3e5d42','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1296,'a3548892-4e46-4bc4-815d-4ce7f297e193','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1297,'a3548892-4e46-4bc4-815d-4ce7f297e193','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1298,'a815aa07-96c0-4cf7-80f2-58a62a7a4e44','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1299,'a815aa07-96c0-4cf7-80f2-58a62a7a4e44','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1300,'a815aa07-96c0-4cf7-80f2-58a62a7a4e44','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1301,'a815aa07-96c0-4cf7-80f2-58a62a7a4e44','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1302,'a815aa07-96c0-4cf7-80f2-58a62a7a4e44','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1303,'a815aa07-96c0-4cf7-80f2-58a62a7a4e44','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1304,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1305,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1306,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1307,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1308,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1309,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1310,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1311,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1312,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1313,'99bca174-1f40-4afc-8e66-ddf7c53fee1c','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1314,'e59b2908-49c1-433d-a7f0-70b3ed63a729','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1315,'e59b2908-49c1-433d-a7f0-70b3ed63a729','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1316,'e59b2908-49c1-433d-a7f0-70b3ed63a729','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1317,'e59b2908-49c1-433d-a7f0-70b3ed63a729','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1318,'e59b2908-49c1-433d-a7f0-70b3ed63a729','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1319,'e59b2908-49c1-433d-a7f0-70b3ed63a729','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1320,'e59b2908-49c1-433d-a7f0-70b3ed63a729','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1321,'21458143-9354-4d7a-9678-d8195a64705a','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1322,'649f74a4-1f01-43c0-b8e7-7ae0e03cb1e1','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1323,'9ff39164-d868-4b40-b12b-24fbe9f9a486','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1324,'9ff39164-d868-4b40-b12b-24fbe9f9a486','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1325,'d0f557dd-c92b-4c63-8f6a-3ad139016d76','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1326,'d0f557dd-c92b-4c63-8f6a-3ad139016d76','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1327,'d0f557dd-c92b-4c63-8f6a-3ad139016d76','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1328,'d0f557dd-c92b-4c63-8f6a-3ad139016d76','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1329,'d0f557dd-c92b-4c63-8f6a-3ad139016d76','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1330,'d0f557dd-c92b-4c63-8f6a-3ad139016d76','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1331,'99f8f0e0-7ed6-4d77-a334-711acd00b105','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1332,'62421ff1-406e-4db9-8950-f5541a7eedf3','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1333,'62421ff1-406e-4db9-8950-f5541a7eedf3','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1334,'bd9d31d8-4e20-4d34-9d02-f978f882f156','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1335,'1a7cc713-2128-4a21-a275-b00f71259666','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1336,'1a7cc713-2128-4a21-a275-b00f71259666','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1337,'27b1635f-5a61-4fcb-af77-91a5b411e00f','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1338,'2ac91f2d-14f1-4c3a-a0d5-8336d55ccc67','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1339,'2ac91f2d-14f1-4c3a-a0d5-8336d55ccc67','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1340,'38950c53-96ed-457e-a28e-a444978185f8','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1341,'386563de-e351-4727-be05-f297f49d048c','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1342,'386563de-e351-4727-be05-f297f49d048c','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1343,'fc88cb06-875c-43cc-8808-ab83956af300','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1344,'fc88cb06-875c-43cc-8808-ab83956af300','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1345,'f12810a3-c41a-4575-a117-53e346907939','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1346,'1a21cbe7-dbe1-4fba-8a90-f281aab3e33c','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1347,'1a21cbe7-dbe1-4fba-8a90-f281aab3e33c','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1348,'1a21cbe7-dbe1-4fba-8a90-f281aab3e33c','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1349,'55a27aee-5a97-46c5-9dd0-c4c42a779b52','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1350,'55a27aee-5a97-46c5-9dd0-c4c42a779b52','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1351,'55a27aee-5a97-46c5-9dd0-c4c42a779b52','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1352,'55a27aee-5a97-46c5-9dd0-c4c42a779b52','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1353,'55a27aee-5a97-46c5-9dd0-c4c42a779b52','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1354,'55a27aee-5a97-46c5-9dd0-c4c42a779b52','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1355,'e373784b-586f-420c-948c-2436599c4756','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1356,'e373784b-586f-420c-948c-2436599c4756','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1357,'cc26a8ba-dde9-475f-a285-ff23d38bd589','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1358,'cc26a8ba-dde9-475f-a285-ff23d38bd589','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1359,'f5af83bb-fc58-4526-a7b9-50935158c31c','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1360,'f5af83bb-fc58-4526-a7b9-50935158c31c','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1361,'b5d2a094-63e3-42a9-a1e6-bf3c67787737','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1362,'5ed3f660-c359-4b46-89bd-8ff9ae5b512c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1363,'5ed3f660-c359-4b46-89bd-8ff9ae5b512c','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1364,'0db96494-f2bd-4f03-918c-d2e862399527','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1365,'d2b93d14-2e2c-40dd-989a-ff2c51fdee94','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1366,'d2b93d14-2e2c-40dd-989a-ff2c51fdee94','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1367,'bb1f09be-0d81-4ec5-a36b-363417baaa47','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1368,'bb1f09be-0d81-4ec5-a36b-363417baaa47','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1369,'e35c56b1-81f9-405c-9ec8-856e36e0fbd3','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1370,'e35c56b1-81f9-405c-9ec8-856e36e0fbd3','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1371,'9e2b5baf-46fc-4928-9b9c-e71d7b811906','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1372,'9e2b5baf-46fc-4928-9b9c-e71d7b811906','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1373,'78dc3cee-5aee-46f7-8ee2-6bed45b0ab26','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1374,'78dc3cee-5aee-46f7-8ee2-6bed45b0ab26','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1375,'9854312d-ad8a-4c12-bf0f-dc244908fd68','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1376,'37571df6-8557-4bed-907b-9ab4d6015118','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1377,'37571df6-8557-4bed-907b-9ab4d6015118','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1378,'21c53653-b1d0-4757-98ca-618dc7681445','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1379,'21c53653-b1d0-4757-98ca-618dc7681445','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1380,'1d605a1e-4c29-400f-9cc8-21c5aae9f39d','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1381,'1d605a1e-4c29-400f-9cc8-21c5aae9f39d','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1382,'76d08b39-4ceb-48d4-a4e8-3c55cc8deb71','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1383,'190ce542-17e0-4d77-8440-f85e01aa1671','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1384,'190ce542-17e0-4d77-8440-f85e01aa1671','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1385,'b10c73a9-b215-4d07-8b75-ecb65046f0e7','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1386,'b10c73a9-b215-4d07-8b75-ecb65046f0e7','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1387,'4e046750-9660-4637-bde6-f7c8fac4f09c','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1388,'4e046750-9660-4637-bde6-f7c8fac4f09c','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1389,'a73a5786-3abf-4def-86be-efc2acf584cf','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1390,'881c4157-1bfa-444f-8bc7-df50cac91506','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1391,'881c4157-1bfa-444f-8bc7-df50cac91506','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1392,'b098f279-7e4f-4914-8f27-17ce832752a1','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1393,'2b97b039-5e9f-4c47-b3a9-0b22f0ded9ce','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1394,'1271d5dd-c4d6-4f5d-a42e-37756d5e721b','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1395,'1271d5dd-c4d6-4f5d-a42e-37756d5e721b','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1396,'3e146074-f246-4295-9049-c919d6e61ef2','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1397,'3e146074-f246-4295-9049-c919d6e61ef2','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1398,'1a889051-5535-40f5-89ce-60bdaac73dcc','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1399,'1a889051-5535-40f5-89ce-60bdaac73dcc','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1400,'1a889051-5535-40f5-89ce-60bdaac73dcc','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1401,'1a889051-5535-40f5-89ce-60bdaac73dcc','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1402,'554daabd-d3e8-4ded-82f4-b74f837c840c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1403,'554daabd-d3e8-4ded-82f4-b74f837c840c','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1404,'daf0cc6b-a6ac-4634-b7a0-0193d2bdac2c','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1405,'daf0cc6b-a6ac-4634-b7a0-0193d2bdac2c','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1406,'66803190-9ffb-459f-8407-5f8297e775e9','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1407,'66803190-9ffb-459f-8407-5f8297e775e9','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1408,'b44c225c-2b60-4f2f-935a-762d354e9b44','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1409,'b44c225c-2b60-4f2f-935a-762d354e9b44','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1410,'b44c225c-2b60-4f2f-935a-762d354e9b44','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1411,'b44c225c-2b60-4f2f-935a-762d354e9b44','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1412,'b44c225c-2b60-4f2f-935a-762d354e9b44','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1413,'fe82c5c6-167a-4eb1-919d-0b86f1b47910','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1414,'fe82c5c6-167a-4eb1-919d-0b86f1b47910','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1415,'fe82c5c6-167a-4eb1-919d-0b86f1b47910','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1416,'fe82c5c6-167a-4eb1-919d-0b86f1b47910','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1417,'fe82c5c6-167a-4eb1-919d-0b86f1b47910','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1418,'a149f958-47b3-46ac-a1b2-09e165d1878c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1419,'a149f958-47b3-46ac-a1b2-09e165d1878c','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1420,'49d10d82-6d44-4965-8050-e838b52750a5','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1421,'b76ffaae-310c-4961-be15-aa1e8edd0cd6','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1422,'b76ffaae-310c-4961-be15-aa1e8edd0cd6','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1423,'bff854cf-8d16-4540-b588-922d98004227','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1424,'bff854cf-8d16-4540-b588-922d98004227','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1425,'97109e2e-68ae-490d-8ccc-ec64334de229','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1426,'96bccfd5-54a4-453e-a6ff-f6d093c5f645','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1427,'96bccfd5-54a4-453e-a6ff-f6d093c5f645','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1428,'32d13e5b-4e1d-4c52-984e-ca207f0697ec','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1429,'d59b59be-6ea4-41f6-b861-b14444ea449b','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1430,'d59b59be-6ea4-41f6-b861-b14444ea449b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1431,'5fcf9221-a4f1-4717-886d-051be1b12781','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1432,'de6e6f78-57d0-4922-a071-6f3362cb6b65','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1433,'de6e6f78-57d0-4922-a071-6f3362cb6b65','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1434,'1bd6ae88-49ff-4087-9481-ffdddaa578c8','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1435,'1bd6ae88-49ff-4087-9481-ffdddaa578c8','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1436,'fb9d1399-b329-48fc-a016-ac8014595952','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1437,'06adf6dd-b7dc-475a-85b1-436405f1544e','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1438,'fff4660f-7655-4b98-97d5-e8aa69b5ad9f','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1439,'fff4660f-7655-4b98-97d5-e8aa69b5ad9f','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1440,'8fff2e56-8579-4acc-a0b9-a754e2e85073','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1441,'8fff2e56-8579-4acc-a0b9-a754e2e85073','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1442,'1a9e504a-e8b8-4a1e-9065-8319145d1661','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1443,'1a9e504a-e8b8-4a1e-9065-8319145d1661','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1444,'07533898-bf7d-40cb-a8e9-2c31057fc765','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1445,'07533898-bf7d-40cb-a8e9-2c31057fc765','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1446,'a219b6a3-8f22-4d9d-a571-52ebeaef6a5e','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1447,'a219b6a3-8f22-4d9d-a571-52ebeaef6a5e','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1448,'17075a35-5bec-4580-8c51-bf634b41f549','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1449,'17075a35-5bec-4580-8c51-bf634b41f549','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1450,'17075a35-5bec-4580-8c51-bf634b41f549','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1451,'17075a35-5bec-4580-8c51-bf634b41f549','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1452,'17075a35-5bec-4580-8c51-bf634b41f549','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1453,'e69ef4a2-1233-4e67-a0c0-f479d9ef4176','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1454,'e69ef4a2-1233-4e67-a0c0-f479d9ef4176','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1455,'b10114a0-8313-4a61-966b-f4b2ac8314ba','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1456,'b10114a0-8313-4a61-966b-f4b2ac8314ba','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1457,'e4a55dc0-2cf7-42f2-9556-500ab2f2e15b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1458,'0e881d97-7c9a-4d03-b0d3-7126ae9f77ce','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1459,'0e881d97-7c9a-4d03-b0d3-7126ae9f77ce','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1460,'6aec9681-86ad-43e7-b96e-94e7a449a3de','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1461,'014fe9a9-c8d4-4769-86e9-4b482356404f','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1462,'014fe9a9-c8d4-4769-86e9-4b482356404f','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1463,'e8c0ddd9-aaff-402f-ba80-4ded12c78470','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1464,'e8c0ddd9-aaff-402f-ba80-4ded12c78470','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1465,'e8c0ddd9-aaff-402f-ba80-4ded12c78470','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1466,'e8c0ddd9-aaff-402f-ba80-4ded12c78470','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1467,'3c67a34d-6519-41f7-8af7-c31fe62b6c67','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1468,'3c67a34d-6519-41f7-8af7-c31fe62b6c67','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1469,'b864a410-4ec9-42de-aa70-ff4527d4086b','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1470,'7277b2d5-7e39-449e-857b-9649e61df96e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1471,'7277b2d5-7e39-449e-857b-9649e61df96e','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1472,'7277b2d5-7e39-449e-857b-9649e61df96e','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1473,'665dcda9-a868-4f10-93cd-0f3ed14c87d6','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1474,'665dcda9-a868-4f10-93cd-0f3ed14c87d6','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1475,'0d4dd52c-ea43-455a-9f1e-5e067078586c','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1476,'0d4dd52c-ea43-455a-9f1e-5e067078586c','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1477,'b3692191-90b3-4384-b1be-ea9d973d58af','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1478,'b3692191-90b3-4384-b1be-ea9d973d58af','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1479,'679c2583-ae24-41e3-b32f-7c9024863596','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1480,'679c2583-ae24-41e3-b32f-7c9024863596','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1481,'6fc7d36e-9aaa-4494-b263-0109f4017d5b','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1482,'126d531c-054e-4ce1-90fd-b530f4aff734','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1483,'126d531c-054e-4ce1-90fd-b530f4aff734','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1484,'126d531c-054e-4ce1-90fd-b530f4aff734','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1485,'126d531c-054e-4ce1-90fd-b530f4aff734','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1486,'126d531c-054e-4ce1-90fd-b530f4aff734','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1487,'3943d24f-9663-47ee-96e3-c8e71921189d','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1488,'3943d24f-9663-47ee-96e3-c8e71921189d','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1489,'3943d24f-9663-47ee-96e3-c8e71921189d','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1490,'3943d24f-9663-47ee-96e3-c8e71921189d','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1491,'3943d24f-9663-47ee-96e3-c8e71921189d','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1492,'3943d24f-9663-47ee-96e3-c8e71921189d','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1493,'3943d24f-9663-47ee-96e3-c8e71921189d','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1494,'3943d24f-9663-47ee-96e3-c8e71921189d','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1495,'f5b7ce86-02bc-475f-88a2-61c2ed0e9470','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1496,'f5b7ce86-02bc-475f-88a2-61c2ed0e9470','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1497,'a2fe228c-770a-4851-90fb-b50a0a6b107b','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1498,'a2fe228c-770a-4851-90fb-b50a0a6b107b','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1499,'b6d96df9-04f6-4e4f-92ae-20202c36e86d','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1500,'9017b48d-88c6-4d72-9e53-ba38e2bf9641','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1501,'657d7944-db95-4eb0-bdba-6b9f72b507e9','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1502,'657d7944-db95-4eb0-bdba-6b9f72b507e9','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1503,'8c93e729-b8b0-42d9-baa4-bd039b0f8a79','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1504,'9021517a-f2b2-4710-a49d-5fb582253eea','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1505,'9021517a-f2b2-4710-a49d-5fb582253eea','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1506,'aadd32f4-bdf4-4f76-86e5-92a65f5852c2','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1507,'aadd32f4-bdf4-4f76-86e5-92a65f5852c2','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1508,'0029db09-1b29-477d-929b-f95d2e189e9e','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1509,'0029db09-1b29-477d-929b-f95d2e189e9e','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1510,'4938b523-5b48-463b-b5b0-a11f890bd204','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1511,'4938b523-5b48-463b-b5b0-a11f890bd204','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1512,'263c4ce5-e50f-4635-b07a-a7da1bcdda63','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1513,'263c4ce5-e50f-4635-b07a-a7da1bcdda63','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1514,'beb17682-52a1-49f3-a1a6-61d797b16723','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1515,'beb17682-52a1-49f3-a1a6-61d797b16723','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1516,'8b328334-4c1b-49c8-a1c5-10c3530d5a95','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1517,'8b328334-4c1b-49c8-a1c5-10c3530d5a95','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1518,'5db5342f-a133-4ba8-8c04-1196385b19f8','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1519,'5db5342f-a133-4ba8-8c04-1196385b19f8','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1520,'0ff5ac0c-c65e-4b24-8bb0-df663819da80','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1521,'0ff5ac0c-c65e-4b24-8bb0-df663819da80','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1522,'dd359d97-b940-4551-b1df-c126e88e535f','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1523,'dd359d97-b940-4551-b1df-c126e88e535f','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1524,'173ac286-8b64-4312-b651-513e352ec890','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1525,'173ac286-8b64-4312-b651-513e352ec890','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1526,'3acf608e-30d5-41b1-a479-8d41524b6187','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1527,'3acf608e-30d5-41b1-a479-8d41524b6187','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1528,'2e86dbab-28b9-4cb4-8016-78cc6d52d1df','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1529,'2e86dbab-28b9-4cb4-8016-78cc6d52d1df','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1530,'aa1e2c24-5c42-4f13-ba1c-ee4d67f7ff73','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1531,'aa1e2c24-5c42-4f13-ba1c-ee4d67f7ff73','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1532,'176ffee1-8869-4d69-91f9-a7b3397ef9b9','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1533,'c0de18f2-a2e4-47b0-97e3-f7cb7bb31347','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1534,'c0de18f2-a2e4-47b0-97e3-f7cb7bb31347','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1535,'db16c9ba-97b3-4dc6-8edb-c370a8e4cd15','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1536,'db16c9ba-97b3-4dc6-8edb-c370a8e4cd15','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1537,'67525914-76fb-44a2-94cb-02ca23023eed','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1538,'67525914-76fb-44a2-94cb-02ca23023eed','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1539,'7e946c51-02d6-4d8b-ba60-d9fb47016ee8','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1540,'7e946c51-02d6-4d8b-ba60-d9fb47016ee8','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1541,'9c015820-0f90-4d2c-989c-069645e72bfb','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1542,'108c8fc7-4a58-421b-a418-a9a155e3de6c','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1543,'108c8fc7-4a58-421b-a418-a9a155e3de6c','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1544,'f7bc35ac-b559-4f55-864b-0785dc5684d6','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1545,'f134c7b8-444c-46dd-a1e9-72aa1d3a51c3','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1546,'f134c7b8-444c-46dd-a1e9-72aa1d3a51c3','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1547,'db2300ad-e5d9-446c-9da0-6bfbef0cf595','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1548,'db2300ad-e5d9-446c-9da0-6bfbef0cf595','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1549,'118de4cb-819c-4878-a888-36771f8e3e99','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1550,'118de4cb-819c-4878-a888-36771f8e3e99','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1551,'85094a4c-20fe-4db4-ab31-c6730b502518','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1552,'85094a4c-20fe-4db4-ab31-c6730b502518','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1553,'d735c2aa-11d5-4d49-92e9-e13fa3a7e1e4','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1554,'d735c2aa-11d5-4d49-92e9-e13fa3a7e1e4','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1555,'7896b940-33be-4ff1-9b77-9fa6fd816bbf','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1556,'7896b940-33be-4ff1-9b77-9fa6fd816bbf','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1557,'5e9b6380-852c-4981-9d5e-5700f791e43e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1558,'5e9b6380-852c-4981-9d5e-5700f791e43e','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1559,'5e9b6380-852c-4981-9d5e-5700f791e43e','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1560,'5e9b6380-852c-4981-9d5e-5700f791e43e','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1561,'38caf300-c009-410f-b3c3-439bd09779c1','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1562,'38caf300-c009-410f-b3c3-439bd09779c1','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1563,'d7e9df0d-d3d1-42ac-b596-ac52a594eb2b','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1564,'e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1565,'e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1566,'e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1567,'e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1568,'e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1569,'e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1570,'e3f60885-9b7b-4e78-b0a2-bb6ea9ee5a25','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1571,'119b447d-223f-4274-9986-84dd1830d4e0','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1572,'119b447d-223f-4274-9986-84dd1830d4e0','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1573,'48d740df-7602-4e6c-b8e2-9cc93b2e936b','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1574,'48d740df-7602-4e6c-b8e2-9cc93b2e936b','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1575,'2066516f-e6d2-41e6-8ef2-9a450750e7ef','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1576,'2066516f-e6d2-41e6-8ef2-9a450750e7ef','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1577,'7c8fbdf8-4350-4f26-a2c5-a1792f633ba2','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1578,'7c8fbdf8-4350-4f26-a2c5-a1792f633ba2','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1579,'c02f3aae-1e0d-47c4-8610-f8736ce4dd02','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1580,'f72eb235-2bb1-4629-9043-b2b5154ae5dd','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1581,'f72eb235-2bb1-4629-9043-b2b5154ae5dd','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1582,'134014ff-400a-4165-af24-2f658ba38732','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1583,'134014ff-400a-4165-af24-2f658ba38732','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1584,'67233af8-9a37-4503-9b5b-8b12030d5d2e','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1585,'1c070431-05ea-41ac-9601-8d086581f0cf','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1586,'1c070431-05ea-41ac-9601-8d086581f0cf','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1587,'da16129f-6005-4d3a-9c91-890ed477feb0','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1588,'da16129f-6005-4d3a-9c91-890ed477feb0','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1589,'18e4b228-8d4e-4cf9-bc68-c02664283d62','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1590,'18e4b228-8d4e-4cf9-bc68-c02664283d62','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1591,'4ecd01fe-f249-475c-8aac-5514473123dd','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1592,'8c2141b9-b468-4edf-9727-a8f3b75fff0a','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1593,'36d22286-00d1-4bf9-be29-d09f18273b4e','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1594,'36d22286-00d1-4bf9-be29-d09f18273b4e','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1595,'5368f957-67e1-48b8-aea9-ae2cb85e0e6b','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1596,'5368f957-67e1-48b8-aea9-ae2cb85e0e6b','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1597,'3d43229e-3794-47ee-872a-2d1ac6631a7a','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1598,'3d43229e-3794-47ee-872a-2d1ac6631a7a','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1599,'e6b5ee43-d25d-414d-935f-d49964a9bbea','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1600,'e6b5ee43-d25d-414d-935f-d49964a9bbea','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1601,'26748f62-b978-4a49-a479-d191bcc2e581','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1602,'db743858-0e7d-4f97-b023-74bffde3f65c','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1603,'f411d16d-6f78-49e8-97b1-06eef870873e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1604,'f411d16d-6f78-49e8-97b1-06eef870873e','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1605,'f411d16d-6f78-49e8-97b1-06eef870873e','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1606,'f411d16d-6f78-49e8-97b1-06eef870873e','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1607,'f411d16d-6f78-49e8-97b1-06eef870873e','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1608,'f411d16d-6f78-49e8-97b1-06eef870873e','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1609,'7c55fecd-4135-400b-b016-353b5737d715','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1610,'b5566a53-6e67-420b-a23c-ebc7b04a276c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1611,'b5566a53-6e67-420b-a23c-ebc7b04a276c','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1612,'fa11b1ba-78b7-481d-83a0-88fe228ec672','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1613,'fa11b1ba-78b7-481d-83a0-88fe228ec672','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1614,'26a97c11-2043-453a-9afa-45a53007879e','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1615,'26a97c11-2043-453a-9afa-45a53007879e','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1616,'5ec33240-9d29-4b1b-92c2-db6ea69daf0b','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1617,'87124091-d4cb-4452-b1ee-2e374c73d32e','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1618,'e5cf632a-d876-448d-9772-6108eb53124d','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1619,'e5cf632a-d876-448d-9772-6108eb53124d','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1620,'5c22ea8c-4a31-42dd-b988-213697c49761','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1621,'5c22ea8c-4a31-42dd-b988-213697c49761','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1622,'eb0eaf42-29c4-4aca-8788-bfae50f4fb71','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1623,'6732c915-3498-4dda-9965-d3399676846c','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1624,'6732c915-3498-4dda-9965-d3399676846c','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1625,'323a2bed-5c8d-4cc5-97c0-b33df7fd32dd','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1626,'323a2bed-5c8d-4cc5-97c0-b33df7fd32dd','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1627,'5e77cd0c-5695-480e-aede-275607362e56','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1628,'5e77cd0c-5695-480e-aede-275607362e56','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1629,'c0c373b2-8079-453a-a98e-25ef05d8f6a7','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1630,'7031c12e-9c4f-4718-842e-0a076cb72afd','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1631,'7031c12e-9c4f-4718-842e-0a076cb72afd','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1632,'6103e31f-752d-4fd6-b702-b1ccc1b9b82b','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1633,'3f23cdc2-8045-4597-b882-d3778a366b93','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1634,'3f23cdc2-8045-4597-b882-d3778a366b93','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1635,'f25c6ba6-ada2-4567-9e6e-efad9f85cd4d','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1636,'f25c6ba6-ada2-4567-9e6e-efad9f85cd4d','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1637,'910d3261-7d4b-4c76-a785-9b0d45c1f23e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1638,'c780a8b2-c4f6-4758-be52-9ab2971be10e','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1639,'c780a8b2-c4f6-4758-be52-9ab2971be10e','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1640,'064f7e5b-a4fc-43dc-b0ff-fc7fcc830165','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1641,'064f7e5b-a4fc-43dc-b0ff-fc7fcc830165','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1642,'7835a78c-fd3c-4587-a6f5-85f9473614e1','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1643,'7835a78c-fd3c-4587-a6f5-85f9473614e1','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1644,'7835a78c-fd3c-4587-a6f5-85f9473614e1','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1645,'7835a78c-fd3c-4587-a6f5-85f9473614e1','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1646,'7835a78c-fd3c-4587-a6f5-85f9473614e1','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1647,'7835a78c-fd3c-4587-a6f5-85f9473614e1','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1648,'2b1ef4ea-53b7-4ddc-b44b-7af750577b1c','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1649,'2b1ef4ea-53b7-4ddc-b44b-7af750577b1c','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1650,'6a86b413-d77f-45db-93a6-89f6fe16ddb2','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1651,'6a86b413-d77f-45db-93a6-89f6fe16ddb2','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1652,'5f9f140b-4475-425f-b763-c93384838f66','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1653,'5f9f140b-4475-425f-b763-c93384838f66','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1654,'18be3db7-4f52-463f-aefa-5544212b2fd5','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1655,'18be3db7-4f52-463f-aefa-5544212b2fd5','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1656,'d1b20e0d-9ed8-4ce1-afbb-24168bc40404','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1657,'d1b20e0d-9ed8-4ce1-afbb-24168bc40404','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1658,'eefd9aa7-8933-4e05-9f1f-e3a6bbfbc4ba','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1659,'eefd9aa7-8933-4e05-9f1f-e3a6bbfbc4ba','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1660,'6b4f1462-c457-4d2d-816e-98a4ba2d10ca','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1661,'f94d60dc-4f08-4346-ac55-9e56b62f4776','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1662,'f94d60dc-4f08-4346-ac55-9e56b62f4776','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1663,'a8600860-d9e2-40cd-b13d-5eaab0782dba','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1664,'61e31947-53b5-41d5-9a13-a864afb5b6e2','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1665,'61e31947-53b5-41d5-9a13-a864afb5b6e2','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1666,'61e31947-53b5-41d5-9a13-a864afb5b6e2','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1667,'61e31947-53b5-41d5-9a13-a864afb5b6e2','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1668,'c08a92bb-5879-4927-894d-762829ed9268','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1669,'27c174a1-7ec3-4069-8588-7c4528c8406f','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1670,'27c174a1-7ec3-4069-8588-7c4528c8406f','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1671,'5345a988-0aad-4300-8226-0556d6a428e5','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1672,'5345a988-0aad-4300-8226-0556d6a428e5','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1673,'375c8452-e190-4985-b4bb-deebbc1104f7','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1674,'375c8452-e190-4985-b4bb-deebbc1104f7','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1675,'7f65369b-ff04-457e-b310-43b413b431d1','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1676,'7f65369b-ff04-457e-b310-43b413b431d1','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1677,'7f65369b-ff04-457e-b310-43b413b431d1','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1678,'540f0c2d-5d5a-44c3-833a-38a7a4dbc933','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1679,'540f0c2d-5d5a-44c3-833a-38a7a4dbc933','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1680,'8802fc56-e386-4f86-87fd-94c02383509f','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1681,'8802fc56-e386-4f86-87fd-94c02383509f','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1682,'c8ae6a0c-6315-48b1-ba9a-b4d517366ca1','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1683,'c8ae6a0c-6315-48b1-ba9a-b4d517366ca1','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1684,'b8c78f5a-f771-4830-a728-dcc0d2f7d868','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1685,'b8c78f5a-f771-4830-a728-dcc0d2f7d868','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1686,'23fb0449-9c5a-42f9-9916-062e8204d864','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1687,'23fb0449-9c5a-42f9-9916-062e8204d864','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1688,'bdcd0662-7818-43ce-9fb3-370203b8fdec','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1689,'bdcd0662-7818-43ce-9fb3-370203b8fdec','1e9ba8ac-ff62-4a5e-a06d-915fa568c2d9'); -INSERT INTO vendors_categories VALUES(1690,'bdcd0662-7818-43ce-9fb3-370203b8fdec','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1691,'bdcd0662-7818-43ce-9fb3-370203b8fdec','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1692,'8be69f08-2e3a-4dba-8380-dc9c3de67413','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1693,'8be69f08-2e3a-4dba-8380-dc9c3de67413','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1694,'472fdf86-866b-4f3a-81a2-d8c3123c8e8f','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1695,'2b3f86c2-d992-4a52-8b94-c7def8cd103c','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1696,'2b3f86c2-d992-4a52-8b94-c7def8cd103c','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1697,'b6872124-d2d0-4b12-bc3e-4aa48c91c7ac','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1698,'b6872124-d2d0-4b12-bc3e-4aa48c91c7ac','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1699,'40b56406-8033-4c26-9131-a7484d87a4e3','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1700,'cadaf7b3-fdcb-4266-9417-1d0aefdb26c1','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1701,'a0e5261a-4532-4896-aedf-68ed04f1a698','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1702,'a0e5261a-4532-4896-aedf-68ed04f1a698','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1703,'50ea95e6-5fb1-4b1a-9f5e-031d933e3426','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1704,'81ef426a-f452-40a8-b2bb-8fc01c18e6f7','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1705,'81ef426a-f452-40a8-b2bb-8fc01c18e6f7','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1706,'d90b41b0-c7ae-4c1c-8556-73dcfb9e43f3','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1707,'d90b41b0-c7ae-4c1c-8556-73dcfb9e43f3','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1708,'d6bd06e1-397f-45cf-aeba-c507ff150397','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1709,'d6bd06e1-397f-45cf-aeba-c507ff150397','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1710,'11487246-05c2-4d8f-a103-e96a86810300','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1711,'11487246-05c2-4d8f-a103-e96a86810300','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1712,'68528a17-2fd2-4535-8961-d8cb73694fa4','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1713,'68528a17-2fd2-4535-8961-d8cb73694fa4','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1714,'a54c2d12-03a4-4a7d-a10c-c983d0fb95b4','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1715,'6225c4c5-cca9-44dd-91c8-debbfad71f3b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1716,'6225c4c5-cca9-44dd-91c8-debbfad71f3b','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1717,'b0d4fbeb-adb7-4c4e-a679-4d58cf462a2f','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1718,'b0d4fbeb-adb7-4c4e-a679-4d58cf462a2f','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1719,'42798bfc-6b27-42bf-87f6-c97310e887b6','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1720,'42798bfc-6b27-42bf-87f6-c97310e887b6','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1721,'ec6360f0-266a-41d5-b9d6-f09f90954a03','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1722,'ec6360f0-266a-41d5-b9d6-f09f90954a03','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1723,'2bdca711-421f-4d91-8940-dccb6777a7cc','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1724,'2bdca711-421f-4d91-8940-dccb6777a7cc','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1725,'8628e1b9-7a59-4048-9d24-d45cf51f0b3a','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1726,'8628e1b9-7a59-4048-9d24-d45cf51f0b3a','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1727,'e3d92cc2-d50d-4de8-b00f-7f72aa6b34dc','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1728,'e3d92cc2-d50d-4de8-b00f-7f72aa6b34dc','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1729,'e3d92cc2-d50d-4de8-b00f-7f72aa6b34dc','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1730,'e3d92cc2-d50d-4de8-b00f-7f72aa6b34dc','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1731,'e3d92cc2-d50d-4de8-b00f-7f72aa6b34dc','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1732,'7c5b8427-0661-416c-8be7-506a1c330259','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1733,'7c5b8427-0661-416c-8be7-506a1c330259','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1734,'72727c14-a170-4ec4-b519-eb5ccab7a36a','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1735,'72727c14-a170-4ec4-b519-eb5ccab7a36a','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1736,'72727c14-a170-4ec4-b519-eb5ccab7a36a','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1737,'cf002015-454a-4608-bbc8-a3e96b029d43','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1738,'cf002015-454a-4608-bbc8-a3e96b029d43','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1739,'cf002015-454a-4608-bbc8-a3e96b029d43','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1740,'4d20f7b5-c2ff-4bbd-9208-56f372a73a10','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1741,'4d20f7b5-c2ff-4bbd-9208-56f372a73a10','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1742,'acb8e9ef-a0e0-43a9-9d46-473b2156c68b','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1743,'acb8e9ef-a0e0-43a9-9d46-473b2156c68b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1744,'22b25fa1-f9b0-49c2-81da-5edb3aee721d','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1745,'9193a3d0-3f6c-4fd5-851c-9cfd271012e8','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1746,'9193a3d0-3f6c-4fd5-851c-9cfd271012e8','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1747,'eae64c9d-2389-420d-b40f-0178c50cf193','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1748,'eae64c9d-2389-420d-b40f-0178c50cf193','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1749,'eae64c9d-2389-420d-b40f-0178c50cf193','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1750,'1568e065-665f-4d95-b118-d6066fa33200','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1751,'1568e065-665f-4d95-b118-d6066fa33200','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1752,'1568e065-665f-4d95-b118-d6066fa33200','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1753,'8ccb0d6f-7351-4aca-9bad-a6fd88f8ebf6','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1754,'8ccb0d6f-7351-4aca-9bad-a6fd88f8ebf6','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1755,'3a9862a7-da3f-46c1-a296-5aacb3ed65eb','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1756,'a8f1955f-b008-4ec5-ad87-d0f8ec82d204','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1757,'a8f1955f-b008-4ec5-ad87-d0f8ec82d204','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1758,'a8f1955f-b008-4ec5-ad87-d0f8ec82d204','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1759,'a8f1955f-b008-4ec5-ad87-d0f8ec82d204','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1760,'13681959-5495-4f85-a94c-c2e878520d8e','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1761,'13681959-5495-4f85-a94c-c2e878520d8e','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1762,'13681959-5495-4f85-a94c-c2e878520d8e','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1763,'6296623d-beac-400d-9aa7-cc56514e73a1','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1764,'6296623d-beac-400d-9aa7-cc56514e73a1','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1765,'6296623d-beac-400d-9aa7-cc56514e73a1','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1766,'6296623d-beac-400d-9aa7-cc56514e73a1','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1767,'6296623d-beac-400d-9aa7-cc56514e73a1','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1768,'6296623d-beac-400d-9aa7-cc56514e73a1','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1769,'6296623d-beac-400d-9aa7-cc56514e73a1','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1770,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1771,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1772,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1773,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1774,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1775,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1776,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1777,'f5cc00bc-ccd5-42b0-95c7-213fc1e2e76f','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1778,'eabdf306-eb0a-4168-a01a-0d6b81f9d288','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1779,'eabdf306-eb0a-4168-a01a-0d6b81f9d288','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1780,'f26558dc-0663-4731-817f-7bb52f9b6bd1','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1781,'5a3b0090-6024-4e2a-b259-d4f3dd9dfe18','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1782,'5a3b0090-6024-4e2a-b259-d4f3dd9dfe18','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1783,'c922e3d5-4378-4948-9ef1-e7ba8979e4bb','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1784,'c922e3d5-4378-4948-9ef1-e7ba8979e4bb','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1785,'d3dc60e7-a5e7-4703-a7a4-43644c7be7b2','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1786,'d3dc60e7-a5e7-4703-a7a4-43644c7be7b2','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1787,'d99273a4-c186-4ed2-893f-c2a21b6a992a','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1788,'d99273a4-c186-4ed2-893f-c2a21b6a992a','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1789,'98dcedda-1511-4482-9519-b709aac81981','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1790,'4ebfd933-cbcf-43d3-b98f-0d66e28820b1','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1791,'4ebfd933-cbcf-43d3-b98f-0d66e28820b1','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1792,'e84c8429-dac2-4bf5-b517-e91e61e15090','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1793,'2c8ed487-54c5-4969-ac80-61dd6609682f','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1794,'de66d675-b417-4ec1-9483-ad5558669458','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1795,'de66d675-b417-4ec1-9483-ad5558669458','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1796,'32a3655a-3c7e-4ed5-a4e3-6216a65804c2','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1797,'32a3655a-3c7e-4ed5-a4e3-6216a65804c2','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1798,'3502ef1d-9c2b-451b-be39-9cbe10bdd999','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1799,'3502ef1d-9c2b-451b-be39-9cbe10bdd999','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1800,'17bce8d5-eac6-45c8-9791-44cc11749f4a','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1801,'17bce8d5-eac6-45c8-9791-44cc11749f4a','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1802,'17bce8d5-eac6-45c8-9791-44cc11749f4a','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1803,'17bce8d5-eac6-45c8-9791-44cc11749f4a','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1804,'c78c1501-dd64-41a0-b9bc-1aa6808eff27','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1805,'739d440d-509f-42ef-b89a-c77f9b84ff03','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1806,'739d440d-509f-42ef-b89a-c77f9b84ff03','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1807,'8776f02f-fb45-439d-bfe4-a943cf589595','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1808,'8776f02f-fb45-439d-bfe4-a943cf589595','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1809,'6d17cac8-0ddd-4402-ad92-5b94eda1fbc3','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1810,'6d17cac8-0ddd-4402-ad92-5b94eda1fbc3','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1811,'a69a637e-9f37-4cda-998d-1a0f2259c4b1','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1812,'85d4d4fc-f87c-4f85-be9b-41e3dbc8978d','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1813,'85d4d4fc-f87c-4f85-be9b-41e3dbc8978d','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1814,'de7b30b6-8ff9-4284-8234-e054b9aec6aa','1e9ba8ac-ff62-4a5e-a06d-915fa568c2d9'); -INSERT INTO vendors_categories VALUES(1815,'de7b30b6-8ff9-4284-8234-e054b9aec6aa','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1816,'45dfbc38-e5a6-4224-a76a-0a891fc75ab6','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1817,'45dfbc38-e5a6-4224-a76a-0a891fc75ab6','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1818,'cae024cd-7957-4054-bb92-e589c7870683','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1819,'cae024cd-7957-4054-bb92-e589c7870683','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1820,'7ebd2fea-89e3-41fe-8a03-374a71d0fb53','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1821,'7ebd2fea-89e3-41fe-8a03-374a71d0fb53','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1822,'ce061bb2-1620-4591-9498-0e8ef370993d','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1823,'81bb869a-0c28-412c-84cf-254be3bb758b','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1824,'81bb869a-0c28-412c-84cf-254be3bb758b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1825,'0d9e3cc7-72db-4881-9438-8efe9172dce8','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1826,'0d9e3cc7-72db-4881-9438-8efe9172dce8','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1827,'a74ee0fb-6fe9-44d7-91b8-1363d3e8a8b8','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1828,'a74ee0fb-6fe9-44d7-91b8-1363d3e8a8b8','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1829,'691b6a86-4509-4757-8068-afd8e430f4ad','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1830,'691b6a86-4509-4757-8068-afd8e430f4ad','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1831,'6dea3b78-dfa8-43ec-936d-87f371375a17','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1832,'6dea3b78-dfa8-43ec-936d-87f371375a17','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1833,'7b1023b0-b3c2-4b82-97b8-44a58d6f235b','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1834,'7b1023b0-b3c2-4b82-97b8-44a58d6f235b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1835,'59078edd-8c33-4528-866e-24e9984ace8d','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1836,'59078edd-8c33-4528-866e-24e9984ace8d','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1837,'eab580a0-3fef-437a-9926-aa4e6dfe604d','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1838,'eab580a0-3fef-437a-9926-aa4e6dfe604d','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1839,'2b6df386-fad2-4355-a117-061714d9d8e3','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1840,'2b6df386-fad2-4355-a117-061714d9d8e3','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1841,'2b6df386-fad2-4355-a117-061714d9d8e3','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1842,'4113c016-cbc9-48f3-90bc-df0ffe69b74b','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1843,'4113c016-cbc9-48f3-90bc-df0ffe69b74b','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1844,'10024645-3dc9-4654-9a45-496c7ffe5d22','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1845,'10024645-3dc9-4654-9a45-496c7ffe5d22','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1846,'ec7d47d3-2bd9-4cea-89e3-87baad13c6d2','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1847,'ec7d47d3-2bd9-4cea-89e3-87baad13c6d2','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1848,'4a01fd03-d4d3-4d77-9aa7-fee232d97aff','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1849,'4a01fd03-d4d3-4d77-9aa7-fee232d97aff','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1850,'6b5d85e1-a608-4e0e-83ac-428a7f29be4f','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1851,'d0fd8de7-af24-4dcb-8a30-96c88ce2a456','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1852,'d0fd8de7-af24-4dcb-8a30-96c88ce2a456','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1853,'9d5eaa23-a790-4592-8370-1646c24eaff1','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1854,'9d5eaa23-a790-4592-8370-1646c24eaff1','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1855,'da550280-f3b3-4b66-b65b-8171fbf68eab','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1856,'8c3ae928-58de-4856-bd3e-bd73dacaafa9','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1857,'8c3ae928-58de-4856-bd3e-bd73dacaafa9','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1858,'5f57bbee-240f-4545-a9a7-d9eeb54f2612','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1859,'5f57bbee-240f-4545-a9a7-d9eeb54f2612','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1860,'ef2b68a4-648d-4b82-99e7-4c28e2355310','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1861,'ef2b68a4-648d-4b82-99e7-4c28e2355310','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1862,'ef2b68a4-648d-4b82-99e7-4c28e2355310','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1863,'ef2b68a4-648d-4b82-99e7-4c28e2355310','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1864,'ef2b68a4-648d-4b82-99e7-4c28e2355310','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1865,'ef2b68a4-648d-4b82-99e7-4c28e2355310','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1866,'ddedbeee-d237-4ab4-a142-0f74f7b6b97b','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1867,'a2bffa33-78b3-457d-850a-7fc771eb454d','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1868,'aecb6818-1437-4320-86fe-6e985dc7486c','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1869,'aecb6818-1437-4320-86fe-6e985dc7486c','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1870,'421e62ae-a336-4733-9e47-e14e561d444a','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1871,'421e62ae-a336-4733-9e47-e14e561d444a','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1872,'fea46d07-fcac-4c74-ad34-8c01ffd52600','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1873,'fea46d07-fcac-4c74-ad34-8c01ffd52600','1e9ba8ac-ff62-4a5e-a06d-915fa568c2d9'); -INSERT INTO vendors_categories VALUES(1874,'fea46d07-fcac-4c74-ad34-8c01ffd52600','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1875,'fea46d07-fcac-4c74-ad34-8c01ffd52600','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1876,'fc60cb9a-5561-4c49-97ab-1165d41b135e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1877,'fc60cb9a-5561-4c49-97ab-1165d41b135e','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1878,'8f178664-0966-4489-90d4-b0d8e18d5ad4','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1879,'75aca8f8-1c54-466d-826d-4576e060d617','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1880,'ec8c73a5-27f0-4732-8b08-68569843841b','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1881,'ec8c73a5-27f0-4732-8b08-68569843841b','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1882,'ec8c73a5-27f0-4732-8b08-68569843841b','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1883,'ec8c73a5-27f0-4732-8b08-68569843841b','3f3065b0-cb2d-4a03-af3c-28028a5aa98c'); -INSERT INTO vendors_categories VALUES(1884,'ec8c73a5-27f0-4732-8b08-68569843841b','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1885,'ec8c73a5-27f0-4732-8b08-68569843841b','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1886,'ec8c73a5-27f0-4732-8b08-68569843841b','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1887,'6422321c-34c7-42e4-8334-59cae78e2b10','79417ef2-7e9f-422c-911a-79e7d596fe39'); -INSERT INTO vendors_categories VALUES(1888,'6422321c-34c7-42e4-8334-59cae78e2b10','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1889,'5ae1a58a-612a-4af9-a25b-25cb0c9ababf','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1890,'5ae1a58a-612a-4af9-a25b-25cb0c9ababf','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1891,'02eb55c1-9846-4903-af75-3d1491e527c4','9733203e-aea8-4de0-922e-61fd6cfddf3f'); -INSERT INTO vendors_categories VALUES(1892,'02eb55c1-9846-4903-af75-3d1491e527c4','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1893,'1c3ac6ad-9ab1-4be0-99c2-661d1741a225','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1894,'1c3ac6ad-9ab1-4be0-99c2-661d1741a225','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1895,'6708b129-7ee6-4a81-b722-bc9ad67a800d','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1896,'6708b129-7ee6-4a81-b722-bc9ad67a800d','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1897,'bf389b3c-2cfe-48aa-9767-b2de7b55e047','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1898,'bf389b3c-2cfe-48aa-9767-b2de7b55e047','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1899,'a6aa0f04-27ff-4ca1-9e22-0b5f8c6077a7','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1900,'a6aa0f04-27ff-4ca1-9e22-0b5f8c6077a7','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1901,'042c858c-6261-4dcd-823a-4d8237470cb0','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1902,'042c858c-6261-4dcd-823a-4d8237470cb0','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1903,'042c858c-6261-4dcd-823a-4d8237470cb0','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1904,'f6249598-7b92-4937-8170-1657bfbd97a6','1d1da41e-4738-42d8-9798-a5f7de4e3ff1'); -INSERT INTO vendors_categories VALUES(1905,'f6249598-7b92-4937-8170-1657bfbd97a6','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1906,'f178b667-e29f-4b2a-bfd4-91e2bbf4035f','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1907,'f178b667-e29f-4b2a-bfd4-91e2bbf4035f','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1908,'7e7b7992-6274-474c-9eee-bff973300fd9','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1909,'8c45ead9-b82e-4f04-8db8-d2d03e71f546','e81b5869-1d2f-4c55-9805-9da3c752a547'); -INSERT INTO vendors_categories VALUES(1910,'8c45ead9-b82e-4f04-8db8-d2d03e71f546','2e2b9760-88b4-4a25-9512-27ea6afe5fe4'); -INSERT INTO vendors_categories VALUES(1911,'36d7af10-a74b-4d8f-8eb3-fe74eff88f46','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1912,'36d7af10-a74b-4d8f-8eb3-fe74eff88f46','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1913,'4a66a75f-440c-4075-864f-9e0fd25ca304','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1914,'4a66a75f-440c-4075-864f-9e0fd25ca304','afbc18f7-8d81-4724-80fb-fc521ebd5ae9'); -INSERT INTO vendors_categories VALUES(1915,'b5e3dc4f-8fd5-4334-ba10-56ce601034ff','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1916,'fd1bbc1a-0234-4388-8ca6-a887bd036ca6','f9165845-11c6-4820-bc62-b95104680dae'); -INSERT INTO vendors_categories VALUES(1917,'fd1bbc1a-0234-4388-8ca6-a887bd036ca6','be959be8-3190-402d-ad45-4a6da0b2e664'); -INSERT INTO vendors_categories VALUES(1918,'ab785b28-a5e9-4b54-a184-a17f78482de9','4387283b-fcc2-4ac8-9d54-63be3e9dde51'); -INSERT INTO vendors_categories VALUES(1919,'e2d75d9c-5164-404a-b98b-205375a1fb7e','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1920,'e2d75d9c-5164-404a-b98b-205375a1fb7e','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -INSERT INTO vendors_categories VALUES(1921,'c8fbef01-de25-4b26-9b0e-c20728454692','f7f8f101-3bd1-4d65-a6c2-9b0233b7a0c4'); -INSERT INTO vendors_categories VALUES(1922,'c8fbef01-de25-4b26-9b0e-c20728454692','8e8e9a1e-039f-4e63-a3a1-83625d265f60'); -CREATE TABLE `globals` (`id` char(36) not null, `site_name` varchar(255) null, `meta_title` varchar(255) null, `meta_description` varchar(255) null, primary key (`id`)); -INSERT INTO globals VALUES('4f8d9e66-ec95-4bdd-a5e7-34df8ea68a45','PCA Pijac','PCA Pijac','Tha bEST pijac evar majkemi!'); +CREATE TABLE `globals` (`id` char(36) not null, `site_name` varchar(255) null, `meta_title` varchar(255) null, `meta_description` varchar(255) null, `copyright` varchar(255) null, primary key (`id`)); +INSERT INTO globals VALUES('4f8d9e66-ec95-4bdd-a5e7-34df8ea68a45','PCA Pijac','PCA Pijac','Tha bEST pijac evar majkemi!','© 2003 PCA Pijac. All Rights Reversed'); +CREATE TABLE IF NOT EXISTS "pages" (`slug` varchar(255) NOT NULL, `status` varchar(255) NOT NULL DEFAULT 'draft', `title` varchar(255) NULL, `content` text NULL, `show_in` json NULL, PRIMARY KEY (`slug`)); +INSERT INTO pages VALUES('about-us','published','About Us','

Lorem ipsum ...

','[]'); +INSERT INTO pages VALUES('privacy-policy','published','Privacy',replace('

Privacy Policy

\n

Last updated: June 14, 2023

\n

This Privacy Policy describes Our policies and procedures on the collection, use and disclosure of Your information when You use the Service and tells You about Your privacy rights and how the law protects You.

\n

We use Your Personal data to provide and improve the Service. By using the Service, You agree to the collection and use of information in accordance with this Privacy Policy. This Privacy Policy has been created with the help of the Free Privacy Policy Generator.

\n

Interpretation and Definitions

\n

Interpretation

\n

The words of which the initial letter is capitalized have meanings defined under the following conditions. The following definitions shall have the same meaning regardless of whether they appear in singular or in plural.

\n

Definitions

\n

For the purposes of this Privacy Policy:

\n\n

Collecting and Using Your Personal Data

\n

Types of Data Collected

\n

Personal Data

\n

While using Our Service, We may ask You to provide Us with certain personally identifiable information that can be used to contact or identify You. Personally identifiable information may include, but is not limited to:

\n\n

Usage Data

\n

Usage Data is collected automatically when using the Service.

\n

Usage Data may include information such as Your Device''s Internet Protocol address (e.g. IP address), browser type, browser version, the pages of our Service that You visit, the time and date of Your visit, the time spent on those pages, unique device identifiers and other diagnostic data.

\n

When You access the Service by or through a mobile device, We may collect certain information automatically, including, but not limited to, the type of mobile device You use, Your mobile device unique ID, the IP address of Your mobile device, Your mobile operating system, the type of mobile Internet browser You use, unique device identifiers and other diagnostic data.

\n

We may also collect information that Your browser sends whenever You visit our Service or when You access the Service by or through a mobile device.

\n

Tracking Technologies and Cookies

\n

We use Cookies and similar tracking technologies to track the activity on Our Service and store certain information. Tracking technologies used are beacons, tags, and scripts to collect and track information and to improve and analyze Our Service. The technologies We use may include:

\n\n

Cookies can be "Persistent" or "Session" Cookies. Persistent Cookies remain on Your personal computer or mobile device when You go offline, while Session Cookies are deleted as soon as You close Your web browser. Learn more about cookies on the Free Privacy Policy website article.

\n

We use both Session and Persistent Cookies for the purposes set out below:

\n\n

For more information about the cookies we use and your choices regarding cookies, please visit our Cookies Policy or the Cookies section of our Privacy Policy.

\n

Use of Your Personal Data

\n

The Company may use Personal Data for the following purposes:

\n\n

We may share Your personal information in the following situations:

\n\n

Retention of Your Personal Data

\n

The Company will retain Your Personal Data only for as long as is necessary for the purposes set out in this Privacy Policy. We will retain and use Your Personal Data to the extent necessary to comply with our legal obligations (for example, if we are required to retain your data to comply with applicable laws), resolve disputes, and enforce our legal agreements and policies.

\n

The Company will also retain Usage Data for internal analysis purposes. Usage Data is generally retained for a shorter period of time, except when this data is used to strengthen the security or to improve the functionality of Our Service, or We are legally obligated to retain this data for longer time periods.

\n

Transfer of Your Personal Data

\n

Your information, including Personal Data, is processed at the Company''s operating offices and in any other places where the parties involved in the processing are located. It means that this information may be transferred to — and maintained on — computers located outside of Your state, province, country or other governmental jurisdiction where the data protection laws may differ than those from Your jurisdiction.

\n

Your consent to this Privacy Policy followed by Your submission of such information represents Your agreement to that transfer.

\n

The Company will take all steps reasonably necessary to ensure that Your data is treated securely and in accordance with this Privacy Policy and no transfer of Your Personal Data will take place to an organization or a country unless there are adequate controls in place including the security of Your data and other personal information.

\n

Delete Your Personal Data

\n

You have the right to delete or request that We assist in deleting the Personal Data that We have collected about You.

\n

Our Service may give You the ability to delete certain information about You from within the Service.

\n

You may update, amend, or delete Your information at any time by signing in to Your Account, if you have one, and visiting the account settings section that allows you to manage Your personal information. You may also contact Us to request access to, correct, or delete any personal information that You have provided to Us.

\n

Please note, however, that We may need to retain certain information when we have a legal obligation or lawful basis to do so.

\n

Disclosure of Your Personal Data

\n

Business Transactions

\n

If the Company is involved in a merger, acquisition or asset sale, Your Personal Data may be transferred. We will provide notice before Your Personal Data is transferred and becomes subject to a different Privacy Policy.

\n

Law enforcement

\n

Under certain circumstances, the Company may be required to disclose Your Personal Data if required to do so by law or in response to valid requests by public authorities (e.g. a court or a government agency).

\n

Other legal requirements

\n

The Company may disclose Your Personal Data in the good faith belief that such action is necessary to:

\n\n

Security of Your Personal Data

\n

The security of Your Personal Data is important to Us, but remember that no method of transmission over the Internet, or method of electronic storage is 100% secure. While We strive to use commercially acceptable means to protect Your Personal Data, We cannot guarantee its absolute security.

\n

Children''s Privacy

\n

Our Service does not address anyone under the age of 13. We do not knowingly collect personally identifiable information from anyone under the age of 13. If You are a parent or guardian and You are aware that Your child has provided Us with Personal Data, please contact Us. If We become aware that We have collected Personal Data from anyone under the age of 13 without verification of parental consent, We take steps to remove that information from Our servers.

\n

If We need to rely on consent as a legal basis for processing Your information and Your country requires consent from a parent, We may require Your parent''s consent before We collect and use that information.

\n

Links to Other Websites

\n

Our Service may contain links to other websites that are not operated by Us. If You click on a third party link, You will be directed to that third party''s site. We strongly advise You to review the Privacy Policy of every site You visit.

\n

We have no control over and assume no responsibility for the content, privacy policies or practices of any third party sites or services.

\n

Changes to this Privacy Policy

\n

We may update Our Privacy Policy from time to time. We will notify You of any changes by posting the new Privacy Policy on this page.

\n

We will let You know via email and/or a prominent notice on Our Service, prior to the change becoming effective and update the "Last updated" date at the top of this Privacy Policy.

\n

You are advised to review this Privacy Policy periodically for any changes. Changes to this Privacy Policy are effective when they are posted on this page.

\n

Contact Us

\n

If you have any questions about this Privacy Policy, You can contact us:

\n','\n',char(10)),'["FOOTER"]'); +CREATE TABLE `menus` (`id` varchar(255) not null, primary key (`id`)); +INSERT INTO menus VALUES('MAIN_MENU'); +INSERT INTO menus VALUES('FOOTER_MENU'); +CREATE TABLE `menu_items` (`id` char(36) not null, `sort` integer null, `url` varchar(255) null, `label` varchar(255) null, primary key (`id`)); +INSERT INTO menu_items VALUES('35ce29b2-bf57-49ec-9f44-4d978f9cb832',NULL,'/','Home'); +INSERT INTO menu_items VALUES('95634276-8332-49c7-a794-4f1d92400a1b',NULL,'/vendors','Vendors'); +INSERT INTO menu_items VALUES('ec47e07a-6442-4e94-bbc4-d6432634f5c3',NULL,'/about-us','About Us'); +INSERT INTO menu_items VALUES('bd58efd2-caa9-42d9-b967-ca1a951e630b',NULL,'/privacy-policy','Privacy Policy'); +CREATE TABLE IF NOT EXISTS "menus_menu_items" (`id` integer PRIMARY KEY AUTOINCREMENT NOT NULL, `menus_id` varchar(255) NULL, `menu_items_id` char(36) NULL, `sort` integer NULL, CONSTRAINT `menus_menu_items_menu_items_id_foreign` FOREIGN KEY (`menu_items_id`) REFERENCES `menu_items` (`id`) ON DELETE SET NULL, CONSTRAINT `menus_menu_items_menus_id_foreign` FOREIGN KEY (`menus_id`) REFERENCES `menus` (`id`) ON DELETE SET NULL); +INSERT INTO menus_menu_items VALUES(1,'MAIN_MENU','35ce29b2-bf57-49ec-9f44-4d978f9cb832',NULL); +INSERT INTO menus_menu_items VALUES(2,'MAIN_MENU','95634276-8332-49c7-a794-4f1d92400a1b',NULL); +INSERT INTO menus_menu_items VALUES(3,'MAIN_MENU','ec47e07a-6442-4e94-bbc4-d6432634f5c3',1); +INSERT INTO menus_menu_items VALUES(4,'FOOTER_MENU','35ce29b2-bf57-49ec-9f44-4d978f9cb832',1); +INSERT INTO menus_menu_items VALUES(5,'FOOTER_MENU','95634276-8332-49c7-a794-4f1d92400a1b',2); +INSERT INTO menus_menu_items VALUES(6,'FOOTER_MENU','bd58efd2-caa9-42d9-b967-ca1a951e630b',3); DELETE FROM sqlite_sequence; -INSERT INTO sqlite_sequence VALUES('directus_relations',9); -INSERT INTO sqlite_sequence VALUES('directus_revisions',60847); -INSERT INTO sqlite_sequence VALUES('directus_permissions',33); +INSERT INTO sqlite_sequence VALUES('directus_relations',11); +INSERT INTO sqlite_sequence VALUES('directus_revisions',64052); +INSERT INTO sqlite_sequence VALUES('directus_permissions',39); INSERT INTO sqlite_sequence VALUES('directus_webhooks',0); -INSERT INTO sqlite_sequence VALUES('directus_fields',48); -INSERT INTO sqlite_sequence VALUES('directus_activity',61108); +INSERT INTO sqlite_sequence VALUES('directus_fields',61); +INSERT INTO sqlite_sequence VALUES('directus_activity',64341); INSERT INTO sqlite_sequence VALUES('directus_notifications',0); -INSERT INTO sqlite_sequence VALUES('directus_presets',7); +INSERT INTO sqlite_sequence VALUES('directus_presets',8); INSERT INTO sqlite_sequence VALUES('directus_settings',1); -INSERT INTO sqlite_sequence VALUES('vendors_categories',1922); +INSERT INTO sqlite_sequence VALUES('vendors_categories',5793); +INSERT INTO sqlite_sequence VALUES('menus_menu_items',6); CREATE UNIQUE INDEX `directus_users_external_identifier_unique` on `directus_users` (`external_identifier`); CREATE UNIQUE INDEX `directus_users_email_unique` on `directus_users` (`email`); CREATE UNIQUE INDEX `directus_users_token_unique` on `directus_users` (`token`);