-- MySQL dump 10.16  Distrib 10.1.48-MariaDB, for debian-linux-gnu (x86_64)
--
-- Host: localhost    Database: ingivinueva
-- ------------------------------------------------------
-- Server version	10.1.48-MariaDB-0+deb9u1

/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;

--
-- Table structure for table `ingi_commentmeta`
--

DROP TABLE IF EXISTS `ingi_commentmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_commentmeta`
--

LOCK TABLES `ingi_commentmeta` WRITE;
/*!40000 ALTER TABLE `ingi_commentmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_commentmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_comments`
--

DROP TABLE IF EXISTS `ingi_comments`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_comments` (
  `comment_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_post_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `comment_author` tinytext COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_author_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_url` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_author_IP` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `comment_content` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `comment_karma` int(11) NOT NULL DEFAULT '0',
  `comment_approved` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '1',
  `comment_agent` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'comment',
  `comment_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`comment_ID`),
  KEY `comment_post_ID` (`comment_post_ID`),
  KEY `comment_approved_date_gmt` (`comment_approved`,`comment_date_gmt`),
  KEY `comment_date_gmt` (`comment_date_gmt`),
  KEY `comment_parent` (`comment_parent`),
  KEY `comment_author_email` (`comment_author_email`(10))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_comments`
--

LOCK TABLES `ingi_comments` WRITE;
/*!40000 ALTER TABLE `ingi_comments` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_comments` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_cwssvgi`
--

DROP TABLE IF EXISTS `ingi_cwssvgi`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_cwssvgi` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `atts` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `name` (`name`(128))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_cwssvgi`
--

LOCK TABLES `ingi_cwssvgi` WRITE;
/*!40000 ALTER TABLE `ingi_cwssvgi` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_cwssvgi` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_links`
--

DROP TABLE IF EXISTS `ingi_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_links` (
  `link_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `link_url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_target` varchar(25) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_description` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_visible` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Y',
  `link_owner` bigint(20) unsigned NOT NULL DEFAULT '1',
  `link_rating` int(11) NOT NULL DEFAULT '0',
  `link_updated` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `link_rel` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `link_notes` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `link_rss` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`link_id`),
  KEY `link_visible` (`link_visible`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_links`
--

LOCK TABLES `ingi_links` WRITE;
/*!40000 ALTER TABLE `ingi_links` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_options`
--

DROP TABLE IF EXISTS `ingi_options`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `option_value` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `autoload` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`),
  KEY `autoload` (`autoload`)
) ENGINE=InnoDB AUTO_INCREMENT=10782 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_options`
--

LOCK TABLES `ingi_options` WRITE;
/*!40000 ALTER TABLE `ingi_options` DISABLE KEYS */;
INSERT INTO `ingi_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES (1,'siteurl','https://www.ingivision.com/','yes'),(2,'home','https://www.ingivision.com/','yes'),(3,'blogname','Ingivision','yes'),(4,'blogdescription','Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.','yes'),(5,'users_can_register','0','yes'),(6,'admin_email','info@admirae.es','yes'),(7,'start_of_week','1','yes'),(8,'use_balanceTags','0','yes'),(9,'use_smilies','1','yes'),(10,'require_name_email','1','yes'),(11,'comments_notify','1','yes'),(12,'posts_per_rss','10','yes'),(13,'rss_use_excerpt','0','yes'),(14,'mailserver_url','mail.example.com','yes'),(15,'mailserver_login','login@example.com','yes'),(16,'mailserver_pass','password','yes'),(17,'mailserver_port','110','yes'),(18,'default_category','1','yes'),(19,'default_comment_status','open','yes'),(20,'default_ping_status','open','yes'),(21,'default_pingback_flag','1','yes'),(22,'posts_per_page','10','yes'),(23,'date_format','j \\d\\e F \\d\\e Y','yes'),(24,'time_format','H:i','yes'),(25,'links_updated_date_format','j \\d\\e F \\d\\e Y H:i','yes'),(26,'comment_moderation','0','yes'),(27,'moderation_notify','1','yes'),(28,'permalink_structure','/%year%/%monthnum%/%day%/%postname%/','yes'),(30,'hack_file','0','yes'),(31,'blog_charset','UTF-8','yes'),(32,'moderation_keys','','no'),(33,'active_plugins','a:11:{i:0;s:30:\"advanced-custom-fields/acf.php\";i:1;s:19:\"akismet/akismet.php\";i:2;s:27:\"autoptimize/autoptimize.php\";i:3;s:23:\"block-lab/block-lab.php\";i:4;s:28:\"cms-tree-page-view/index.php\";i:5;s:36:\"contact-form-7/wp-contact-form-7.php\";i:6;s:33:\"duplicate-post/duplicate-post.php\";i:7;s:21:\"flamingo/flamingo.php\";i:8;s:16:\"gotmls/index.php\";i:9;s:27:\"redirection/redirection.php\";i:10;s:24:\"wordpress-seo/wp-seo.php\";}','yes'),(34,'category_base','','yes'),(35,'ping_sites','http://rpc.pingomatic.com/','yes'),(36,'comment_max_links','2','yes'),(37,'gmt_offset','0','yes'),(38,'default_email_category','1','yes'),(39,'recently_edited','','no'),(40,'template','ingivi','yes'),(41,'stylesheet','ingivi','yes'),(44,'comment_registration','0','yes'),(45,'html_type','text/html','yes'),(46,'use_trackback','0','yes'),(47,'default_role','subscriber','yes'),(48,'db_version','49752','yes'),(49,'uploads_use_yearmonth_folders','1','yes'),(50,'upload_path','','yes'),(51,'blog_public','1','yes'),(52,'default_link_category','2','yes'),(53,'show_on_front','page','yes'),(54,'tag_base','','yes'),(55,'show_avatars','1','yes'),(56,'avatar_rating','G','yes'),(57,'upload_url_path','','yes'),(58,'thumbnail_size_w','150','yes'),(59,'thumbnail_size_h','150','yes'),(60,'thumbnail_crop','1','yes'),(61,'medium_size_w','300','yes'),(62,'medium_size_h','300','yes'),(63,'avatar_default','mystery','yes'),(64,'large_size_w','1024','yes'),(65,'large_size_h','1024','yes'),(66,'image_default_link_type','none','yes'),(67,'image_default_size','','yes'),(68,'image_default_align','','yes'),(69,'close_comments_for_old_posts','0','yes'),(70,'close_comments_days_old','14','yes'),(71,'thread_comments','1','yes'),(72,'thread_comments_depth','5','yes'),(73,'page_comments','0','yes'),(74,'comments_per_page','50','yes'),(75,'default_comments_page','newest','yes'),(76,'comment_order','asc','yes'),(77,'sticky_posts','a:0:{}','yes'),(78,'widget_categories','a:3:{i:2;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}i:3;a:4:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:12:\"hierarchical\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(79,'widget_text','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(80,'widget_rss','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(81,'uninstall_plugins','a:5:{s:28:\"cms-tree-page-view/index.php\";s:17:\"cms_tpv_uninstall\";s:27:\"redirection/redirection.php\";a:2:{i:0;s:17:\"Redirection_Admin\";i:1;s:16:\"plugin_uninstall\";}s:27:\"autoptimize/autoptimize.php\";s:29:\"autoptimizeMain::on_uninstall\";s:44:\"shortpixel-image-optimiser/wp-shortpixel.php\";a:2:{i:0;s:28:\"\\ShortPixel\\ShortPixelPlugin\";i:1;s:15:\"uninstallPlugin\";}s:29:\"webp-express/webp-express.php\";a:2:{i:0;s:28:\"\\WebPExpress\\PluginUninstall\";i:1;s:9:\"uninstall\";}}','no'),(82,'timezone_string','','yes'),(83,'page_for_posts','0','yes'),(84,'page_on_front','6','yes'),(85,'default_post_format','0','yes'),(86,'link_manager_enabled','0','yes'),(87,'finished_splitting_shared_terms','1','yes'),(88,'site_icon','0','yes'),(89,'medium_large_size_w','768','yes'),(90,'medium_large_size_h','0','yes'),(91,'wp_page_for_privacy_policy','3','yes'),(92,'show_comments_cookies_opt_in','1','yes'),(93,'admin_email_lifespan','1623787588','yes'),(94,'initial_db_version','47018','yes'),(95,'ingi_user_roles','a:7:{s:13:\"administrator\";a:2:{s:4:\"name\";s:13:\"Administrator\";s:12:\"capabilities\";a:71:{s:13:\"switch_themes\";b:1;s:11:\"edit_themes\";b:1;s:16:\"activate_plugins\";b:1;s:12:\"edit_plugins\";b:1;s:10:\"edit_users\";b:1;s:10:\"edit_files\";b:1;s:14:\"manage_options\";b:1;s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:6:\"import\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:8:\"level_10\";b:1;s:7:\"level_9\";b:1;s:7:\"level_8\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:12:\"delete_users\";b:1;s:12:\"create_users\";b:1;s:17:\"unfiltered_upload\";b:1;s:14:\"edit_dashboard\";b:1;s:14:\"update_plugins\";b:1;s:14:\"delete_plugins\";b:1;s:15:\"install_plugins\";b:1;s:13:\"update_themes\";b:1;s:14:\"install_themes\";b:1;s:11:\"update_core\";b:1;s:10:\"list_users\";b:1;s:12:\"remove_users\";b:1;s:13:\"promote_users\";b:1;s:18:\"edit_theme_options\";b:1;s:13:\"delete_themes\";b:1;s:6:\"export\";b:1;s:20:\"wpseo_manage_options\";b:1;s:10:\"copy_posts\";b:1;s:20:\"block_lab_edit_block\";b:1;s:21:\"block_lab_edit_blocks\";b:1;s:28:\"block_lab_edit_others_blocks\";b:1;s:24:\"block_lab_publish_blocks\";b:1;s:20:\"block_lab_read_block\";b:1;s:29:\"block_lab_read_private_blocks\";b:1;s:22:\"block_lab_delete_block\";b:1;s:23:\"move_cms_tree_view_page\";b:1;}}s:6:\"editor\";a:2:{s:4:\"name\";s:6:\"Editor\";s:12:\"capabilities\";a:37:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:10:\"copy_posts\";b:1;s:23:\"move_cms_tree_view_page\";b:1;}}s:6:\"author\";a:2:{s:4:\"name\";s:6:\"Author\";s:12:\"capabilities\";a:10:{s:12:\"upload_files\";b:1;s:10:\"edit_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;s:22:\"delete_published_posts\";b:1;}}s:11:\"contributor\";a:2:{s:4:\"name\";s:11:\"Contributor\";s:12:\"capabilities\";a:5:{s:10:\"edit_posts\";b:1;s:4:\"read\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:12:\"delete_posts\";b:1;}}s:10:\"subscriber\";a:2:{s:4:\"name\";s:10:\"Subscriber\";s:12:\"capabilities\";a:2:{s:4:\"read\";b:1;s:7:\"level_0\";b:1;}}s:13:\"wpseo_manager\";a:2:{s:4:\"name\";s:11:\"SEO Manager\";s:12:\"capabilities\";a:38:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;s:20:\"wpseo_manage_options\";b:1;s:23:\"view_site_health_checks\";b:1;}}s:12:\"wpseo_editor\";a:2:{s:4:\"name\";s:10:\"SEO Editor\";s:12:\"capabilities\";a:36:{s:17:\"moderate_comments\";b:1;s:17:\"manage_categories\";b:1;s:12:\"manage_links\";b:1;s:12:\"upload_files\";b:1;s:15:\"unfiltered_html\";b:1;s:10:\"edit_posts\";b:1;s:17:\"edit_others_posts\";b:1;s:20:\"edit_published_posts\";b:1;s:13:\"publish_posts\";b:1;s:10:\"edit_pages\";b:1;s:4:\"read\";b:1;s:7:\"level_7\";b:1;s:7:\"level_6\";b:1;s:7:\"level_5\";b:1;s:7:\"level_4\";b:1;s:7:\"level_3\";b:1;s:7:\"level_2\";b:1;s:7:\"level_1\";b:1;s:7:\"level_0\";b:1;s:17:\"edit_others_pages\";b:1;s:20:\"edit_published_pages\";b:1;s:13:\"publish_pages\";b:1;s:12:\"delete_pages\";b:1;s:19:\"delete_others_pages\";b:1;s:22:\"delete_published_pages\";b:1;s:12:\"delete_posts\";b:1;s:19:\"delete_others_posts\";b:1;s:22:\"delete_published_posts\";b:1;s:20:\"delete_private_posts\";b:1;s:18:\"edit_private_posts\";b:1;s:18:\"read_private_posts\";b:1;s:20:\"delete_private_pages\";b:1;s:18:\"edit_private_pages\";b:1;s:18:\"read_private_pages\";b:1;s:15:\"wpseo_bulk_edit\";b:1;s:28:\"wpseo_edit_advanced_metadata\";b:1;}}}','yes'),(96,'widget_search','a:3:{i:2;a:1:{s:5:\"title\";s:0:\"\";}i:3;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(97,'widget_recent-posts','a:3:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}i:3;a:3:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;s:9:\"show_date\";b:0;}s:12:\"_multiwidget\";i:1;}','yes'),(98,'widget_recent-comments','a:2:{i:2;a:2:{s:5:\"title\";s:0:\"\";s:6:\"number\";i:5;}s:12:\"_multiwidget\";i:1;}','yes'),(99,'widget_archives','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"dropdown\";i:0;}s:12:\"_multiwidget\";i:1;}','yes'),(100,'widget_meta','a:2:{i:2;a:1:{s:5:\"title\";s:0:\"\";}s:12:\"_multiwidget\";i:1;}','yes'),(101,'sidebars_widgets','a:3:{s:19:\"wp_inactive_widgets\";a:6:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";i:3;s:10:\"archives-2\";i:4;s:12:\"categories-2\";i:5;s:6:\"meta-2\";}s:12:\"sidebar-blog\";a:4:{i:0;s:8:\"search-3\";i:1;s:14:\"recent-posts-3\";i:2;s:11:\"tag_cloud-2\";i:3;s:12:\"categories-3\";}s:13:\"array_version\";i:3;}','yes'),(102,'cron','a:14:{i:1616763672;a:1:{s:34:\"wp_privacy_delete_old_export_files\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"hourly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:3600;}}}i:1616770615;a:1:{s:15:\"ao_cachechecker\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1616773300;a:1:{s:19:\"wpseo-reindex-links\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1616774471;a:1:{s:32:\"recovery_mode_clean_expired_keys\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1616774472;a:3:{s:16:\"wp_version_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:17:\"wp_update_plugins\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}s:16:\"wp_update_themes\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1616774580;a:2:{s:19:\"wp_scheduled_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:25:\"delete_expired_transients\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1616775461;a:1:{s:18:\"wp_https_detection\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:10:\"twicedaily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:43200;}}}i:1616781181;a:1:{s:22:\"redirection_log_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1616781282;a:1:{s:23:\"flamingo_daily_cron_job\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1616843819;a:1:{s:30:\"wp_scheduled_auto_draft_delete\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1616846806;a:3:{s:13:\"wpseo-reindex\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:31:\"wpseo_permalink_structure_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}s:20:\"wpseo_home_url_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:5:\"daily\";s:4:\"args\";a:0:{}s:8:\"interval\";i:86400;}}}i:1616860871;a:1:{s:30:\"wp_site_health_scheduled_check\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}i:1617205298;a:1:{s:16:\"wpseo_ryte_fetch\";a:1:{s:32:\"40cd750bba9870f18aada2478b24840a\";a:3:{s:8:\"schedule\";s:6:\"weekly\";s:4:\"args\";a:0:{}s:8:\"interval\";i:604800;}}}s:7:\"version\";i:2;}','yes'),(103,'widget_pages','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(104,'widget_calendar','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(105,'widget_media_audio','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(106,'widget_media_image','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(107,'widget_media_gallery','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(108,'widget_media_video','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(109,'widget_tag_cloud','a:2:{i:2;a:3:{s:5:\"title\";s:0:\"\";s:5:\"count\";i:0;s:8:\"taxonomy\";s:8:\"post_tag\";}s:12:\"_multiwidget\";i:1;}','yes'),(110,'widget_nav_menu','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(111,'widget_custom_html','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(113,'theme_mods_twentytwenty','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(114,'current_theme','Ingivision','yes'),(115,'recovery_keys','a:0:{}','yes'),(125,'recently_activated','a:1:{s:17:\"wpscan/wpscan.php\";i:1614011616;}','yes'),(126,'theme_mods_twentyseventeen','a:2:{s:18:\"custom_css_post_id\";i:-1;s:16:\"sidebars_widgets\";a:2:{s:4:\"time\";i:1591808002;s:4:\"data\";a:3:{s:19:\"wp_inactive_widgets\";a:0:{}s:9:\"sidebar-1\";a:3:{i:0;s:8:\"search-2\";i:1;s:14:\"recent-posts-2\";i:2;s:17:\"recent-comments-2\";}s:9:\"sidebar-2\";a:3:{i:0;s:10:\"archives-2\";i:1;s:12:\"categories-2\";i:2;s:6:\"meta-2\";}}}}','yes'),(144,'_transient_health-check-site-status-result','{\"good\":16,\"recommended\":3,\"critical\":1}','yes'),(185,'grade_config','a:126:{s:9:\"devider-1\";s:0:\"\";s:6:\"layout\";s:1:\"2\";s:21:\"boxed_layout_activate\";i:0;s:22:\"boxed_layout_stretched\";i:0;s:35:\"boxed_layout_boxed_background_image\";a:1:{s:3:\"url\";s:0:\"\";}s:35:\"boxed_layout_boxed_background_color\";s:7:\"#ffffff\";s:11:\"dt-404-page\";s:0:\"\";s:18:\"dt-show-title-page\";i:1;s:10:\"post-title\";i:1;s:9:\"devider-2\";s:0:\"\";s:11:\"page_loader\";i:0;s:22:\"page_loader_background\";s:7:\"#000000\";s:18:\"page_loader_ball_1\";s:7:\"#cb2025\";s:18:\"page_loader_ball_2\";s:7:\"#f8b334\";s:18:\"page_loader_ball_3\";s:7:\"#00a096\";s:18:\"page_loader_ball_4\";s:7:\"#97bf0d\";s:9:\"devider-3\";s:0:\"\";s:22:\"dt_scrollingsidebar_on\";i:0;s:27:\"dt_scrollingsidebar_bg_type\";i:1;s:28:\"dt_scrollingsidebar_bg_color\";s:7:\"#ecf0f1\";s:28:\"dt_scrollingsidebar_position\";s:5:\"right\";s:30:\"dt_scrollingsidebar_top_margin\";i:200;s:26:\"dt_scrollingsidebar_margin\";i:0;s:9:\"devider-5\";s:0:\"\";s:7:\"meta-og\";i:1;s:10:\"devider-10\";s:0:\"\";s:9:\"blog_type\";s:7:\"default\";s:14:\"masonry_column\";i:3;s:21:\"masonry_column_tablet\";i:2;s:21:\"masonry_column_mobile\";i:1;s:10:\"devider-11\";s:0:\"\";s:11:\"show-author\";i:1;s:9:\"devider-4\";s:0:\"\";s:17:\"comment-open-post\";i:1;s:17:\"comment-open-page\";i:1;s:13:\"primary-color\";s:7:\"#fec56b\";s:15:\"secondary-color\";s:7:\"#77bfc2\";s:14:\"headings-color\";s:7:\"#202020\";s:15:\"body_text_color\";s:7:\"#696969\";s:21:\"body_background_color\";s:7:\"#ffffff\";s:21:\"body_background_image\";a:1:{s:3:\"url\";s:0:\"\";}s:21:\"body_background_style\";s:0:\"\";s:12:\"primary-font\";a:1:{s:11:\"font-family\";s:15:\"Source Sans Pro\";}s:14:\"secondary-font\";a:2:{s:11:\"font-family\";s:6:\"Oxygen\";s:6:\"google\";b:1;}s:12:\"section-font\";a:2:{s:11:\"font-family\";s:6:\"Oxygen\";s:6:\"google\";b:1;}s:13:\"tertiary-font\";a:1:{s:11:\"font-family\";s:16:\"Playfair Display\";}s:13:\"heading-style\";s:4:\"none\";s:10:\"showtopbar\";i:1;s:23:\"topbar-background-color\";s:7:\"#ffffff\";s:17:\"topbar-font-color\";s:7:\"#222222\";s:13:\"topbar-height\";s:2:\"96\";s:9:\"devider-6\";s:0:\"\";s:15:\"dt-left-top-bar\";s:4:\"text\";s:20:\"dt-left-top-bar-menu\";s:0:\"\";s:20:\"dt-left-top-bar-text\";s:0:\"\";s:9:\"devider-7\";s:0:\"\";s:16:\"dt-right-top-bar\";s:4:\"text\";s:21:\"dt-right-top-bar-menu\";s:0:\"\";s:21:\"dt-right-top-bar-text\";s:0:\"\";s:14:\"dt-show-header\";i:1;s:9:\"devider-8\";s:0:\"\";s:14:\"dt-header-type\";s:6:\"leftvc\";s:16:\"menu_icon_fields\";s:0:\"\";s:20:\"leftvc-buttons-color\";s:7:\"#fec56b\";s:25:\"leftvc-buttons-text-color\";s:7:\"#ffffff\";s:31:\"leftvc-buttons-background-color\";a:2:{s:5:\"color\";s:7:\"#1b3f4f\";s:5:\"alpha\";i:1;}s:30:\"leftvc-buttons-separator-color\";a:2:{s:5:\"color\";s:7:\"#ffffff\";s:5:\"alpha\";d:0.10000000000000001;}s:28:\"leftvc-logo-background-color\";a:2:{s:5:\"color\";s:7:\"#2a6a7a\";s:5:\"alpha\";i:1;}s:34:\"leftvc-navigation-background-color\";a:2:{s:5:\"color\";s:7:\"#1b3f4f\";s:5:\"alpha\";i:1;}s:14:\"dt-sticky-menu\";i:0;s:20:\"dt-is-stretched-menu\";i:0;s:22:\"show-header-searchmenu\";i:1;s:24:\"show-header-shoppingcart\";i:1;s:10:\"socialmenu\";s:0:\"\";s:16:\"showpostmenupage\";i:1;s:12:\"postmenupage\";s:0:\"\";s:13:\"dt-logo-image\";s:0:\"\";s:25:\"dt-logo-image-transparent\";s:0:\"\";s:21:\"dt-logo-image-overlay\";s:0:\"\";s:12:\"dt-logo-text\";s:5:\"grade\";s:13:\"dt-logo-width\";s:3:\"240\";s:14:\"dt-logo-margin\";s:3:\"-20\";s:18:\"dt-logo-leftmargin\";s:1:\"0\";s:19:\"dt-logo-top-padding\";i:100;s:25:\"dt-logo-top-margin-reveal\";i:0;s:14:\"dt-menu-height\";i:5;s:13:\"dt-menu-image\";s:0:\"\";s:18:\"dt-menu-image-size\";s:7:\"default\";s:24:\"dt-menu-image-horizontal\";s:2:\"50\";s:22:\"dt-menu-image-vertical\";s:3:\"100\";s:12:\"header-color\";a:2:{s:5:\"color\";s:7:\"#1b3f4f\";s:5:\"alpha\";i:0;}s:17:\"header-font-color\";s:7:\"#ffffff\";s:19:\"header-color-sticky\";a:2:{s:5:\"color\";s:7:\"#1b3f4f\";s:5:\"alpha\";i:1;}s:24:\"header-font-color-sticky\";s:7:\"#ffffff\";s:9:\"devider-9\";s:0:\"\";s:22:\"homepage-dt-logo-image\";s:0:\"\";s:21:\"homepage-header-color\";a:2:{s:5:\"color\";s:7:\"#1b3f4f\";s:5:\"alpha\";i:0;}s:26:\"homepage-header-font-color\";s:7:\"#ffffff\";s:34:\"homepage-dt-logo-image-transparent\";s:0:\"\";s:28:\"homepage-header-color-sticky\";a:2:{s:5:\"color\";s:7:\"#1b3f4f\";s:5:\"alpha\";i:1;}s:33:\"homepage-header-font-color-sticky\";s:7:\"#ffffff\";s:16:\"show-banner-area\";i:0;s:19:\"dt-show-banner-page\";s:5:\"color\";s:15:\"dt-banner-image\";a:1:{s:3:\"url\";s:82:\"https://ingivision.admirae.es/wp-content/themes/grade/images/header_subpage_bg.jpg\";}s:15:\"dt-banner-video\";s:0:\"\";s:12:\"banner-color\";s:7:\"#ededed\";s:16:\"dt-banner-height\";s:5:\"400px\";s:20:\"show-banner-homepage\";i:0;s:19:\"dt-title-top-margin\";s:5:\"270px\";s:11:\"title-color\";s:7:\"#000000\";s:14:\"showfooterarea\";i:1;s:11:\"footer-text\";s:57:\"&copy; 2016 grade, The Awesome Theme. All right reserved.\";s:18:\"dt-footer-position\";s:4:\"left\";s:16:\"showfooterwidget\";i:0;s:23:\"dt-footer-widget-column\";i:3;s:12:\"footer-color\";s:7:\"#1b3f4f\";s:17:\"footer-font-color\";s:7:\"#ffffff\";s:14:\"showfooterpage\";i:1;s:10:\"footerpage\";s:0:\"\";s:14:\"postfooterpage\";s:0:\"\";s:12:\"sandbox-mode\";i:0;s:8:\"css-code\";s:21:\"body{\nheight: 100%;\n}\";s:7:\"js-code\";s:39:\"jQuery(document).ready(function(){\n\n});\";s:15:\"detheme_license\";b:0;s:12:\"raw_new_info\";s:0:\"\";s:16:\"REDUX_last_saved\";i:1591787982;}','yes'),(186,'_site_transient_detheme_update_themes','O:8:\"stdClass\":1:{s:12:\"last_checked\";i:1594897536;}','no'),(187,'_site_transient_detheme_icon_types','O:8:\"stdClass\":2:{s:5:\"types\";a:3:{s:13:\"flaticon-ship\";a:5:{s:3:\"css\";s:12:\"flaticon.css\";s:4:\"path\";s:97:\"/var/www/vhosts/admirae.es/ingivision.admirae.es/wp-content/themes/grade/iconfonts/flaticon-ship/\";s:4:\"name\";s:13:\"flaticon-ship\";s:5:\"title\";s:13:\"Flaticon Ship\";s:3:\"uri\";s:78:\"https://ingivision.admirae.es/wp-content/themes/grade/iconfonts/flaticon-ship/\";}s:6:\"social\";a:5:{s:3:\"css\";s:12:\"flaticon.css\";s:4:\"path\";s:90:\"/var/www/vhosts/admirae.es/ingivision.admirae.es/wp-content/themes/grade/iconfonts/social/\";s:4:\"name\";s:6:\"social\";s:5:\"title\";s:6:\"Social\";s:3:\"uri\";s:71:\"https://ingivision.admirae.es/wp-content/themes/grade/iconfonts/social/\";}s:10:\"list-style\";a:5:{s:3:\"css\";s:12:\"fontello.css\";s:4:\"path\";s:94:\"/var/www/vhosts/admirae.es/ingivision.admirae.es/wp-content/themes/grade/iconfonts/list-style/\";s:4:\"name\";s:10:\"list-style\";s:5:\"title\";s:10:\"List Style\";s:3:\"uri\";s:75:\"https://ingivision.admirae.es/wp-content/themes/grade/iconfonts/list-style/\";}}s:12:\"last_checked\";i:1591787983;}','no'),(188,'widget_dt_accordion','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(189,'widget_dt-tabs','a:2:{i:1;a:0:{}s:12:\"_multiwidget\";i:1;}','yes'),(192,'theme_mods_grade','a:1:{s:18:\"custom_css_post_id\";i:-1;}','yes'),(201,'theme_mods_ingivi','a:3:{i:0;b:0;s:18:\"nav_menu_locations\";a:3:{s:11:\"header_menu\";i:2;s:15:\"header_menu_eng\";i:12;s:14:\"header_menu_pt\";i:0;}s:18:\"custom_css_post_id\";i:-1;}','yes'),(202,'theme_switched','','yes'),(289,'WPLANG','es_ES','yes'),(290,'new_admin_email','info@admirae.es','yes'),(293,'fresh_site','0','yes'),(309,'nav_menu_options','a:2:{i:0;b:0;s:8:\"auto_add\";a:0:{}}','yes'),(362,'wpseo','a:42:{s:8:\"tracking\";b:0;s:22:\"license_server_version\";s:1:\"2\";s:15:\"ms_defaults_set\";b:0;s:40:\"ignore_search_engines_discouraged_notice\";b:0;s:19:\"indexing_first_time\";b:1;s:16:\"indexing_started\";b:0;s:15:\"indexing_reason\";s:0:\"\";s:29:\"indexables_indexing_completed\";b:0;s:7:\"version\";s:4:\"15.9\";s:16:\"previous_version\";s:4:\"15.8\";s:20:\"disableadvanced_meta\";b:1;s:30:\"enable_headless_rest_endpoints\";b:1;s:17:\"ryte_indexability\";b:1;s:11:\"baiduverify\";s:0:\"\";s:12:\"googleverify\";s:0:\"\";s:8:\"msverify\";s:0:\"\";s:12:\"yandexverify\";s:0:\"\";s:9:\"site_type\";s:0:\"\";s:20:\"has_multiple_authors\";s:0:\"\";s:16:\"environment_type\";s:0:\"\";s:23:\"content_analysis_active\";b:1;s:23:\"keyword_analysis_active\";b:1;s:21:\"enable_admin_bar_menu\";b:1;s:26:\"enable_cornerstone_content\";b:1;s:18:\"enable_xml_sitemap\";b:1;s:24:\"enable_text_link_counter\";b:1;s:22:\"show_onboarding_notice\";b:1;s:18:\"first_activated_on\";i:1592408498;s:13:\"myyoast-oauth\";b:0;s:26:\"semrush_integration_active\";b:1;s:14:\"semrush_tokens\";a:0:{}s:20:\"semrush_country_code\";s:2:\"us\";s:19:\"permalink_structure\";s:36:\"/%year%/%monthnum%/%day%/%postname%/\";s:8:\"home_url\";s:26:\"https://www.ingivision.com\";s:18:\"dynamic_permalinks\";b:0;s:17:\"category_base_url\";s:0:\"\";s:12:\"tag_base_url\";s:0:\"\";s:21:\"custom_taxonomy_slugs\";a:2:{s:20:\"flamingo_contact_tag\";s:20:\"flamingo_contact_tag\";s:24:\"flamingo_inbound_channel\";s:24:\"flamingo_inbound_channel\";}s:29:\"enable_enhanced_slack_sharing\";b:1;s:25:\"zapier_integration_active\";b:1;s:19:\"zapier_subscription\";a:0:{}s:14:\"zapier_api_key\";s:0:\"\";}','yes'),(363,'wpseo_titles','a:76:{s:17:\"forcerewritetitle\";b:1;s:9:\"separator\";s:7:\"sc-dash\";s:16:\"title-home-wpseo\";s:42:\"%%sitename%% %%page%% %%sep%% %%sitedesc%%\";s:18:\"title-author-wpseo\";s:40:\"%%name%%, autor en %%sitename%% %%page%%\";s:19:\"title-archive-wpseo\";s:38:\"%%date%% %%page%% %%sep%% %%sitename%%\";s:18:\"title-search-wpseo\";s:58:\"Has buscado %%searchphrase%% %%page%% %%sep%% %%sitename%%\";s:15:\"title-404-wpseo\";s:42:\"Página no encontrada %%sep%% %%sitename%%\";s:19:\"metadesc-home-wpseo\";s:0:\"\";s:21:\"metadesc-author-wpseo\";s:0:\"\";s:22:\"metadesc-archive-wpseo\";s:0:\"\";s:9:\"rssbefore\";s:0:\"\";s:8:\"rssafter\";s:60:\"La entrada %%POSTLINK%% se publicó primero en %%BLOGLINK%%.\";s:20:\"noindex-author-wpseo\";b:0;s:28:\"noindex-author-noposts-wpseo\";b:1;s:21:\"noindex-archive-wpseo\";b:1;s:14:\"disable-author\";b:0;s:12:\"disable-date\";b:0;s:19:\"disable-post_format\";b:0;s:18:\"disable-attachment\";b:1;s:23:\"is-media-purge-relevant\";b:0;s:20:\"breadcrumbs-404crumb\";s:32:\"Error 404: Página no encontrada\";s:29:\"breadcrumbs-display-blog-page\";b:0;s:20:\"breadcrumbs-boldlast\";b:0;s:25:\"breadcrumbs-archiveprefix\";s:10:\"Archivo de\";s:18:\"breadcrumbs-enable\";b:1;s:16:\"breadcrumbs-home\";s:7:\"Portada\";s:18:\"breadcrumbs-prefix\";s:0:\"\";s:24:\"breadcrumbs-searchprefix\";s:15:\"Has buscado por\";s:15:\"breadcrumbs-sep\";s:1:\"-\";s:12:\"website_name\";s:0:\"\";s:11:\"person_name\";s:0:\"\";s:11:\"person_logo\";s:0:\"\";s:14:\"person_logo_id\";i:0;s:22:\"alternate_website_name\";s:0:\"\";s:12:\"company_logo\";s:0:\"\";s:15:\"company_logo_id\";i:0;s:12:\"company_name\";s:0:\"\";s:17:\"company_or_person\";s:7:\"company\";s:25:\"company_or_person_user_id\";b:0;s:17:\"stripcategorybase\";b:0;s:10:\"title-post\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-post\";s:0:\"\";s:12:\"noindex-post\";b:0;s:23:\"display-metabox-pt-post\";b:1;s:23:\"post_types-post-maintax\";i:0;s:21:\"schema-page-type-post\";s:7:\"WebPage\";s:24:\"schema-article-type-post\";s:7:\"Article\";s:10:\"title-page\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:13:\"metadesc-page\";s:0:\"\";s:12:\"noindex-page\";b:0;s:23:\"display-metabox-pt-page\";b:1;s:23:\"post_types-page-maintax\";s:1:\"0\";s:21:\"schema-page-type-page\";s:7:\"WebPage\";s:24:\"schema-article-type-page\";s:4:\"None\";s:16:\"title-attachment\";s:39:\"%%title%% %%page%% %%sep%% %%sitename%%\";s:19:\"metadesc-attachment\";s:0:\"\";s:18:\"noindex-attachment\";b:0;s:29:\"display-metabox-pt-attachment\";b:1;s:29:\"post_types-attachment-maintax\";s:1:\"0\";s:27:\"schema-page-type-attachment\";s:7:\"WebPage\";s:30:\"schema-article-type-attachment\";s:4:\"None\";s:18:\"title-tax-category\";s:53:\"%%term_title%% archivos %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-category\";s:0:\"\";s:28:\"display-metabox-tax-category\";b:1;s:20:\"noindex-tax-category\";b:0;s:18:\"title-tax-post_tag\";s:53:\"%%term_title%% archivos %%page%% %%sep%% %%sitename%%\";s:21:\"metadesc-tax-post_tag\";s:0:\"\";s:28:\"display-metabox-tax-post_tag\";b:1;s:20:\"noindex-tax-post_tag\";b:0;s:21:\"title-tax-post_format\";s:53:\"%%term_title%% archivos %%page%% %%sep%% %%sitename%%\";s:24:\"metadesc-tax-post_format\";s:0:\"\";s:31:\"display-metabox-tax-post_format\";b:0;s:23:\"noindex-tax-post_format\";b:1;s:26:\"taxonomy-category-ptparent\";s:1:\"0\";s:26:\"taxonomy-post_tag-ptparent\";s:1:\"0\";s:29:\"taxonomy-post_format-ptparent\";s:1:\"0\";}','yes'),(364,'wpseo_social','a:18:{s:13:\"facebook_site\";s:0:\"\";s:13:\"instagram_url\";s:0:\"\";s:12:\"linkedin_url\";s:0:\"\";s:11:\"myspace_url\";s:0:\"\";s:16:\"og_default_image\";s:0:\"\";s:19:\"og_default_image_id\";s:0:\"\";s:18:\"og_frontpage_title\";s:0:\"\";s:17:\"og_frontpage_desc\";s:0:\"\";s:18:\"og_frontpage_image\";s:0:\"\";s:21:\"og_frontpage_image_id\";s:0:\"\";s:9:\"opengraph\";b:1;s:13:\"pinterest_url\";s:0:\"\";s:15:\"pinterestverify\";s:0:\"\";s:7:\"twitter\";b:1;s:12:\"twitter_site\";s:0:\"\";s:17:\"twitter_card_type\";s:19:\"summary_large_image\";s:11:\"youtube_url\";s:0:\"\";s:13:\"wikipedia_url\";s:0:\"\";}','yes'),(365,'wpseo_flush_rewrite','1','yes'),(366,'yoast_migrations_free','a:1:{s:7:\"version\";s:4:\"15.9\";}','yes'),(367,'_transient_timeout_wpseo_link_table_inaccessible','1623944500','no'),(368,'_transient_wpseo_link_table_inaccessible','0','no'),(369,'_transient_timeout_wpseo_meta_table_inaccessible','1623944500','no'),(370,'_transient_wpseo_meta_table_inaccessible','0','no'),(373,'wpseo_ryte','a:2:{s:6:\"status\";i:1;s:10:\"last_fetch\";i:1616600559;}','yes'),(559,'wpcf7','a:3:{s:7:\"version\";s:3:\"5.4\";s:13:\"bulk_validate\";a:4:{s:9:\"timestamp\";i:1593518232;s:7:\"version\";s:5:\"5.1.9\";s:11:\"count_valid\";i:1;s:13:\"count_invalid\";i:0;}s:9:\"recaptcha\";a:1:{s:40:\"6LfPis4ZAAAAADTOjIKgKDqsIfqRb8NFrVnj1T-s\";s:40:\"6LfPis4ZAAAAAA4V-OAXz3PA5bYkXFQcYiG1bPoF\";}}','yes'),(801,'secret_key',' aE@(PNGHUz2ozTGV|E3zcIkW2kTe>dRc=LhM`:5MVN0g^;(GSWZfa_P`XJc6I$=','no'),(1568,'acf_version','5.9.5','yes'),(1577,'cms_tpv_show_annoying_little_box','1','yes'),(1578,'cms_tpv_show_promo','1','yes'),(1579,'cms_tpv_options','a:3:{s:9:\"dashboard\";a:1:{i:0;s:4:\"page\";}s:4:\"menu\";a:2:{i:0;s:4:\"page\";i:1;s:15:\"acf-field-group\";}s:13:\"postsoverview\";a:2:{i:0;s:4:\"page\";i:1;s:15:\"acf-field-group\";}}','yes'),(1580,'cms_tpv_version','1.6.3','yes'),(1585,'duplicate_post_copytitle','1','yes'),(1586,'duplicate_post_copydate','0','yes'),(1587,'duplicate_post_copystatus','0','yes'),(1588,'duplicate_post_copyslug','0','yes'),(1589,'duplicate_post_copyexcerpt','1','yes'),(1590,'duplicate_post_copycontent','1','yes'),(1591,'duplicate_post_copythumbnail','1','yes'),(1592,'duplicate_post_copytemplate','1','yes'),(1593,'duplicate_post_copyformat','1','yes'),(1594,'duplicate_post_copyauthor','0','yes'),(1595,'duplicate_post_copypassword','0','yes'),(1596,'duplicate_post_copyattachments','0','yes'),(1597,'duplicate_post_copychildren','0','yes'),(1598,'duplicate_post_copycomments','0','yes'),(1599,'duplicate_post_copymenuorder','1','yes'),(1600,'duplicate_post_taxonomies_blacklist','a:0:{}','yes'),(1601,'duplicate_post_blacklist','','yes'),(1602,'duplicate_post_types_enabled','a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}','yes'),(1607,'duplicate_post_show_original_column','0','yes'),(1608,'duplicate_post_show_original_in_post_states','0','yes'),(1609,'duplicate_post_show_original_meta_box','0','yes'),(1821,'disallowed_keys','','no'),(1822,'comment_previously_approved','1','yes'),(1823,'auto_plugin_theme_update_emails','a:0:{}','no'),(1824,'finished_updating_comment_type','1','yes'),(1825,'db_upgraded','','yes'),(1948,'redirection_options','a:31:{s:7:\"support\";b:0;s:5:\"token\";s:32:\"a0dd2d414952c937904e0bf6608d8eb3\";s:12:\"monitor_post\";i:1;s:13:\"monitor_types\";a:2:{i:0;s:4:\"post\";i:1;s:4:\"page\";}s:19:\"associated_redirect\";s:0:\"\";s:11:\"auto_target\";s:0:\"\";s:15:\"expire_redirect\";i:7;s:10:\"expire_404\";i:7;s:7:\"modules\";a:0:{}s:10:\"newsletter\";b:0;s:14:\"redirect_cache\";i:1;s:10:\"ip_logging\";i:1;s:13:\"last_group_id\";i:1;s:8:\"rest_api\";i:0;s:5:\"https\";b:0;s:7:\"headers\";a:0:{}s:8:\"database\";s:3:\"4.2\";s:8:\"relocate\";s:0:\"\";s:16:\"preferred_domain\";s:0:\"\";s:7:\"aliases\";a:0:{}s:10:\"flag_query\";s:5:\"exact\";s:9:\"flag_case\";b:0;s:13:\"flag_trailing\";b:0;s:10:\"flag_regex\";b:0;s:12:\"log_external\";b:0;s:10:\"log_header\";b:0;s:10:\"track_hits\";b:1;s:10:\"permalinks\";a:0:{}s:9:\"cache_key\";i:0;s:13:\"plugin_update\";s:6:\"prompt\";s:13:\"update_notice\";s:3:\"5.0\";}','yes'),(1997,'autoptimize_version','2.8.1','yes'),(1998,'autoptimize_service_availablity','a:2:{s:12:\"extra_imgopt\";a:3:{s:6:\"status\";s:2:\"up\";s:5:\"hosts\";a:1:{i:1;s:26:\"https://cdn.shortpixel.ai/\";}s:16:\"launch-threshold\";s:4:\"4096\";}s:7:\"critcss\";a:2:{s:6:\"status\";s:2:\"up\";s:5:\"hosts\";a:1:{i:1;s:24:\"https://criticalcss.com/\";}}}','yes'),(1999,'autoptimize_ccss_version','AO_2.8.1','yes'),(2001,'autoptimize_imgopt_launched','on','yes'),(2016,'autoptimize_html','','yes'),(2017,'autoptimize_html_keepcomments','','yes'),(2018,'autoptimize_enable_site_config','on','yes'),(2019,'autoptimize_js','on','yes'),(2020,'autoptimize_js_aggregate','on','yes'),(2021,'autoptimize_js_exclude','wp-includes/js/dist/, wp-includes/js/tinymce/, js/jquery/jquery.js, js/jquery/jquery.min.js','yes'),(2022,'autoptimize_js_trycatch','','yes'),(2023,'autoptimize_js_justhead','','yes'),(2024,'autoptimize_js_forcehead','','yes'),(2025,'autoptimize_js_include_inline','on','yes'),(2026,'autoptimize_css','','yes'),(2027,'autoptimize_css_aggregate','','yes'),(2028,'autoptimize_css_exclude','wp-content/cache/, wp-content/uploads/, admin-bar.min.css, dashicons.min.css','yes'),(2029,'autoptimize_css_justhead','','yes'),(2030,'autoptimize_css_datauris','','yes'),(2031,'autoptimize_css_defer','','yes'),(2032,'autoptimize_css_defer_inline','','yes'),(2033,'autoptimize_css_inline','','yes'),(2034,'autoptimize_css_include_inline','on','yes'),(2035,'autoptimize_cdn_url','','yes'),(2036,'autoptimize_cache_clean','0','yes'),(2037,'autoptimize_cache_nogzip','on','yes'),(2038,'autoptimize_optimize_logged','on','yes'),(2039,'autoptimize_optimize_checkout','','yes'),(2040,'autoptimize_minify_excluded','on','yes'),(2041,'autoptimize_cache_fallback','on','yes'),(2069,'wp-short-pixel-query-id-stop','193','yes'),(2070,'wp-short-pixel-query-id-start','193','yes'),(2071,'wp-short-pixel-create-webp-markup','0','yes'),(2072,'wp-short-pixel-verifiedKey','1','no'),(2074,'wp-short-pixel-activation-date','1598111979','no'),(2075,'wp-short-pixel-apiKey','94tjKz39gnW5gEefTKlS','no'),(2076,'wp-short-pixel-compression','1','yes'),(2077,'wp-short-process_thumbnails','1','yes'),(2078,'wp-short-pixel_cmyk2rgb','1','yes'),(2079,'wp-short-backup_images','1','yes'),(2080,'wp-short-pixel-resize-images','0','yes'),(2081,'wp-short-pixel-resize-width','','yes'),(2082,'wp-short-pixel-resize-height','','yes'),(2083,'wp-short-pixel-front-bootstrap','0','yes'),(2084,'wp-short-pixel-last-back-action','','no'),(2085,'wp-short-pixel-keep-exif','0','yes'),(2086,'wp-short-create-webp','0','yes'),(2087,'wp-short-pixel-optimize-retina','0','yes'),(2088,'wp-short-pixel-optimize-unlisted','0','yes'),(2089,'wp-short-pixel-resize-type','outer','yes'),(2090,'wp-short-pixel-site-auth-user','','no'),(2091,'wp-short-pixel-site-auth-pass','','no'),(2092,'wp-short-pixel-auto-media-library','1','yes'),(2093,'wp-short-pixel-optimize-pdfs','0','yes'),(2094,'wp-short-pixel-exclude-patterns','a:0:{}','no'),(2095,'wp-short-pixel-png2jpg','0','yes'),(2096,'wp-short-pixel-excludeSizes','a:0:{}','no'),(2097,'wp-short-pixel-cloudflareAPIEmail','','no'),(2098,'wp-short-pixel-cloudflareAuthKey','','no'),(2099,'wp-short-pixel-cloudflareAPIZoneID','','no'),(2100,'wp-short-pixel-cloudflareToken','','no'),(2101,'wp-short-pixel-include-next-gen','0','yes'),(2102,'wp-short-pixel-has-custom-folders','','no'),(2103,'wp-short-pixel-custom-bulk-paused','0','yes'),(2104,'wp-short-pixel-remove-settings-on-delete-plugin','0','yes'),(2105,'wp-short-pixel-current-total-files','a:44:{s:11:\"APIKeyValid\";b:1;s:12:\"APICallsMade\";s:11:\"31imágenes\";s:13:\"APICallsQuota\";s:12:\"100imágenes\";s:19:\"APICallsMadeOneTime\";s:10:\"0imágenes\";s:20:\"APICallsQuotaOneTime\";s:10:\"0imágenes\";s:19:\"APICallsMadeNumeric\";s:2:\"31\";s:20:\"APICallsQuotaNumeric\";i:100;s:26:\"APICallsMadeOneTimeNumeric\";s:1:\"0\";s:27:\"APICallsQuotaOneTimeNumeric\";s:1:\"0\";s:17:\"APICallsRemaining\";i:69;s:18:\"APILastRenewalDate\";s:19:\"0000-00-00 00:00:00\";s:11:\"DomainCheck\";s:10:\"Accessible\";s:4:\"time\";i:1598113033;s:12:\"optimizePdfs\";s:1:\"0\";s:10:\"totalFiles\";i:31;s:9:\"mainFiles\";i:5;s:19:\"totalProcessedFiles\";i:31;s:18:\"mainProcessedFiles\";i:5;s:19:\"totalProcLossyFiles\";i:31;s:18:\"mainProcLossyFiles\";i:5;s:20:\"totalProcGlossyFiles\";i:0;s:19:\"mainProcGlossyFiles\";i:0;s:22:\"totalProcLosslessFiles\";i:0;s:21:\"mainProcLosslessFiles\";i:0;s:12:\"totalMlFiles\";i:31;s:11:\"mainMlFiles\";i:5;s:21:\"totalProcessedMlFiles\";i:31;s:20:\"mainProcessedMlFiles\";i:5;s:21:\"totalProcLossyMlFiles\";i:31;s:20:\"mainProcLossyMlFiles\";i:5;s:22:\"totalProcGlossyMlFiles\";i:0;s:21:\"mainProcGlossyMlFiles\";i:0;s:24:\"totalProcLosslessMlFiles\";i:0;s:23:\"mainProcLosslessMlFiles\";i:0;s:21:\"totalProcUndefMlFiles\";i:0;s:20:\"mainProcUndefMlFiles\";i:0;s:21:\"mainUnprocessedThumbs\";i:0;s:7:\"totalM1\";i:31;s:7:\"totalM2\";i:0;s:7:\"totalM3\";i:0;s:7:\"totalM4\";i:0;s:15:\"filesWithErrors\";a:0:{}s:19:\"moreFilesWithErrors\";i:0;s:19:\"foundUnlistedThumbs\";b:0;}','yes'),(2106,'wp-short-pixel-fileCount','31','yes'),(2107,'wp-short-pixel-thumbnail-count','26','yes'),(2108,'wp-short-pixel-files-under-5-percent','0','no'),(2109,'wp-short-pixel-savedSpace','7882166','yes'),(2110,'wp-short-pixel-api-retries','0','yes'),(2111,'wp-short-pixel-total-optimized','3760480','yes'),(2112,'wp-short-pixel-total-original','11642646','yes'),(2113,'wp-short-pixel-quota-exceeded','0','yes'),(2114,'wp-short-pixel-protocol','https','no'),(2115,'wp-short-pixel-download-protocol','http','yes'),(2116,'wp-short-pixel-download-archive','4','yes'),(2117,'wp-short-pixel-media-alert','','no'),(2118,'wp-short-pixel-dismissed-notices','a:0:{}','no'),(2119,'wp-short-pixel-view-mode','','no'),(2120,'wp-short-pixel-redirected-settings','2','yes'),(2121,'wp-short-pixel-converted-png2jpg','a:0:{}','no'),(2132,'wp-short-pixel-skip-to-custom','','no'),(2133,'wp-short-pixel-bulk-ever-ran','1','yes'),(2135,'wp-short-pixel-failed-imgs','','yes'),(2138,'wp-short-pixel-apiKeyTried','','yes'),(2172,'wp-short-pixel-bulk-last-status','a:16:{s:6:\"Status\";i:1;s:7:\"Message\";s:42:\"Success: No pixels remained unsqueezed :-)\";s:18:\"PercentImprovement\";s:5:\"35.63\";s:7:\"ImageID\";s:2:\"76\";s:8:\"Filename\";s:36:\"calidad-en-las-frutas-hortalizas.jpg\";s:4:\"Type\";s:5:\"lossy\";s:11:\"ThumbsTotal\";i:3;s:11:\"ThumbsCount\";i:3;s:12:\"RetinasCount\";i:0;s:13:\"BackupEnabled\";b:1;s:11:\"TsOptimized\";s:14:\"hace 1 segundo\";s:11:\"BulkPercent\";i:99;s:7:\"BulkMsg\";s:0:\"\";s:18:\"AverageCompression\";d:67.700000000000003;s:5:\"Thumb\";s:98:\"https://www.ingivision.com/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas-300x201.jpg\";s:7:\"BkThumb\";s:135:\"https://www.ingivision.com/wp-content/uploads/ShortpixelBackups/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas-300x201.jpg\";}','yes'),(2193,'autoptimize_imgopt_settings','a:2:{s:33:\"autoptimize_imgopt_select_field_2\";s:1:\"2\";s:31:\"autoptimize_imgopt_text_field_5\";s:72:\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home1.jpg\";}','yes'),(2210,'wp-short-pixel-prioritySkip','','no'),(2485,'block_lab_example_post_id','196','yes'),(2488,'pand-d83e5fe4823f8f867dc30d3bb0b6c7de','1621249298','no'),(3539,'widget_akismet_widget','a:1:{s:12:\"_multiwidget\";i:1;}','yes'),(3543,'akismet_strictness','0','yes'),(3544,'akismet_show_user_comments_approved','0','yes'),(3545,'akismet_comment_form_privacy_notice','hide','yes'),(3546,'wordpress_api_key','3d2460486c18','yes'),(3547,'akismet_spam_count','0','yes'),(5224,'flamingo_inbound_channel_children','a:1:{i:13;a:2:{i:0;i:14;i:1;i:15;}}','yes'),(8325,'duplicate_post_show_link','a:3:{s:9:\"new_draft\";s:1:\"1\";s:5:\"clone\";s:1:\"1\";s:17:\"rewrite_republish\";s:1:\"1\";}','yes'),(8326,'duplicate_post_show_link_in','a:4:{s:3:\"row\";s:1:\"1\";s:8:\"adminbar\";s:1:\"1\";s:9:\"submitbox\";s:1:\"1\";s:11:\"bulkactions\";s:1:\"1\";}','yes'),(9296,'duplicate_post_show_notice','0','no'),(9297,'duplicate_post_version','4.1.1','yes'),(9306,'auto_update_core_dev','enabled','yes'),(9307,'auto_update_core_minor','enabled','yes'),(9308,'auto_update_core_major','unset','yes'),(9310,'can_compress_scripts','0','no'),(9537,'GOTMLS_settings_array','a:11:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:16:\"activate_plugins\";s:10:\"scan_level\";i:3;s:5:\"check\";a:4:{i:0;s:7:\"db_scan\";i:1;s:8:\"htaccess\";i:2;s:8:\"timthumb\";i:3;s:5:\"known\";}s:10:\"dont_check\";a:0:{}s:15:\"skip_quarantine\";i:0;}','yes'),(9538,'GOTMLS_nonce_blob','YToxOntzOjMyOiJmNTcwMjljOTZkYzQ=MWIxZmNhZTVhODc2ODZkYTUxYSI7ZDo=NDg=NTg7fQ3','yes'),(9540,'GOTMLS_Installation_Keys','s:80:\"a:1:{s:32:\"e09de44dd647e47589dfd0eee562a199\";s:26:\"https://www.ingivision.com\";}\";','yes'),(9541,'GOTMLS_definitions_blob','YTo5OntzOjk6InBvdGVudGlhbCI7YToxNTp7czo=OiJldmFsIjthOjI6e2k6MDtzOjU6IkVBUExxIjtpOjE7czozNToiL1teYS16XC8nIl1ldmFsXChbXlwpXStbJyJcc1wpO1=rL2kiO31zOjk6ImF1dGhfcGFzcyI7YToyOntpOjA7czo1OiJIMU45WSI7aToxO3M6MjE6Ii9cJGF1dGhfcGFzc1xzKj=uKzsvaSI7fXM6MjE6ImRvY3VtZW5=LndyaXRlIGlmcmFtZSI7YToyOntpOjA7czo1OiJIMVBBTyI7aToxO3M6NTI6Ii9kb2N1bWVudFwud3JpdGVcKChbJyJdKTxpZnJhbWUgLis8XC9pZnJhbWU-XDFcKTsqL2kiO31zOjE1OiJwcmVnX3JlcGxhY2UgL2UiO2E6Mjp7aTowO3M6NToiRzg1RjIiO2k6MTtzOjQ3OiIvcHJlZ19yZXBsYWNlXHMqXCguK1tcL1wjXHxdW2ldKmVbaV=qWyciXS4rXCkvaSI7fXM6MjA6ImV4ZWMgc3lzdGVtIHBhc3N=aHJ1IjthOjI6e2k6MDtzOjU6IkVBUExnIjtpOjE7czo1MToiLzxcPy4rP2V4ZWNcKC4rP3N5c3RlbVwoLis_cGFzc3RocnVcKC4rZndyaXRlXCguKy9zIjt9czoyOToiRXh=ZXJuYWwgUmVkaXJlY3QgUmV3cml=ZVJ1bGUiO2E6Mjp7aTowO3M6NToiRjFVSVoiO2k6MTtzOjQyOiIvUmV3cml=ZVJ1bGUgW14gXSsgaHR=cFw6XC9cLyg_ITEyN1wuKS4qL2kiO31zOjM1OiJubyBlcnJvcl9yZXBvcnRpbmcgbG9uZyBsaW5lcyBhbG9uZSI7YToyOntpOjA7czo1OiJIMlM4aiI7aToxO3M6NzQ6Ii88XD9bXHNocF=qXEA_ZXJyb3JfcmVwb3J=aW5nXCgwXCk7Lis_W2EtejAtOVwvXC1cPSciXC5dezIwMDB9Lio_KCR8XD8-KS9pIjt9czoyMjoicHJvdGVjdGVkIGJ5IGNvcHlyaWdodCI7YToyOntpOjA7czo1OiJEOE1DdyI7aToxO3M6MTM2OiIvXC9cKiBUaGlzIGZpbGUgaXMgcHJvdGVjdGVkIGJ5IGNvcHlyaWdodCBsYXcgYW5kIHByb3ZpZGVkIHVuZGVyIGxpY2Vuc2UuIFJldmVyc2UgZW5naW5lZXJpbmcgb2YgdGhpcyBmaWxlIGlzIHN=cmljdGx5IHByb2hpYml=ZWQuIFwqXC8vIjt9czoxOToiYSBzcGFuIGNvbG9yIEYxRUZFNCI7YToyOntpOjA7czo1OiJEOFJBUCI7aToxO3M6MTE4OiIvXDxhIFteXD5dK1w-XDxzcGFuIHN=eWxlPSJjb2xvclw6XCNGMUVGRTQ7Ilw-KC4rPylcPFwvc3Bhblw-XDxcL2FcPlw8c3BhbiBzdHlsZT=iY29sb3JcOlwjRjFFRkU=OyJcPiguKz8pXDxcL3NwYW5cPi9pIjt9czoxNzoiVmFyaWFibGUgRnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiRTg1NkwiO2k6MTtzOjY3OiIvKDwhXGQpXCRbXCRce1=qW2EtelwtXF8wLTldK1tcfSBcdF=qKFxbW15cXV=rXF1bIFx=XSopKlwoLio_XClcOy9pIjt9czoxMToiVGFnZ2VkIENvZGUiO2E6Mjp7aTowO3M6NToiRTRMTUciO2k6MTtzOjI=OiIvXCMoXHcrKVwjLis_XCNcL1wxXCMvaXMiO31zOjE1OiJjcmVhdGVfZnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiRzFNRmUiO2k6MTtzOjc4OiIvKFwkW2Etel8wLTldK1s9XHNcQF=rKT9jcmVhdGVfZnVuY3Rpb25cKFteLF=rLFtcc1wkXC5cW1xdYS16XzAtOV=rW1xzXCldKzsqL2kiO31zOjQzOiJmdW5jdGlvbiBhZGRfYWN=aW9uIHdwX2VucXVldWVfc2NyaXB=IGpzb24yIjthOjI6e2k6MDtzOjU6IkYxMTR2IjtpOjE7czoxNzoiL2pzb24yXC5taW5cLmpzL2kiO31zOjQ3OiJSZXdyaXRlQ29uZCBIVFRQX1VTRVJfQUdFTlQgUmV3cml=ZVJ1bGUgaHR=cCBJUCI7YToyOntpOjA7czo1OiJGMjc3aCI7aToxO3M6ODQ6Ii8oUmV3cml=ZUNvbmQgXCVce=hUVFBfVVNFUl9BR=VOVFx9IC4rXHMrKStSZXdyaXRlUnVsZSBcXi4qXCQgaHR=cDpcL1wvKD8hMTI3XC4pLiovaSI7fXM6MTI6InRpdGxlIGhhY2tlZCI7YToyOntpOjA7czo1OiJIMlM4bSI7aToxO3M6Mjc6Ii88dGl=bGU-W148XSpoYWNrWzNlXVtyZF=vaSI7fX1zOjg6ImZpcmV3YWxsIjthOjY6e3M6OToiUmV2U2xpZGVyIjthOjc6e2k6MDtzOjU6IkdCS=ZyIjtpOjE7czozNjoiUmV2b2x1dGlvbiBTbGlkZXIgRXhwbG9pdCBQcm9=ZWN=aW9uIjtpOjI7czo=MTQ6IlRoaXMgcHJvdGVjdGlvbiBpcyBhdXRvbWF=aWNhbGx5IGFjdGl2YXRlZCBiZWNhdXNlIG9mIHRoZSB3aWRlc3ByZWFkIGF=dGFja3Mgb24gV29yZFByZXNzIHRoYXQgaGF2ZSBhZmZlY3RlZCBzbyBtYW55IHNpdGVzLiBJdCBpcyBzdGlsbCByZWNvbW1lbmRlZCB=aGF=IHlvdSBtYWtlIHN1cmUgdG8gdXBncmFkZSBhbnkgb2xkZXIgdmVyc2lvbnMgb2YgdGhlIFJldm9sdXRpb24gU2xpZGVyIHBsdWdpbiwgZXNwZWNpYWxseSB=aG9zZSBpbmNsdWRlZCBpbiB=aGVtZXMgdGhhdCB3aWxsIG5vdCB1cGRhdGUgYXV=b21hdGljYWxseS4gRXZlbiBpZiB5b3UgZG9uJ3QgdGhpbmsgeW91IGhhdmUgUmV2b2x1dGlvbiBTbGlkZXIgb24geW91ciBzaXRlIGl=IGRvZXNuJ3QgaHVydCB=byBoYXZlIHRoaXMgcHJvdGVjdGlvbiBlbmFibGVkLiI7aTozO3M6NjoiU=VSVkVSIjtpOjQ7czoyMDoiL1wvYWRtaW4tYWpheFwucGhwL2kiO2k6NTtzOjc6IlJFUVVFU1QiO2k6NjtzOjExOToiL1wmaW1nPVteXCZdKig_PCFcLnBuZykoPzwhXC5qcGcpKD88IVwuanBlZykoPzwhXC5naWYpKD88IVwuYm1wKSg_PCFcLnRpZikoPzwhXC5=aWZmKSg_PCFcLnBzZCkoPzwhXC5zdmcpKD88IVwuaWNvKVwmL2kiO31zOjk6IlRyYXZlcnNhbCI7YTo1OntpOjA7czo1OiJIQzNBUSI7aToxO3M6MzA6IkRpcmVjdG9yeSBUcmF2ZXJzYWwgUHJvdGVjdGlvbiI7aToyO3M6MjE2OiJUaGlzIHByb3RlY3Rpb24gaXMgYXV=b21hdGljYWxseSBhY3RpdmF=ZWQgYmVjYXVzZSB=aGlzIHR5cGUgb2YgYXR=YWNrIGlzIHF1aXRlIGNvbW1vbi4gVGhpcyBwcm9=ZWN=aW9uIGNhbiBwcmV2ZW5=IGhhY2tlcnMgZnJvbSBhY2Nlc3Npbmcgc2VjdXJlIGZpbGVzIGluIHBhcmVudCBkaXJlY3RvcmllcyAob3IgdXNlcidzIGZvbGRlcnMgb3V=c2lkZSB=aGUgc2l=ZV9yb29=KS4iO2k6MztzOjc6IlJFUVVFU1QiO2k6NDtzOjI=OiIvPVtcc1wvXC5dKihcLlwufGV=YylcLy8iO31zOjk6IlVwbG9hZFBIUCI7YTo1OntpOjA7czo1OiJHQ=9BVCI7aToxO3M6MjY6IlVwbG9hZCBQSFAgRmlsZSBQcm9=ZWN=aW9uIjtpOjI7czoxNzc6IlRoaXMgcHJvdGVjdGlvbiBpcyBhdXRvbWF=aWNhbGx5IGFjdGl2YXRlZCBiZWNhdXNlIHRoaXMgdHlwZSBvZiBhdHRhY2sgaXMgZXh=cmVtZWx5IGRhbmdlcm91cy4gVGhpcyBwcm9=ZWN=aW9uIGNhbiBwcmV2ZW5=IGhhY2tlcnMgZnJvbSB1cGxvYWRpbmcgbWFsaWNpb3VzIGNvZGUgdmlhIHdlYiBzY3JpcHRzLiI7aTozO3M6NToiRklMRVMiO2k6NDtzOjIwOiIvbmFtZT1bXlwmXSpcLnBocFwmLyI7fXM6ODoidXNlcnNBUEkiO2E6NTp7aTowO3M6NToiSjdBR3IiO2k6MTtzOjE=OiJSRVNUIHVzZXJzIEFQSSI7aToyO3M6MjA3OiJUaGlzIHByb3RlY3Rpb24gaXMgYXV=b21hdGljYWxseSBhY3RpdmF=ZWQgYmVjYXVzZSB=aGlzIHR5cGUgb2YgYXR=YWNrIGNvdWxkIHJldmVhbCB5b3VyIGFkbWluIHVzZXJuYW1lIG9yIG9=aGVyIHVzZXIgaW5mby4gVGhpcyBwcm9=ZWN=aW9uIGNhbiBwcmV2ZW5=IGhhY2tlcnMgZnJvbSBkaXNjb3ZlcmluZyB1c2VyIGRhdGEgd2l=aG91dCBjcmVkZW5=aWFscy4iO2k6MztzOjY6IlNFUlZFUiI7aTo=O3M6MzI6Ii93cC1qc29uXC93cFwvdjJcL3VzZXJzXC9bMC=5XS9pIjt9czo4OiJVc2VyRW51bSI7YTo3OntpOjA7czo1OiJJMU5HOCI7aToxO3M6MTY6IlVzZXIgRW51bWVyYXRpb24iO2k6MjtzOjIwNzoiVGhpcyBwcm9=ZWN=aW9uIGlzIGF1dG9tYXRpY2FsbHkgYWN=aXZhdGVkIGJlY2F1c2UgdGhpcyB=eXBlIG9mIGF=dGFjayBjb3VsZCByZXZlYWwgeW91ciBhZG1pbiB1c2VybmFtZSBvciBvdGhlciB1c2VyIGluZm8uIFRoaXMgcHJvdGVjdGlvbiBjYW4gcHJldmVudCBoYWNrZXJzIGZyb2=gZGlzY292ZXJpbmcgdXNlciBkYXRhIHdpdGhvdXQgY3JlZGVudGlhbHMuIjtpOjM7czo3OiJSRVFVRVNUIjtpOjQ7czoxOToiL1wmYXV=aG9yPVswLTldK1wmLyI7aTo1O3M6NjoiU=VSVkVSIjtpOjY7czozMzoiL1wmUkVRVUVTVF9VUkk9KD8hXC93cC1hZG1pblwvKS9pIjt9czoxNDoiX2ZzX2Jsb2dfYWRtaW4iO2E6OTp7aTowO3M6NToiSjQ=Q2EiO2k6MTtzOjE2OiJGYWxzZSBibG9nX2FkbWluIjtpOjI7czoyMDA6IlRoaXMgcHJvdGVjdGlvbiBpcyBhdXRvbWF=aWNhbGx5IGFjdGl2YXRlZCBiZWNhdXNlIHRoaXMgdHlwZSBvZiBhdHRhY2sgY291bGQgYWxsb3cgYSBub24tYWRtaW4gdXNlciB=byBleHBsb2l=IHRoZSBHcmlkIEdhbGxlcnkgcGx1Z2luIGlmIHlvdSBoYXZlIGl=IGFuZCBwZXJmb3JtIGFkbWluIHRhc2tzIHdpdGhvdXQgYWRtaW4gY3JlZGVudGlhbHMuIjtpOjM7czo2OiJTRVJWRVIiO2k6NDtzOjIwOiIvXC9hZG1pbi1hamF4XC5waHAvaSI7aTo1O3M6NzoiUkVRVUVTVCI7aTo2O3M6MTk6Ii9cJl9mc19ibG9nX2FkbWluPS8iO2k6NztzOjc6IlJFUVVFU1QiO2k6ODtzOjE3OiIvXCZvcHRpb25fbmFtZT=vaSI7fX1zOjc6ImRiX3NjYW4iO2E6MzE6e3M6MTI6IiU8YSAldmlhZ3JhJSI7YToyOntpOjA7czo1OiJJQ1RIYyI7aToxO3M6MTMyOiIvPGFbXj5dKj5bXjxdKihwdXJjaGFzZXxvcmRlcnxidXl8Y2hlYXB8dmlhZ3JhfGxpc2lub3ByaWx8amFudXZpYXxmbHVveGV=aW5lfHBpbGxzfGNhc2htZXJlW1xzX1wtXSpzY2FyZnxvbmxpbmV8b3V=bGV=KVtePF=qPFwvYT4vaXMiO31zOjEyOiIlPHNjcmlwdCVceCUiO2E6Mjp7aTowO3M6NToiSjE4OFkiO2k6MTtzOjg=OiIvPHNjcmlwdFtePl=qPltePF=qKChbJyJdKShcXHhbYS1mMC=5XXsyfSkrXDJcXXxbJyJcXCwwLTlBLUZ4XXsyMDB9KS4rPzxcL3NjcmlwdD4vaXMiO31zOjEyOiIlPGEgJWNpYWxpcyUiO2E6Mjp7aTowO3M6NToiSjExN24iO2k6MTtzOjYxOiIvPGFbXj5dKig-fD5bXjxdKltcc19cLVwuXSspY2lhbGlzKFtcc19cLVwuXStbXjxdKjx8PClcL2E-L2lzIjt9czoxNToiJTxzY3JpcHQlZXZhbCglIjthOjI6e2k6MDtzOjU6IkoxODhCIjtpOjE7czo4NToiLzxzY3JpcHRbXj5dKj5bXjxdKigoWyciXSkoXFx4W2EtZjAtOV17Mn=pK1wyXF18ZXZhbHxzZXR=aW1lb3V=KVxzKlwoLis_PFwvc2NyaXB=Pi9pcyI7fXM6MTU6IiU8YSAlbGV=cm96b2xlJSI7YToyOntpOjA7czo1OiJJQ1RJNSI7aToxO3M6MTczOiIvPGFbXj5dKig-W148XSpbXHNfXC1cLl=rfD4pKHB1cmNoYXNlfG9yZGVyfGJ1eXxjaGVhcHxzeW5=aHJvaWR8bGV=cm96b2xlfGxpc2lub3ByaWx8amFudXZpYXxmbHVveGV=aW5lfHBpbGxzfGNhc2htZXJlW1xzX1wtXSpzY2FyZnxvbmxpbmV8b3V=bGV=KShbXHNfXC1cLl=rW148XSo8fDwpXC9hPi9pcyI7fXM6Mjc6IiU8c2NyaXB=JTovL2JpdC4lPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJKQU5FQiI7aToxO3M6NTg6Ii88c2NyaXB=W14-XSpzcmM9KFsnIl=pW2ZodHBzXDpdKlwvXC9iaXRcLi4rPzxcL3NjcmlwdD4vaXMiO31zOjMwOiIlPHNjcmlwdCUvL2RvbG9oZW4uJTwvc2NyaXB=PiUiO2E6Mjp7aTowO3M6NToiSjUyOFUiO2k6MTtzOjYyOiIvPHNjcmlwdFtePl=qc3JjPShbJyJdKVtmaHRwc1w6XSpcL1wvZG9sb2hlblwuLis_PFwvc2NyaXB=Pi9pcyI7fXM6Mjc6IiVldmFsKFN=cmluZy5mcm9tQ2hhckNvZGUoJSI7YToyOntpOjA7czo1OiJKNVFDTyI7aToxO3M6NTk6Ii9ldmFsXChbXHNhLXpfMC=5XC5cKF=qZnJvbUNoYXJDb2RlXChbMC=5LFxzXStbXClcc1=rO1xzKi9pIjt9czozNDoiJTxzY3JpcHQlLy9zYXNrbWFkZS5uZXQlPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJKODFJRCI7aToxO3M6NjM6Ii88c2NyaXB=W14-XSpzcmM9KFsnIl=pW2ZodHBzXDpdKlwvXC9zYXNrbWFkZVwuLis_PFwvc2NyaXB=Pi9pcyI7fXM6MTk6IiU8c2NyaXB=JS5jbGtzaXRlLiUiO2E6Mjp7aTowO3M6NToiSkE2RU8iO2k6MTtzOjcxOiIvPHNjcmlwdFtePl=qc3JjPShbJyJdKVtmaHRwc1w6XSpcL1wvcFswLTldK1wuY2xrc2l=ZVwuLis_PFwvc2NyaXB=Pi9pcyI7fXM6MjA6IiU8c2NyaXB=JS5wdmNsb3Vkcy4lIjthOjI6e2k6MDtzOjU6IkpBNkY4IjtpOjE7czo3MzoiLzxzY3JpcHRbXj5dKnNyYz=oWyciXSlbZmh=cHNcOl=qXC9cL3BsWzAtOV=rXC5wdmNsb3Vkc1wuLis_PFwvc2NyaXB=Pi9pcyI7fXM6MTU6IiUvL2xpbmthbmdvb2QuJSI7YToyOntpOjA7czo1OiJLMVNEZCI7aToxO3M6Njg6Ii88KGF8c2NyaXB=KVtePl=qKGhyZWZ8c3JjKT1bJyJmaHRwc1w6XStcL1wvbGlua2FuZ29vZFwuLis_PFwvXDE-L2lzIjt9czozMToiJTxzY3JpcHQlOi8vbWFkc2Fucy4lPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJKQjNCaSI7aToxO3M6NTg6Ii88c2NyaXB=W14-XSpzcmM9WyciZmh=cHNcOl=rXC9cL21hZHNhbnNcLi4rPzxcL3NjcmlwdD4vaXMiO31zOjQzOiIlPHNjcmlwdCU6Ly9zaW1wbGVvbmVsaW5lLm9ubGluZSU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6IkpCNUROIjtpOjE7czo3MDoiLzxzY3JpcHRbXj5dKnNyYz1bJyJmaHRwc1w6XStcL1wvc2ltcGxlb25lbGluZVwub25saW5lLis_PFwvc2NyaXB=Pi9pcyI7fXM6Mjk6IiU8c2NyaXB=JS5waHA_em9uZSU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6IkpCRUJQIjtpOjE7czo5MDoiLzxzY3JpcHRbXj5dKnNyYz=oWyciXSlbZmh=cHNcOl=qXC9cL1teXD9dK1w_KHpvbmV8aWR8cHx6fHQpKz1bXGRfXStbJyJcJl=uKz88XC9zY3JpcHQ-L2lzIjt9czo=OToiJTxzY3JpcHQlOi8vc2NyaXB=cy5=cmFzbmFsdGVteXJlY29yZHMlPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJKQktJViI7aToxO3M6NzY6Ii88c2NyaXB=W14-XSpzcmM9WyciZmh=cHNcOl=rXC9cL3NjcmlwdHNcLnRyYXNuYWx=ZW15cmVjb3Jkcy4rPzxcL3NjcmlwdD4vaXMiO31zOjQ=OiIlPGEgaHJlZj=iI2Z1bGwiJTxwIGlkPSJmdWxsIiBjbGFzcz=iaGlkZSI-JSI7YToyOntpOjA7czo1OiJKQkxHViI7aToxO3M6MTE1OiIvPGFbXj5dKmhyZWY9KFsnIl=pXCMoW2Etel8wLTldKylcMVtePl=qPnJlYWQgbW9yZTxcL2E-KFxzKjwocHxkaXYpIGlkPShbJyJdKVwyXDUgY2xhc3M9KFsnIl=paGlkZVw2Pi4qPzxcL1w=PikrL2lzIjt9czozNzoiJWRvY3VtZW5=LmNyZWF=ZUVsZW1lbnQlLmFwcGVuZENoaWxkJSI7YToyOntpOjA7czo1OiJLNjRCciI7aToxO3M6NTIyOiIvKDwoc2NyaXB=KVtePl=qPnxcL1wqXHMqWzAtOWEtel=rXHMqXCpcL3x2YXJ8Y29uc3QpK1xzKi4qPyhbYS16XzAtOV=rKVtccz1dK2RvY3VtZW5=XC5jcmVhdGVFbGVtZW5=W1woXHNdKyhTdHJpbmdcLmZyb21DaGFyQ29kZVwofFsnIlxcXSpzY3JpcHQpLis_XDNcLnNyY1tccz1dKyhTdHJpbmdcLmZyb21DaGFyQ29kZVwoW15cKV=rXCkrO1xzKnxbJyJodHBzOl=rXC9cL1teXD9dK1w_KHpvbmV8aWR8cHx6fHN8dCkrPVtcZF9dKykuKz8obG9jYXRpb25cLnJlcGxhY2VbXHNcKF=rKFN=cmluZ1wuZnJvbUNoYXJDb2RlXChbXlwpXStcKSs7XHMqfFsnImh=cHM6XStcL1wvW15cP1=rXD8oem9uZXxpZHxwfHp8c3x=KSs9W1xkX1=rKXxcM1wuYXBwZW5kQWZ=ZXJcKFteO1=rO1xzKikrLis_XC5hcHBlbmRDaGlsZFwoXDNcKS4rP1xzKihcfVtcKFwpO1xzXSp8PFwvXDI-XHMqfFwvXCpccypbXC8wLTlhLXpdK1xzKlwqXC9ccyp8JHw8XDJbXj5dK1wvXC9=cmFja1wuZGV2ZWxvcGZpcnN=bGluZVwuY29tW14-XSo-KSsvaXMiO31zOjQwOiIlPHNjcmlwdCVTdHJpbmcuZnJvbUNoYXJDb2RlKCU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6IkpDTExsIjtpOjE7czoxOTc6Ii88c2NyaXB=W14-XSo-XHMqKHZhcltcc2Etel8wLTldKz1ccypTdHJpbmdcLmZyb21DaGFyQ29kZVtcc1woXStbMC=5LFxzXStbXClcc1=rO1xzKikrKHZhclxzKihbYS16XzAtOV=rKVxzKj1ccypkb2N1bWVudFwuKGNyZWF=ZUVsZW1lbnR8Z2V=RWxlbWVudFthLXpdKylbXHNcKF=rW147XSs7XHMqXDNcLlteO1=rO1xzKikrPFwvc2NyaXB=Pi9pIjt9czoyNzoiJTxzY3JpcHQldmFyIF8weCU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6Iks=UUtzIjtpOjE7czozMDI6Ii88KHNjcmlwdClbXj5dKj4oXC9cKlxzKlswLTlhLXpdK1xzKlwqXC98dmFyfGNvbnN=fFwoZnVuY3Rpb24uKz9mdW5jdGlvbltcKFwpXHtcc1=rKStccyooKF8weFthLXpfMC=5XSspW1xzPV=rKFxbW15cXV=rW1xdLFxzXSspKztbXH1cc1=qKSsoKChfMHhbYS16XzAtOV=rKT9cKFxzKnwodmFyXHMqKT9ccyooXzB4W2Etel8wLTldKylbXHM9XSpmdW5jdGlvblteXHtdK1x7K1xzKikrW147XSpbO1xzXH1dKykrKHZhclxzKik_XHMqKF8weFthLXpfMC=5XSspW1xzPV=rXDQuK1wxMFteO1=rWztcc1x9XCh=aGlzXCldKzxcL1wxPi9pIjt9czo=NToiJTxzY3JpcHQlLy9jbG9uLmNvbGxlY3RmYXN=dHJhY2tzLiU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6IkszTUFiIjtpOjE7czo3ODoiLzxzY3JpcHRbXj5dKnNyYz=oWyciXSlbZmh=cHNcOl=qXC9cL2Nsb25cLmNvbGxlY3RmYXN=dHJhY2tzXC4uKz88XC9zY3JpcHQ-L2lzIjt9czozNDoiJTxzY3JpcHQlLy9taWtreW1heC5jb2=lPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJLM1BBZyI7aToxO3M6NjY6Ii88c2NyaXB=W14-XSpzcmM9KFsnIl=pW2ZodHBzXDpdKlwvXC9taWtreW1heFwuY29tLis_PFwvc2NyaXB=Pi9pcyI7fXM6NDE6IiU8c2NyaXB=JXNob3J=ZXN=TW9uZXRpemF=aW9uKCU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6Iks=NkFZIjtpOjE7czozMjQ6Ii88KHNjcmlwdClbXj5dKj5ccyooXC9cKlxzKlswLTlhLXpdK1xzKlwqXC9ccyp8XC9cL1teXG5dKlxzK3xbXChdKmZ1bmN=aW9uW15ce1=qXHtccyp8dmFyXHMqfGNvbnN=XHMqKSsoKFthLXpfMC=5XSspW1xzPV=rKFxbW15cXV=rW1xdLFxzXSt8KChbJyJdKVteXDpdK1w6XHMqKT9ce1teXH1dK1tcfSxcc1=rKSs7W1x9XHNdKikrKCh2YXJ8Y29uc3QpXHMqKFthLXpfMC=5XSspW1xzPV=rZG9jdW1lbnRcLlteXChdK1woKFN=cmluZ1wuZnJvbUNoYXJDb2RlXCh8WyciXXNjcmlwdFsnIl=pLitccyooXDEwXC4uK1xzKikrKStbXH1cKFwpO1xzXC9cXVw-XDxdKlwxXD4vaSI7fXM6MjM6IiU8c2NyaXB=PiUweCU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6Iks=ODBEIjtpOjE7czoxNjU6Ii88KHNjcmlwdClbXj5dKj5ccyooXC9cKlxzKlswLTlhLXpdK1xzKlwqXC9ccyp8dmFyfGNvbnN=KStccyooKFthLXpfMC=5XSspW1xzPV=rKFxbW15cXV=rW1xdLFxzXSspKztbXH1cc1=qKSsoLioweC4qXHMqKSt3aW5kb3dbXjtdK1s7XHNcfV=rXCh=aGlzXCkrWztcc1x9XSs8XC9cMT4vaSI7fXM6NDg6IiU8c2NyaXB=JS8vY2hlY2sucmVzb2x1dGlvbmRlc3Rpbi5jb2=lPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJLNDlCRCI7aToxO3M6ODM6Ii88c2NyaXB=W14-XSpzcmM9KFsnIl=pW2ZodHBzXDpdKlwvXC9jaGVja1wucmVzb2x1dGlvbmRlc3RpblwuY29tXC8uKz88XC9zY3JpcHQ-L2lzIjt9czozMzoiJTxzY3JpcHQlLy9nYWRzb2tzLmNvbSU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6Iks=UUw2IjtpOjE7czo2NToiLzxzY3JpcHRbXj5dKnNyYz=oWyciXSlbZmh=cHNcOl=qXC9cL2dhZHNva3NcLmNvbS4rPzxcL3NjcmlwdD4vaXMiO31zOjM1OiIlPHNjcmlwdCVkb2N1bWVudC53cml=ZSglPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJLNUVLMyI7aToxO3M6MjM3OiIvPChzY3JpcHQpW14-XSo-XHMqKFwvXCpccypbMC=5YS16XStccypcKlwvXHMqfFwvXC9bXlxuXSpccyt8W1woXSpmdW5jdGlvblteXHtdKlx7XHMqKSsodmFyXHMqKFthLXpfMC=5XSspXHMqPSguK3JldHVybiBcNFteXH1dK1tcfTtcc1=rfChbJyJdKWRhdGFcOnRleHRcL2phdmFzY3JpcHRcO2Jhc2U2NFwsW147XSs7XHMqKSkrLis_ZG9jdW1lbnRcLndyaXRlXCguKz9bJyJcK1=rXDRbJyJcK1=rLis_PFwvXDE-L2kiO31zOjMzOiIlPHNjcmlwdCUvL2pzLmRldmVsb3BlcnN=YXRzcy5nYSUiO2E6Mjp7aTowO3M6NToiSzgzRUkiO2k6MTtzOjcwOiIvPHNjcmlwdFtePl=qc3JjPVsnImZodHBzXDpdK1wvXC9qc1wuZGV2ZWxvcGVyc3RhdHNzXC4uKz88XC9zY3JpcHQ-L2lzIjt9czo=NzoiJTxzY3JpcHQlLy9zY3JpcHRzLmxvd2VyYmVmb3J3YXJkZW4uJTwvc2NyaXB=PiUiO2E6Mjp7aTowO3M6NToiSzk4QVEiO2k6MTtzOjgwOiIvPHNjcmlwdFtePl=qc3JjPShbJyJdKVtmaHRwc1w6XSpcL1wvc2NyaXB=c1wubG93ZXJiZWZvcndhcmRlblwuLis_PFwvc2NyaXB=Pi9pcyI7fXM6MzY6IiU8c2NyaXB=JS8vZnJpbWVkdWJsZS5jb2=lPC9zY3JpcHQ-JSI7YToyOntpOjA7czo1OiJLOVQ3UiI7aToxO3M6MTAwOiIvPHNjcmlwdFtePl=qc3JjPShbJyJdKVtmaHRwc1w6XSpcL1wvZnJpbWVkdWJsZVwuY29tLis_KDxcL3NjcmlwdD5ccyo8c2NyaXB=W14-XSo-XHMqKSo8XC9zY3JpcHQ-L2lzIjt9czozNjoiJTxzY3JpcHQlLy9maW5nZXJsaW5nLm9yZyU8L3NjcmlwdD4lIjthOjI6e2k6MDtzOjU6IktBNzdNIjtpOjE7czo2NjoiLzxzY3JpcHRbXj5dKnNyYz1bJyJmaHRwc1w6XSpcL1wvZmluZ2VybGluZ1wub3JnXC8uKz88XC9zY3JpcHQ-L2lzIjt9fXM6ODoiaHRhY2Nlc3MiO2E6MTY6e3M6Mjg6ImV4Y2VzaXZlIHNwYWNlcyBpbiAuaHRhY2Nlc3MiO2E6Mjp7aTowO3M6NToiSTVTOHEiO2k6MTtzOjMwOiIvW1xyXG5dKyhbXHNdezUwfXxbXHRdezEwfSkuKi8iO31zOjI2OiJleGNlc2l2ZSB=YWJzIGluIC5odGFjY2VzcyI7YToyOntpOjA7czo1OiJFQTg4UyI7aToxO3M6MzI6Ii9eKFtcdCBdezMwfXxbXHRdezEwfSkuKltcclxuXSsvIjt9czoyMjoiUmV3cml=ZVJ1bGUgbW9iaWxlIDMwMiI7YToyOntpOjA7czo1OiJENDVFOSI7aToxO3M6MTM4OiIvUmV3cml=ZUVuZ2luZSBvbi4rP1Jld3JpdGVSdWxlIFxeW1woXT9cLlwqW1wpXT9cJCBodHRwOlwvXC8obW9iaWxlLS4rP3wuKz9jb3VudChlcik_XC5waHB8Lis_XD9oPVswLTldKykgXFsoTFwsKT9SKD1bMC=5XXszfSk_KFwsTCk_XF=vc2kiO31zOjI2OiJwaHBfdmFsdWUgYXV=b19hcHBlbmRfZmlsZSI7YToyOntpOjA7czo1OiJEM=M2RiI7aToxO3M6MzE6Ii9waHBfdmFsdWUgYXV=b19hcHBlbmRfZmlsZSAuKy8iO31zOjQ3OiJUYWdlZCBSZXdyaXRlQ29uZCBIVFRQX1JFRkVSRVIgUmV3cml=ZVJ1bGUgSFRUUCI7YToyOntpOjA7czo1OiJJQUlHVCI7aToxO3M6MTU=OiIvXCNbYS16MC=5XStcIy4rP1Jld3JpdGVFbmdpbmUgb25ccytSZXdyaXRlQ29uZCBcJVx7SFRUUF9SRUZFUkVSXH=uKz9SZXdyaXRlUnVsZSBcXlwoXC5cKlwpXCQgaHR=cDpcL1wvLis_IFxbKExcLCk_Uj1bMC=5XXszfShcLEwpP1xdLis_XCNcL1thLXowLTldK1wjL2lzIjt9czoyNzoiRXJyb3JEb2N1bWVudCA=MDQgd3BwcG=ucGhwIjthOjI6e2k6MDtzOjU6IkRCSTYwIjtpOjE7czozMjoiL=Vycm9yRG9jdW1lbnQgNDA=IC4rd3BwcG1cLnBocC8iO31zOjU1OiJSZXdyaXRlQ29uZCBVU=VSX=FHRU5UIFJFRkVSRVIgUmV3cml=ZVJ1bGUgc3RhcnRpbmcucGhwIjthOjI6e2k6MDtzOjU6IktCNkp3IjtpOjE7czo5NDoiLyhSZXdyaXRlQ29uZCBcJVx7SFRUUF8oVVNFUl9BR=VOVHxSRUZFUkVSKVx9LitbXHJcbl=rXHMqKStSZXdyaXRlUnVsZS4rP1wvc3RhcnRpbmdcLnBocFw_LisvaSI7fXM6NDg6IlJld3JpdGVDb25kIEhUVFBfVVNFUl9BR=VOVCBSZXdyaXRlUnVsZSBodHRwIC5ydSI7YToyOntpOjA7czo1OiJGM1JCVyI7aToxO3M6MTA3OiIvKFJld3JpdGVFbmdpbmUgb25ccyspPyhSZXdyaXRlQ29uZCAuKj9IVFRQKFw6fF9BQ=NFUFR8X1VTRVJfQUdFTlQpLipccyspK1Jld3JpdGVSdWxlLio_IGh=dHAuKz9cLnJ1LipccyovaSI7fXM6NDk6IlJld3JpdGVDb25kIEhUVFBfVVNFUl9BR=VOVCBSZXdyaXRlUnVsZSBodHRwIC5waHAiO2E6Mjp7aTowO3M6NToiSTgxTDIiO2k6MTtzOjEwNToiLyhSZXdyaXRlRW5naW5lIG9uXHMrKT8oUmV3cml=ZUNvbmQgLio_SFRUUChcOnxfQUNDRVBUfF9VU=VSX=FHRU5UKS4rP2JvdC4rXHMrKStSZXdyaXRlUnVsZVxzKmh=dHAuK1xzKi9pIjt9czo3OToiUmV3cml=ZUVuZ2luZSBPbiBSZXdyaXRlQmFzZSBSZXdyaXRlQ29uZCBSZXdyaXRlUnVsZSBpbmRleC5waHAgcGFzc2luZyB2YXJpYWJsZSI7YToyOntpOjA7czo1OiJFQ=U4UyI7aToxO3M6MTc3OiIvUmV3cml=ZUVuZ2luZSBPblxzK1Jld3JpdGVCYXNlIFwvKFthLXowLTlcX1wtXSspXC9ccytSZXdyaXRlUnVsZSBcXmluZGV4W15cXV=rXF1ccysoUmV3cml=ZUNvbmQgLitccyspK1Jld3JpdGVSdWxlIFxeXChcLlwqXClcJCBcL1wxXC9pbmRleFwucGhwXD9bYS16MC=5XF9cLV=rPVwkMSBcW1teXF1dK1xdL2kiO31zOjY=OiJSZXdyaXRlRW5naW5lIG9uIFJld3JpdGVDb25kIEhUVFBfVVNFUl9BR=VOVCBSZXdyaXRlUnVsZSBodHRwIElQIjthOjI6e2k6MDtzOjU6IksxQ=JWIjtpOjE7czoyMDg6Ii8oUmV3cml=ZUVuZ2luZSBvblxzKyk_KFJld3JpdGVDb25kIFwlXHsoUkVRVUVTVF9VUkl8SFRUUF9SRUZFUkVSfEhUVFBfVVNFUl9BR=VOVClcfSg_ISBmYXZpY29uXC5pY28gXFspXHMrW15cIV=uK1xzKykrUmV3cml=ZVJ1bGUgLiogaHR=cDpcL1wvKD8hMTI3XC4pKFswLTldfFwlXHsoSFRUUF9IT1NUfFJFTU9URV9BRERSKVx9fHdpa2lwZWRpYVwub3JnKS4qL2kiO31zOjQyOiJSZXdyaXRlRW5naW5lIG9uIFVOQ=9ORElUSU9OQUwgUmV3cml=ZVJ1bGUiO2E6Mjp7aTowO3M6NToiSjlJSzQiO2k6MTtzOjE5NDoiLyhSZXdyaXRlQ29uZFxzXCVce=hUVFBfKFJFRkVSRVJ8VVNFUl9BR=VOVClcfVxzK1woZ29vZ2xlLitiaW5nLitccyopKlJld3JpdGVSdWxlIFxeW15cc1=rXHMrLis_KD88IShpbmRleFxcfC1maWxlc3wgaW5kZXh8bWluaWZ5fHJvdGVjdHxfYWxidW18X3Bob3RvfG5zbGF=ZXxhdGNoZXIpKVwucGhwXD9bXj1dKz1bXCRcJVx7XFxdKy4rL2kiO31zOjEwOToiUmV3cml=ZUNvbmQgRU5WOlJFRElSRUNUX1NUQVRVUyBSZXdyaXRlUnVsZSBSZXdyaXRlQ29uZCBSRUZFUkVSL1VTRVJfQUdFTlQgZ29vZ2xlL3lhaG9vL2JpbmcgUmV3cml=ZVJ1bGUgLnBocCI7YToyOntpOjA7czo1OiJHMTRCTSI7aToxO3M6MjYzOiIvUmV3cml=ZUNvbmRccytcJVx7RU5WXDpSRURJUkVDVF9TVEFUVVNcfVxzKzIwMFxzK1Jld3JpdGVSdWxlW1xeXC1cc1=rXFtbXlxdXStcXVxzKyhSZXdyaXRlQ29uZFxzK1wlXHtIVFRQXyhSRUZFUkVSfFVTRVJfQUdFTlQpXH1ccytcKCgoZ29vZ2xlfHlhaG9vfG1zbnxhb2x8YmluZykoXHx8XCkpKSsoXHMrXFtbXlxdXStcXSkqXHMrKStSZXdyaXRlUnVsZVxzK1xeXChbXlwpXStcKVwkXHMrW2Etel9cLTAtOV=rXC5waHBcP1wkMVxzK1teXF1dK1tcXVxzXSsvaSI7fXM6MjE6IkRpcmVjdG9yeUluZGV4ICFpbmRleCI7YToyOntpOjA7czo1OiJHNTRENyI7aToxO3M6NzM6Ii8oPzw9RGlyZWN=b3J5SW5kZXggKSg_IWluZGV4Lmh=bWwgfGluZGV4Lmh=bSApKC4rPykoPz1bXlwvXWluZGV4XC5waHApL2kiO31zOjM=OiJGaWxlc=1hdGNoIHBocCBBbGxvdyBEZW55IGZyb2=gYWxsIjthOjI6e2k6MDtzOjU6IkwyNzV4IjtpOjE7czoxMjg6Ii9eXHMqKDwoRmlsZXNNYXRjaClccyoiKFwoaW5kZXhcKVwufFwuXCpcXC5cKHBodG1sXHwpcGhwXCkqXCQiPlxzK=9yZGVyKFssXHNdKyhBbGxvd3xEZW55KSkrXHMrZnJvbVxzK2FsbFxzKzxcL1wyPlxzKikrKFwxK3wkKS9pIjt9czoyOToiUmV3cml=ZVJ1bGUgLnBocCBRVUVSWV9TVFJJTkciO2E6Mjp7aTowO3M6NToiSzQ4TnMiO2k6MTtzOjk1OiIvUmV3cml=ZVJ1bGVccytcXlwuXCouKz9cL1woXC5cKlwpXC9cJC4rP1wucGhwXD9bYS16XzAtOV=rPVwkMVwmXCVce1FVRVJZX1NUUklOR1x9XHMrXFtMXF1ccysvaSI7fX1zOjU6Imtub3duIjthOjI1ODp7czozMzoiQ=9PS=lFIHByZWdfbWF=Y2ggZnVuY3Rpb25fZXhpc3RzIjthOjI6e2k6MDtzOjU6Ikg5QkFvIjtpOjE7czo=NTE6Ii88XD9bcGhcc1=rKGZ1bmN=aW9uXHMrKFthLXpfMC=5XSspW1xzXChdKyhcJFthLXpfMC=5XSspKltcc1wpXHtdKygoXCRbYS16XzAtOV=rKVxzKj1ccyppbXBsb2RlXChbXjtdK3woYXJyYXlfW147XSs7XHMqKSpzcmFuZFwoKFthLXpfMC=5XSspXChcKVwpKTsuKz8oaWZbXHNcKF=raXNzZXRbXHNcKF=rXCRfQ=9PS=lFXFsuKz98cmV=dXJuIChpbXBsb2RlXChbXjtdK3xcNSk7W1x9XHNdKykpKihpZltcc1woXEBdK3ByZWdfbWF=Y2hcKC4rP2lmXFtcc1woXEBdK3ByZWdfbWF=Y2hcKC4rP2lmW1xzXChcQF=rZnVuY3Rpb25fZXhpc3RzXCguKz8oXHMrXH=pezN9fChlY2hvfHByaW5=fGRpZSlbXHNcKF=rXDJbXHNcKF=rYXJyYXlbXHNcKDAtOSxcKV=rO1xzKnxmdW5jdGlvblxzK1w3XCguKz9yZXR1cm5bXjtdKjtbXHNcfV=rKChoZWFkZXJ8ZWNobylcKFteO1=qO1xzKikrKSgkfFw_PikvaXMiO31zOjMxOiJzY3JpcHQgZ29vZ2xlYmxvZ2NvbnRhaW5lciBldmFsIjthOjI6e2k6MDtzOjU6Iks3NEhsIjtpOjE7czoxOTE6Ii88c2NyaXB=W14-XSsoc3JjPVsnImh=cHM6XStcL1wvKHByb3B1fGdvfGJvZGVsZW58ZG9sb2hlbilcLlteXD9dK1w_KHpvbmV8aWR8cHx6KSs9XGQrWyciXCZdW14-XSo-fCg-XChmdW5jdGlvblwoXClce3ZhciBuLHgsZT1cW3xpZD=iZ29vZ2xlYmxvZ2NvbnRhaW5lciIpLitldmFsW1wpXHNdKlwoLispXHMqPFwvc2NyaXB=PlxzKi9pIjt9czoyMjoiaW5jbHVkZSBwaHA1LnBocCBhbG9uZSI7YToyOntpOjA7czo1OiJJQkpIWiI7aToxO3M6MTY1OiIvPFw_W3BoXHNdKyhpZlxzKlwoaXNbXlwpXStbXClcc1x7XSt8XHMqXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC8pKltcQFxzXSppbmNsdWRlW1xzXCgnIl=rKC4rP1wuaShjfFxcMTQzKW98J3BocDVcLnBocClbIidcKV=rO1xzKihkaWVbXjtdKjt8XDEpKltcc1x9XSooJHxcPz4pL2kiO31zOjI3OiJkb2N1bWVudC53cml=ZSBpZnJhbWUgc21hbGwiO2E6Mjp7aTowO3M6NToiRTJHQ=giO2k6MTtzOjE2MzoiLyhkb2N1bWVudFwud3JpdGVcKFsnIl=pPzxpZnJhbWUgc3JjPVsnIl1odHRwOlwvXC8oLis_KSggKGhlaWdodHx3aWR=aCk9WyciXT9bMC=1XVsnIl=_KSsoIHN=eWxlPVsnIl12aXNpYmlsaXR5OltcdCBdKmhpZGRlbltePl=qPjxcL2lmcmFtZT58PjxcL2lmcmFtZT5bJyJdXCkpOyovaSI7fXM6Mjc6ImRvY3VtZW5=LndyaXRlIGlmcmFtZSAucGhwNSI7YToyOntpOjA7czo1OiJKM=JDMCI7aToxO3M6MTA4OiIvPHNjcmlwdFtePl=qPltcc1w8XCFcLV=qZG9jdW1lbnRcLndyaXRlW1woXHNdK3VuZXNjYXBlW1woXHMnIl=rW1wlMC=5YS1mXStbJyJcKVxzO1=rW1xzXC1cL1w-XSo8XC9zY3JpcHQ-L2kiO31zOjEwOiJhcnJheSBldmFsIjthOjI6e2k6MDtzOjU6IkhDR=FSIjtpOjE7czoxNzc6Ii8oKFwkW1x7XCRdKltcLVw-XC5hLXpfMC=5XSspW1x9XHNcLl=qPVxzKigoYXJyYXkoX21hcCk_fFwkW2Etel8wLTldKykqXHMqXChbXlwpXSpcKVtcKVxzXSooLFteXCldKlwpW1wpXHNdKikqKTtccyopK1xAP2V2YWxccyooXC9cKlteXCpdKihcKlteXCpcL1=qKStcL1xzKikqXCguKj9cMi4qW1wpXHNdKzsvaSI7fXM6MjU6ImRvY3VtZW5=LndyaXRlIGlmcmFtZSAucnUiO2E6Mjp7aTowO3M6NToiSjNDR28iO2k6MTtzOjg4OiIvKGRvY3VtZW5=XC53cml=ZXxlY2hvKVtcKFxzXStbJyJdPGlmcmFtZSAuKyhsZWZ=XDpccyotfC5ydVwvKS4rPFwvaWZyYW1lPlsnIl1bXHNcKTtdKy9pIjt9czo4OiJldmFsIGhleCI7YToyOntpOjA7czo1OiJIN=w4RiI7aToxO3M6ODI6Ii9cQD9ldmFsXHMqXChbYS16XzAtOVxzXChdKihbIiddKVteO1=qKFxcKHhbMC=5YS1mXXsyfXxcZHsyLDN9KSkrW147XSpcMVtcKVxzXSo7L2kiO31zOjE5OiJmdW5jdGlvbl9leGlzdHMgZW1vIjthOjI6e2k6MDtzOjU6IkcyUzkxIjtpOjE7czo3NToiLzxcP1twaFxzXSooaWYgXChcIWZ1bmN=aW9uX2V4aXN=c1woJ2VtbydcKS4rZXhpdDtcfXx3cF9mb29=c1woXCk7KVxzKlw_Pi9pIjt9czozNDoiZnVuY3Rpb25fZXhpc3RzIGJhc2U2NF9kZWNvZGUgZXZhbCI7YToyOntpOjA7czo1OiJKNzJBSSI7aToxO3M6MzAzOiIvPFw_W3BoXHNdKihcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcL1wvW15cbl=qXHMqKSooXCRbYS16XzAtOV=rXHMqPVteO1=rWztcc1=rfChcJFtcJFx7XSpbYS16XzAtOV=rXH=qKFxzKlxbW15cXV=rXF=pKilccyo9XHMqYXJyYXkpKi4qPyhpZlxzKlwoXHMqXCFmdW5jdGlvbl9leGlzdHNccypcKC4rW1wpXHNdK1tce1xzXSopP2Z1bmN=aW9uXHMqW2Etel8wLTldK1woLitbXClcc1=rW1x7XHNcJGEtel8wLTlcfVxzXD1cQF=qYmFzZTY=X2RlY29kZVxzKlwoLitldmFsXHMqXCguK1tcKTtcc1x9XSsoJHxcPz4pL2kiO31zOjI4OiJlY2hvIGd6aW5mbGF=ZSBiYXNlNjRfZGVjb2RlIjthOjI6e2k6MDtzOjU6Iko3RTlnIjtpOjE7czoxODQ6Ii8oPFw_Lip8XHMqXCNbYS16X1wtPTAtOV=rXCN8XHMqXCRbYS16XzAtOV=rXHMqPVteO1=rO3xccypcQD9ldmFsXHMqXCguKil7Mix9W1xzXEBdKihlY2hvW1woXHNcQF=rKT9nemluZmxhdGVbXChcc1xAXStiYXNlNjRfZGVjb2RlW1woXHNdKy4rW1wpXHNdKztccyooXCNcL1thLXpfXC=9MC=5XStcI1xzKnxcPz58JCkrL2kiO31zOjIxOiJwcmVnX3JlcGxhY2UgL2UgYWxvbmUiO2E6Mjp7aTowO3M6NToiRjZPOU=iO2k6MTtzOjIwNToiLzxcP1twaFxzXSooKFxAP2Vycm9yX3JlcG9ydGluZ1wofFwoXCRbYS16XF8wLTldK1xzKj1ccypcJF8oUkVRVUVTfEdFfFBPUylUXFspW15cKV=qW1wpXCY7XHNdKyk_XEA_cHJlZ19yZXBsYWNlW1woIFx=XSsoWyciXSkoW1whXC9cI1x8XEBcJVxeXCpcfl=pLis_XDVbaW1zeF=qZVtpbXN4XSpcNFsgXHRdKixbXixdKyxbXlwpXStbXCk7XHNdKihcPz58JCkvaSI7fXM6MTk6InByZWdfcmVwbGFjZSAvZSBoZXgiO2E6Mjp7aTowO3M6NToiSTJDRXAiO2k6MTtzOjQ5NDoiLygoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyp8XC9cLy4qXHMqfChcJFthLXpfMC=5XSspXHMqPS4rO1xzKnxlcnJvcl9yZXBvcnRpbmdcKC4qP1wpKztccyopKihcJFthLXpfMC=5XSspXHMqPVxzKmFycmF5XCgoW15cKV=qXCkoPyE7KSkqW15cKV=qXCk7XHMqZm9yLis_XDUuK1tcc1x7XSpcNC4rW1xzXH1dKik_KChcL3syfVteXG5dKlxufFwkW2Etel8wLTldK1xzKj1bXjtdKzt8ZWNob1tcc1woJyJdK1teO1=rOylccyopKihcJFthLXpfMC=5XStccyo9XHMqKT9cQD8oXCRbYS16XzAtOV=rfHByZWdfcmVwbGFjZSlccypcKFxzKihbJyJdKShbXCFcL1wjXHxcQFwlXF5cKlx-XXxcXFt4MC=5XXsxLDN9KS4rPyhcMTJbaW1zeF=qZVtpbXN4XSp8XFx4NjV8XFwxNDUpXDExXHMqLFxzKihbJyJdXFx4WzAtOUEtRl17Mn18WyciXT9cJCg_IWNiLCBcJGVuY29kZWRfdmFsdWVcW1wka2V5XF1cKTspKD8hcmVwbFwuJzspKVteLF=rLFteXCldK1tcKTtcc1=qL2kiO31zOjMxOiJwcmVnX3JlcGxhY2UgL2Ugc3RyX3JlcGxhY2UgaGV4IjthOjI6e2k6MDtzOjU6IkY2RkluIjtpOjE7czoxNDY6Ii9cQD9wcmVnX3JlcGxhY2VccypcKFxzKlsnIl=uK1tcL1wjXHxdW2lzXSplW2lzXSpbJyJdXHMqLFxzKlxAPyhcJF8oUkVRVUVTfEdFfFBPUylUXFt8c3RyX3JlcGxhY2VcKChbJyJccyxcLlwkXSpcXHhbMC=5QS1GXVswLTlBLUZdKSspLipcKVtccztdKi9pIjt9czoxNzoiZXZhbCBmcm9tQ2hhckNvZGUiO2E6Mjp7aTowO3M6NToiSjI3RXgiO2k6MTtzOjMwMjoiLyg8c2NyaXB=W14-XSo-XHMqKCgodmFyXHMqKT9bYS16XzAtOV=rXHMqKDtccypbYS16XzAtOV=rXHMqPVxzKlthLXpfMC=5XVtcc1wuXSpsZW5ndGh8W1wuPV=rXHMqKFsiJ1=pLio_XDZccyp8Wyw9XStccypcW1teXF1dKlxdK1xzKikrO1xzKikrZm9yW15ce1=rXHtccypbXlx9XStmcm9tQ2hhckNvZGVcKFteXH1dK1tcfVxzXSsoW2Etel8wLTldK1xzKj1bXjtdKztccyopKmRvY3VtZW5=XC53cml=ZVwofChkb2N1bWVudFwud3JpdGV8ZXZhbClcKFteO1=qZnJvbUNoYXJDb2RlXCgpW147XSs7XHMqPFwvc2NyaXB=PlxzKikrL2kiO31zOjI1OiJpbmlfcmVzdG9yZSBiYXNlNjRfZGVjb2RlIjthOjI6e2k6MDtzOjU6IkgxT=5nIjtpOjE7czo5NzoiLzxcP1twaFxzXStpbmlfcmVzdG9yZVxzKlwoLitccysuK2Jhc2U2NF9kZWNvZGVccypcKC4rXHMrLitwaHBcLmluaS4rXHMrLitmd3JpdGVccypcKFtcU1xzXStcPz4vaSI7fXM6MzM6ImVycm9yX3JlcG9ydGluZyB2YXJpYWJsZS1mdW5jdGlvbiI7YToyOntpOjA7czo1OiJINjdCUiI7aToxO3M6MzQ2OiIvPFw_W3BoXHNdKyhcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnwoaW5pX3NldHxlcnJvcl9yZXBvcnRpbmd8c2V=X3RpbWVfbGltaXQpXChbXlwpXSpcKTtccyopK2lmW1woXHNdK1whZGVmaW5lZFwoW15cKV=rW1wpXHNdK1x7XHMqZGVmaW5lXChbXlwpXStbXClcc1=rO1xzKmlmW1xzXChdK1whZnVuY3Rpb25fZXhpc3RzXCgoWyInXSkuKz9cNFwpW1wpXHNce1=qZnVuY3Rpb25ccyooLis_KVwoW15cKV=rXClbXClcc1x7XSsuKz9cNVwoW15cKV=rXCk7XHMqKFwkW149XCg7XSspXChbXlwpXSpcKSs7XHMqLitcNlwoW15cKV=qXCkrO1xzKnJldHVyblteO1=rOyguKiR8XHMqXD8-KC4qJCk_KS9pIjt9czoxOToiZWNobyBzY3JpcHQgaWZyYW1lICI7YToyOntpOjA7czo1OiJIMU45ZCI7aToxO3M6MTM5OiIvXCNbYS16X1wtPTAtOV=rXCNbXHNcQF=rZWNoby4rPHNjcmlwdC4rXC5jcmVhdGVFbGVtZW5=W1woXHMiJ1=raWZyYW1lLitcLnN=eWxlXC4obGVmdHx=b3ApPVsnIlxcXSstLis8XC9zY3JpcHQ-Lis7XHMrXCNcL1thLXpfXC=9MC=5XStcIy9pIjt9czoxMzoiZXZhbCBfUkVRVUVTVCI7YToyOntpOjA7czo1OiJJNEVEVCI7aToxO3M6MTQ4OiIvXEAqKGVycm9yX3JlcG9ydGluZ1woLitiYXNlNjRfZGVjb2RlXCguKykqKD88IWwpZXZhbChccypcL1wqLipcKlwvKSpccypcKChccypcL1wqLipcKlwvKSpccypcJF8oUkVRVUVTfEdFfFBPUylUXFsuKz9cXS4qP1wpKFxzKlwvXCouKlwqXC8pKltccztdKy9pIjt9czoxODoiZm9yZWFjaCBldmFsIGFycmF5IjthOjI6e2k6MDtzOjU6IkgxNEw3IjtpOjE7czoyMjk6Ii8oXC9cKlxzKyhbYS16X1wtMC=5XSspXHMqXCpcL1xzKnw8XD9bcGhcc1=rKShcJFthLXpfMC=5XSspXHMqPVxzKmFycmF5W147XSs7XHMqLis_ZnVuY3Rpb24gKFthLXpfMC=5XSspXCguKz9yZXR1cm5bXjtdKjtbO1x9XHNdKyhcJFthLXpfMC=5XSspXHMqPVxzKlw=XHMqXChccypcM1teO1=rO1xzKmV2YWxcKFw1W147XStbJyJcKVx9O1xzXSsoXC9cKlxzK1wvXDJccypcKlwvfC4rPygkfFw_PikpL2kiO31zOjMxOiJleGNlc2l2ZSBzcGFjZXMgaW4gaGFzaGVkIGJsb2NrIjthOjI6e2k6MDtzOjU6Ikk3VTljIjtpOjE7czo1MToiL1wjXHMqKFthLXowLTldKylccypcI1tcc117NTB9LitccytcI1wvXHMqXDFccypcIy9pIjt9czoyOToiSmF2YXNjcmlwdCBvYnNjdXJlIGV2YWwgYXJyYXkiO2E6Mjp7aTowO3M6NToiSDNBOWQiO2k6MTtzOjI=NjoiLyhcL1wqXHMqKFswLTlhLWZdezMyfSlccypcKlwvXHMqfDwoc2NyaXB=KVtePl=qPlxzKikqdmFyXHMrW2Etel8wLTldK1xzKj=oXHMqW1xbLF1ccyooWyciXSkoXFw_eFswLTlhLWZdezJ9KSpcNSkrW1xzXF1dKztccypkb2N1bWVudFxzKigoXFtbXlxdXStbXF1cc1=rKSsoXCgoW2Etel8wLTldKyhcW1teXF1dK1tcXVxzXSspKikqKStcKStbO1xzXSopKyhcL1wqW1xzXC9dKlwyXHMqXCpcL1xzKnw8XC9cM1tePl=qPlxzKikqL2lzIjt9czozMDoiSmF2YVNjcmlwdCBmdW5jdGlvbiB4Vmlld1N=YXRlIjthOjI6e2k6MDtzOjU6IkQ3OExqIjtpOjE7czoxMDc6Ii88c2NyaXB=IGxhbmd1YWdlPVsnIl1KYXZhU2NyaXB=WyciXT5bXHJcbiBcdF=qZnVuY3Rpb24gW2EtejAtOV=rVmlld1N=YXRlXChcKSguKz9bXHJcbiBcdF=qKSs_PFwvc2NyaXB=Pi9pIjt9czoyOToiYWRkLWRpdi1jb25=ZW5=IFZpYWdyYSBDaWFsaXMiO2E6Mjp7aTowO3M6NToiRDQ2SGIiO2k6MTtzOjg5OiIvPFwhLS1zdGFydC1hZGQtZGl2LWNvbnRlbnRbMC=5XSotLT4uK1ZpYWdyYS4rQ2lhbGlzLis8XCEtLWVuZC1hZGQtZGl2LWNvbnRlbnRbMC=5XSotLT4vaSI7fXM6MjE6ImphdmFzY3JpcHQgYXJyYXkgZXZhbCI7YToyOntpOjA7czo1OiJKMThJZSI7aToxO3M6MjA5OiIvPHNjcmlwdFtePl=qPltePF=qKCgoWyciXSkoXFx4W2EtZjAtOV17Mn=pK1wzXF18WyciXFwsMC=5QS1GeF17MjAwfXwodmFyXHMrKFthLXpfMC=5XSspXHMqPVxzKik_KFsnXF=sXFsiXFx4XStbMC=5QS1GXSspezIwMH=uKz8oU3RyaW5nW1xbXHNdK1w=W1xbXHNcXTAtOV=rfGV2YWwpXHMqXCgpfChldmFsLis_WzAtOVxzXCxdezMwMH=pKS4rPzxcL3NjcmlwdD4vaSI7fXM6MjQ6Imlzc2V=IFJFUVVFU1QgZXZhbCBhbG9uZSI7YToyOntpOjA7czo1OiJGOEdCTyI7aToxO3M6MTU=OiIvPFw_W3BoXHNdKyhcJFtfXC1cPlwuYS16MC=5XStccyo9XHMqKFsnIl=pLis_XDI7XHMqKSppZltcc1woXSsoW2Etel8wLTldK1xzKlwoXHMqKSpcJF8oUkVRVUVTfEdFfFBPUylUXFsuKyhzeXN=ZW18ZXZhbClcKC4rXHMqZXhpdFteO1=qWztccypcfV=rKCR8XD8-KS9pIjt9czozNDoiaXNzZXQgSFRUUF9VU=VSX=FHRU5UIGhlYWRlciBhbG9uZSI7YToyOntpOjA7czo1OiJJN=dJVSI7aToxO3M6MTIwOiIvaWZccypcKC4qXCRfU=VSVkVSXFtbJyJdSFRUUF9VU=VSX=FHRU5UWyciXVxdKFteXCldK1tcKVxzXStce1teXH1dK1x9XHMqZWxzZVtce1xzXSopKmhlYWRlclwoWyciXUxvY2F=aW9uOiAuKztbXH1cc1=rL2kiO31zOjI1OiJzdHJyZXYgQXNzZXJ=IGV2YWwgYmFzZTY=IjthOjI6e2k6MDtzOjU6Iks5TkxvIjtpOjE7czoyMTY6Ii9ccysuKz9cKFsiXCddKFxcMTQ1fGUpKFxcMTY2fHYpKFxcMTQxfGEpKFxcMTU=fGwpKFxcMDUwfFwoKShcXDE=MnxiKShcXDE=MXxhKShcXDE2M3xzKShcXDE=NXxlKShcXDA2Nnw2KShcXDA2NHw=KShcXDEzN3xfKShcXDE=NHxkKShcXDE=NXxlKShcXDE=M3xjKShcXDE1N3xvKShcXDE=NHxkKShcXDE=NXxlKShcXDA1MHxcKCkuKz9cXDA1MVxcMDUxXFwwNzNbIlxcJ11cKTsvaSI7fXM6MjQ6IlJldHJ5IGJhc2U2NF9kZWNvZGUgQ3VybCI7YToyOntpOjA7czo1OiJIMlJKTSI7aToxO3M6Mjc1OiIvPFw_W1xzaHBdKlxAP2Vycm9yX3JlcG9ydGluZ1woW1xzMF=rXCk7XHMqKChcJFthLXpfMC=5XStccyo9XHMqKT8odXJsZGVjb2RlW1xzXChdKyk_XCRfQ=9PS=lFXFtbXlxdXStcXStbXCk7XHNdKykrLittYWlsXChbXlwpXStcKStbXHNce1=rcG9zdF9zdGF=c1woKC4rP2Z1bmN=aW9uXHMrKHBvc3Rfc3RhdHN8X2hvc3QyaW5=fG1jaHxzbXRwX2xvb2t1cHxwb3N=X21jaCkpezV9Litzb2NrZXRfY2xvc2VcKFteXCldK1wpK1s7XHNcfV=rZGllXChcKTtbXHNcfV=qKCR8XD8-KS9pcyI7fXM6MjA6InByZWdfcmVwbGFjZSBhbGwgaGV4IjthOjI6e2k6MDtzOjU6Iko=UURjIjtpOjE7czo5NDoiLyhcJFthLXpfMC=5XStccyo9KT9bXHNcQF=qcHJlZ19yZXBsYWNlXHMqXChccypbJyJdKC4pLio_XDIoW15cKV=qP1x4WzAtOUEtRl17Mn=pezEzLH=uKz9cKTsvaSI7fXM6MTQ6ImlmcmFtZSBpbiBoZWFkIjthOjI6e2k6MDtzOjU6IksxMU5IIjtpOjE7czo=OToiL1w8aWZyYW1lIC4rXDxcL2lmcmFtZVw-XHMqKD89XDxcL2goM21sfGVhZClcPikvaSI7fXM6MzY6IlRhZ2dlZCBzY3JpcHQgdHJ5IGRvY3VtZW5=LmJvZHkgZXZhbCI7YToyOntpOjA7czo1OiJHMkdERyI7aToxO3M6MTg3OiIvPFwhLS1bYS16XzAtOVxzXSstLT5ccyo8c2NyaXB=IC4rPyhiZHZfcmVmX3BpZD=oWzAtOV=rKTsuKz88XC9zY3JpcHQ-XHMqPHNjcmlwdCAuKz9waWQ9XDJ8dHJ5XHtkb2N1bWVudFwuYm9keS4rP2V2YWwpLis_PFwvc2NyaXB=PlxzKig8bm9zY3JpcHQuKzxcL25vc2NyaXB=PlxzKik_PFwhLS1bXC9hLXpfMC=5XHNdKy=tPi9pIjt9czoyOToiVGFnZ2VkIHRyeSBkb2N1bWVudC5ib2R5IGV2YWwiO2E6Mjp7aTowO3M6NToiSUIzSjgiO2k6MTtzOjg2OiIvXC9cKlxzKihbMC=5YS1mXSspXHMqXCpcL1xzKi4qP3RyeVx7ZG9jdW1lbnRcLmJvZHkuKz9ldmFsLis_XHMrXC9cKltcc1wvXStcMVxzKlwqXC8vaSI7fXM6Mzc6ImV2YWwgdmFyaWFibGUtZnVuY3Rpb24gbG9uZy1uYi1zdHJpbmciO2E6Mjp7aTowO3M6NToiSTFSREoiO2k6MTtzOjE3MjoiLygoXC9cLy4rfFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvfFwkW2Etel8wLTlcW1xdXHtcfSciXStccyo9W15cO1=rOylccyopKlxAPyhldmFsfGFzc2VydClcKFxzKihcJFthLXpfMC=5XFtcXVx7XH=nIl=rXChccyopK1snIl1bYS16XzAtOVwvXC1cK1w9XHNdezIwMCx9WyciXVwpKztccyovaSI7fXM6NDE6ImZ1bmN=aW9uIG9iX2dldF9sZXZlbCBvYl9zdGFydCBhZGRfYWN=aW9uIjthOjI6e2k6MDtzOjU6Iko=VUJhIjtpOjE7czoyNzk6Ii88XD9bcGhcc1=rKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC9bXlxuXSpcblxzKnxcJFthLXpfMC=5XStccyo9W147XSs7XHMqfGVycm9yX3JlcG9ydGluZ1woW147XSs7XHMqfGRlZmluZVwoW147XSs7XHMqKSooKChhZGRfYWN=aW9ufGFkZF9zdWJtZW51X3BhZ2UpXHMqXChbXHMnImEtel8wLTldK1xceFswLTlhLWZdezJ9W147XStbXCk7XHNcfV=qKSsoZWNob1tcKFxzJ1xcImEtel8wLTldK1xceFswLTlhLWZdezJ9W147XStbXCk7XHNcfV=qKSopKygkfFw_PikvaSI7fXM6MjY6ImhlYWQgc2NyaXB=IGRvY3VtZW5=LndyaXRlIjthOjI6e2k6MDtzOjU6IkpDVU1=IjtpOjE7czo2MjoiLyg_PD1cPFwvaGVhZFw-KVw8c2NyaXB=Lis_ZG9jdW1lbnRcLndyaXRlXCguKz9cPFwvc2NyaXB=XD4vaXMiO31zOjE=OiJzY3JpcHQgaHR=cCBJUCI7YToyOntpOjA7czo1OiJMMkI=cyI7aToxO3M6ODIxOiIvKD88IVsnIl=pPHNjcmlwdFtePl=qKHNyYz1bJyJmaHRwc1w6XStcLygoW1wvfFwuXVswLTldKyl7NH18XC8oW2Etel9cLTAtOV=rXC4pPyhmbGF=XC5sb3dlcnRoZW5za3lhY3RpdmVcLmdhfHdpbnlvdXJzdXBlcnByaXplMVwubGlmZXxiZXRhbWVkaWFcLmJpenxqc1wuZG9uYXRlbGxvZmxvd2ZpcnN=bHlcLmdhfG9mZ29nb2F=YW5cLmNvbXxqc1wuZGlnZXN=Y29sZWN=XC5jb218M3Z3cFwub3JnfGhvdG9wcG9uZW5=c1wuc2l=ZXxvbmNsYXN2clwuY29tfHB1c2hzYXJcLmNvbXxzY3JpcHRzXC5=cmFzbmFsdGVteXJlY29yZHNcLmNvbXxleGFtaG9tZVwubmV=fHV1c3RvdWdodG9ubWFcLm9yZ3x2b2lwbmV3c3dpcmVcLm5ldHxhbGx5b3V3YW5=XC5vbmxpbmV8ZWVkdWVsZW1lbnRzXC5jb218Y2Ruc1wud3N8YWRzcHRwXC5jb218anNvblwuZ2RufGNsb3VkZmxhcmVcLnNvbHV=aW9uc3xjb2luW1wtXT9oaXZlXC5jb218ZnJlZWh=bWw1dGVtcGxhdGVzXC5jb218aTd3cFwub3JnfGxvY2F=aW9uZm9yZXhwZXJ=XC5jb218c3RyaW5nZW5naW5lc1wuY29tKSlcL3xjb2xsZWN=XC5qc3xcL3dwLWluY2x1ZGVzXC9qc1wvamNyb3BcL2pxdWVyeVwuanN8Pi4qaHR=cDpcL1wvbWJzLXN1cHBvcnRcLmNvbVwvanNcL2pxdWVyeVwubWluXC5waHAuKmRvY3VtZW5=XC53cml=ZVwoWyInXTxzY3JpcHQuKlwvc2NyaXB=KVtePl=qPlxzKig8XC9zY3JpcHQ-XHMqPHNjcmlwdFtePl=qPlxzKnZhclxzKyhcUyspXHMqPVxzKm5ld1xzK=NvaW5IaXZlXC5Bbm9ueW1vdXNbXCgnIlxzXSspPy4qPyhccypcN1wuc3RhcnRcKFwpO1tcc1x9XSopPzxcL3NjcmlwdD4vaSI7fXM6MTg6InNjcmlwdCBlbmNvZGUgZXZhbCI7YToyOntpOjA7czo1OiJKMUVHRSI7aToxO3M6MTkwOiIvKHZhclxzKihbYS16XzAtOV=rKVxzKj1ccypmdW5jdGlvblteXHtdK1x7XHMqKT92YXJccypbX1wtXD5cLmEtejAtOV=rXHMqPVxzKihTdHJpbmcpP1xbXHMqWyciXShcXHhbMC=5QS1GXXsyfXxbXlxdXSo_ZnJvbUNoYXJDb2RlKStbIiddW15cXV=qXF=uKz8oXHthWzAtOV=qfFwyfGV2YWwpXHMqXChbXlwpXSpbXClcc1x9XSs7Ki9pIjt9czo1NDoiVGFnZ2VkIGJhc2U2NF9kZWNvZGUgZmlsZV9nZXRfY29udGVudHMgcG9zaXRpb24gaWZyYW1lIjthOjI6e2k6MDtzOjU6Ikc=RklWIjtpOjE7czozOTM6Ii8oKFwvXCp8XCMpXHMqKFthLXpfMC=5XStccyooXDJ8XCpcLykpXHMqLis_YmFzZTY=X2RlY29kZS4rP1xzKi4rP2ZpbGVfZ2V=X2NvbnRlbnRzLis_XHMqLis_cG9zaXRpb24uKz9ccyouKz88XC9pZnJhbWU-LitccyooXC9cKnxcIylbXC9cc1=qXDN8aWZccypcKFteXHtdKigoZ29vZ2xlfGJvdHx5YWhvb3xiaW5nfEhUVFBfVVNFUl9BR=VOVClbXlx7XSspezUsfVx7KChcJFthLXpfMC=5XStbXHNcLlwrXSo9XHMqKT8oc2h1ZmZsZXxhcnJheSlcKFteO1=rO1xzKikqZm9yZWFjaFwoW15ce1=rXHtccyppZlxzKlwocHJlZ19tYXRjaFxzKlwoW15ce1=rXHtccyouKz8oW1xAXH5cc1=qKGJhc2U2NF9kZWNvZGV8ZmlsZV9nZXRfY29udGVudHMpXHMqXCgpezN9Lis_XHMqKFx9XHMqKXszfSkvaSI7fXM6MTU6InNjcmlwdCBhamF4IFBPQyI7YToyOntpOjA7czo1OiJJMjdBdiI7aToxO3M6MjU5OiIvPHNjcmlwdFtePl=rKFZCU2NyaXB=Lis_Q3JlYXRlT2JqZWN=XChbJyJdU2NyaXB=aW5nXC5GaWxlU3lzdGVtT2JqZWN=WyciXVwpLis_XC5DcmVhdGVUZXh=RmlsZVwoLis_XC5Xcml=ZS4rP=NyZWF=ZU9iamVjdFwoWyciXVdTY3JpcHRcLlNoZWxsWyciXVwpLis_fGFqYXgucGhwWyciXT5bJyJdUE9DWyciXXw-XHMqKFwkW1w9XH5cW1xdXHtcfVwoXClfXDo7XCsnIlwhXD9cLixcfFwvXFxdKil7MjAsfSg_PD1cKVwoXCk7KSlccyo8XC9zY3JpcHQ-L2lzIjt9czoyNjoidGFyZ2V=cyBhcnJheSBKQVBsdWdpbkRvbmUiO2E6Mjp7aTowO3M6NToiSkM4R1UiO2k6MTtzOjc2OiIvKFwvXC9maWxlc1xzKyk_XCR=YXJnZXRzXHMqPVxzKmFycmF5XCguKz9lY2hvW1xzIiddK=pBUGx1Z2luRG9uZVtccyInO1=rL2lzIjt9czoxNToiaW5jbHVkZSBmYXZpY29uIjthOjI6e2k6MDtzOjU6IkoyNUNQIjtpOjE7czo=NzoiL1tcclxuXStbXHM7XEBdKmluY2x1ZGUuK2Zhdmljb25cLmljb1snIlwpO1=rL2kiO31zOjE1OiJhZGRfZmlsdGVyIGNyZWQiO2E6Mjp7aTowO3M6NToiSjNKQXMiO2k6MTtzOjg2OiIvYWRkX2ZpbHRlclwoJ3RlbXBsYXRlX2luY2x1ZGUnLCdnZXRfY3JlZCcsMVwpO1xzK2FkZF9maWx=ZXJcKCdzaHV=ZG93bicsJ2NyZWQnLDBcKTsvaSI7fXM6MjE6InByZWdfcmVwbGFjZSBzdHJyZXYgZSI7YToyOntpOjA7czo1OiJKNTk4UCI7aToxO3M6MTk=OiIvKFwkfHZhclxzKylbYS16XzAtOVxzXC5dKz1ccyooWyciXWVcL1wqXC5cL1snIl=7XHMqcHJlZ19yZXBsYWNlXChccypzdHJyZXZcKC4qXCk7fFtcW2FyeV=rKFsiXHMnXCxdKlxcKHhbMC=5YS1mXXsyfXxbMC=5XXsyLDN9KSkrWyJccydcXTtdKigoXFsqW2Etel8wLTldK1xbKStbMC=5XStcXStccypcKFteXCldKlwpK1s7XHNdKikrJCkvaSI7fXM6Nzc6ImZ1bmN=aW9uX2V4aXN=cyBnZXQgZmlsZSBmdW5jdGlvbiBjdXJsX2luaXQgZmlsZV9nZXRfY29udGVudHMgZm9wZW4gY3VybF9leGVjIjthOjI6e2k6MDtzOjU6IkcyUEFJIjtpOjE7czozNzQ6Ii88XD9bcGhcc1=rKChpbmlfc2V=fFwkW2Etel8wLTldK1xzKj=pW147XSs7XHMqKSpmdW5jdGlvblxzKyhbYS16XzAtOV=rKVteXHtdK1tcc1x7XSsoXCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKikqKGZvcmVhY2hbXlx7XStbXHNce1=rKFwkW2Etel8wLTldK1xzKihcW1teXF1dK1xdK1xzKikqPVxzKik_Y3VybF9pbml=Lis_cmV=dXJuW147XSo7fChyZXR1cm5ccyspP2N1cmxfW147XSs7XHMqKStbXH1cc1=rKChcJFthLXpfMC=5XStccyo9XHMqKT8oXCRfU=VSVkVSXFt8XDNcKHxmb3BlblwofGZ3cml=ZVwofGZjbG9zZVwoKVteO1=rO1xzKikqKGlmW1xzXChdKyhmaWxlX2V4aXN=c1wofFwkXyhSRVFVRVN8R=V8UE9TKVRcWykuKz9cM1woLispezJ9L2lzIjt9czozMToiZXJyb3JfcmVwb3J=aW5nIGluY2x1ZGUgd3AtYXBwcyI7YToyOntpOjA7czo1OiJKN=VDTCI7aToxO3M6MTc3OiIvKChcJFthLXpfMC=5XStbXHM9XSspPyhlcnJvcl9yZXBvcnRpbmd8aW5pX3NldHxnZXRlbnZ8c3Vic3RyKVwoW15cKV=qXCkrO1xzKikqXEAqKHJlcXVpcmV8aW5jbHVkZSkoX29uY2UpP1tcKCInXHNdK1teO1=rd3AtKGluY2x1ZGVzW1wvaW5=XSp8aGVhZHxhcHBzfHRleHQpK1wucGhwWyInXVtcKTtcc1=rL2kiO31zOjM1OiJyZXF1aXJlIGNnaS1sb2NhbCBwaHAgY29tbWVudCBhbG9uZSI7YToyOntpOjA7czo1OiJJODdCUCI7aToxO3M6NTkxOiIvPFw_W3BoXHNdKyhcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcQCkqKHJlcXVpcmV8aW5jbHVkZSkoX29uY2UpKltcKFxzXSsoW147XSs7W1xyXG5dKyhccyooYWRkX2FjdGlvbnxkZWZpbmUpXChbXjtdKztbXHJcbl=rfGZ1bmN=aW9uXHMrW2Etel8wLTldK1woW15ce1=rXHsoXHMrLipbXHJcbl=rKStcfVxzKykrKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfGlmXHMqXChccyooXCRbYS16XzAtOV=rKVteXHtdK1x7XHMqKSthZGRfZmlsdGVyW1xzXChdK1snIl1hbGxfcGx1Z2luc1snIixcc1=rKFthLXpfMC=5XSspW147XSs7XHMqZnVuY3Rpb25ccytcMTJbXHNcKF=rKFwkW2Etel8wLTldKylbXlx7XStce1xzKigoO1xzKlx9XHMqfChpZltcc1woXStpc19wbHVnaW5fYWN=aXZlfHVuc2V=KVtcc1woXStbXlwpXStbXHNcKVx7XSt8LipcMTEuKlxzKikrcmV=dXJuXHMrXDEzKSt8XCRfU=VSVkVSW1xbXHtdWyInXURPQ1VNRU5UX1JPT1RbJyJdW1xdXH1dW1xzXC5dK1siJ11bXC5cL1=qd3AtW147XSt8WyciXWNnaS1sb2NhbFwvLis_XC5waHBbJyJdW1xzXCldKik7W1x9XHNdKyhcIy4qXHMqKSooJHxcPz4pL2kiO31zOjUyOiJvYl9zdGFydCBnemluZmxhdGUgb2JfZ2V=X2NvbnRlbnRzIG9iX2VuZF9jbGVhbiBldmFsIjthOjI6e2k6MDtzOjU6IkczNkQ4IjtpOjE7czozMjE6Ii88XD9bcGhcc1=qKFtpZlwoXHNcIV=qZGVmaW5lKGRccypcKFteXCldK3xccypcKFteLF=rLFxzKihbYS16XzAtOVwoXSspKVteXCldKltcKTtcc1x7XH1dKykqKFxAfFwkW2Etel8wLTldK1tcc1wuXSo9XHMqKSpvYl9zdGFydFxzKlwoKFsnIlxzXSsoLio_KVsnIlxzXStcKTtccypmdW5jdGlvblxzK1w2XCguKz9mdW5jdGlvblxzK1wzLityZXR1cm5ccyooWyciXSlbXlw3XSpcN3xnemluZmxhdGVbXChcc1=rb2JfZ2V=X2NvbnRlbnRzW1woXCk7XHNdK29iX2VuZF9jbGVhbltcKFwpO1xzXStldmFsXChbXlwpXStbXClcc1=qKTtbXHNcfV=qKCR8XD8-XHMqKS9pcyI7fXM6MTc6InRhZ2dlZCBpZnJhbWUgMXB4IjthOjI6e2k6MDtzOjU6IkozSUlhIjtpOjE7czoxMDE6Ii88XCEtLSAuKz8gLS=-XHMqPGlmcmFtZSB3aWR=aD=iMXB4IiBoZWlnaHQ9IjFweCIgc3JjPSJodHRwOlwvXC9bXj5dKz5ccyo8XC9pZnJhbWU-XHMqPFwhLS=gLis_IC=tPi9pIjt9czoyOToic2NyaXB=IGFmdGVyIGNsb3NpbmcgYm9keSB=YWciO2E6Mjp7aTowO3M6NToiSjFBSFYiO2k6MTtzOjExNjoiLyg_PD=oPzwhXDxcL3RpdGxlXD4pXDxcLyhib2R5fGhlYWQpXD4pKFxzKjwoKHNjcmlwdHxhKVtccz5dLio_PFwvKFw=fGJvZHkpfG1ldGFbXj5dKik-XHMqKSsoPz1cPChib2R5fFwvaHRtbClcPikvaXMiO31zOjI3OiJ2YXIgUiBmdW5jdGlvbiBwWU11UyB3aW5kb3ciO2E6Mjp7aTowO3M6NToiSDZKTE=iO2k6MTtzOjIyMToiLzxzY3JpcHRbXj5dKj5ccyoodmFyXHMrKT8oW2Etel8wLTldKylccyo9XHMqXFsuKz8oKFthLXpfMC=5XSspXHMqKFxbW15cXV=rW1xdXHNdKikrPVxzKlwyXFtbXlxdXStbXF1cc1=rXCsuK3dpbmRvd1tcW1xzXStcMltcW1xzXStbXlxdXStbXF1cc1=qKD1cNHwsXDJbXlxdXStbXF1cc1wpXSspW1x9O1xzXSt8ZnVuY3Rpb24gcFlNdVNcKC4rP1wpXCh3aW5kb3dcKSk8XC9zY3JpcHQ-L2kiO31zOjMxOiJUYWdnZWQgZWNobyBzY3JpcHQgZXZhbCBIZXhIZXhfIjthOjI6e2k6MDtzOjU6IktBRkYxIjtpOjE7czoxOTU6Ii9cIyhbYS16MC=5XSspXCNccytlY2hvXHMnIl=rPHNjcmlwdCouKz9ldmFsLis_KFthLXowLTldW2EtejAtOV1cXyl7MTAwfS4rPzxcL3NjcmlwdD5bXHMnIjtdK1wjXC9cMVwjfDxcP1twaFxzXSsoPz=uKmV4ZWNcKChcJFthLXpfMC=5XSspKVwzXHMqPVxzKlwkXyhSRVFVRVN8R=V8UE9TKVQuK2V4ZWNcKFwzW147XSs7XHMqKCR8XD8-KS9pcyI7fXM6MzE6InZhcmlhYmxlIGNyZWF=ZV9mdW5jdGlvbiBzdHJyZXYiO2E6Mjp7aTowO3M6NToiRzJJSTEiO2k6MTtzOjI=NjoiLzxcP1twaFxzXSooXC9cKlteXCpdKihcKlteXCpcL1=qKStcL1xzKnxcL1wvW15cbl=qXHMrKSooKFwkW2Etel8wLTldKylccyo9KT8uK2Z1bmN=aW9uXHMqKFthLXpfMC=5XSopXCguKz8oZXZhbFwoXDVcKHxiYXNlNjRfZGVjb2RlXCh8XHMqXDRccypcKFxzKnN=cnJldlwoKS4rPyhcKVxzKil7Mix9O1xzKihldmFsXCguKz8oXClccyopezIsfTtccyp8XCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKnxcMVxzKikqKCR8XD8-XHMqKS9pIjt9czoyMjoiaHRtbCBlbWJlZCBvYmplY3QgaHRtbCI7YToyOntpOjA7czo1OiJLQkRCUyI7aToxO3M6MTQxOiIvKDwoaHRtbHxoZWFkfHRpdGxlKT5ccyopKyhoYWNrZWQuYnlbXlxuXSpccyooPFwvW2Etel=rPlxzKikrLispKzwoc2NyaXB=fG9iamVjdHxlbWJlZCkuKzxcLyhzY3JpcHR8b2JqZWN=fGVtYmVkKT5ccyooPFwvKGh=bWx8Ym9keSk-XHMqKSsvaXMiO31zOjM2OiJyZXF1aXJlIG5ldyBTQVBFX2NsaWVudCByZXR1cm5fbGlua3MiO2E6Mjp7aTowO3M6NToiRzFDTmoiO2k6MTtzOjY3OiIvKFwkW2Etel8wLTldKylccyo9XHMqbmV3XHMqU=FQRV9jbGllbnRcKC4rP1wxLT5yZXR1cm5fbGlua3NcKFwpOy9zIjt9czo5MzoiaWYgZnVuY3Rpb25fZXhpc3RzIF9waHBfY2FjaGVfc3BlZWR1cF9mdW5jX29wdGltaXplcl8gcmVnaXN=ZXJfc2h1dGRvd25fZnVuY3Rpb24gb2JfZW5kX2ZsdXNoIjthOjI6e2k6MDtzOjU6IkY2RzdqIjtpOjE7czoxNTA6Ii9bO1xzXSppZlxzKlwoXCFmdW5jdGlvbl9leGlzdHNcKFsnICJdK19waHBfY2FjaGVfc3BlZWR1cF9mdW5jX29wdGltaXplcl9bJyAiXStcKVwpLis_cmVnaXN=ZXJfc2h1dGRvd25fZnVuY3Rpb25cKFsnICJdK29iX2VuZF9mbHVzaFsnICJdK1wpWztcc1=qXH=vcyI7fXM6NDQ6ImVycm9yX3JlcG9ydGluZyBpbmlfc2V=IGlmIGNvdW5=IFBPU1QgcmV=dXJuIjthOjI6e2k6MDtzOjU6IksxVk1JIjtpOjE7czo=NjQ6Ii9pZltcc1woXCFdKyhcQCooREVGSU5FW2RdKlwoKFsnIl=pLio_XDN8KFwkW2Etel8wLTldKylccyooXFtbXlxdXSpcXVxzKikqPVxzKihbJyJdKS4qP1w2fGVycm9yX3JlcG9ydGluZ1woKShbXClcc1x7XSt8W147XSo7W1xzXH1dKikpezMsfS4rPygoXCRbYS16X1=rKVswLTldKlxzKihcW1teXF1dKlxdXHMqKSo9XHMqWyciaHRwc1w6XStcL1wvW147XSo7W1xzXH1dKikrKC4rPyhmaWxlX2dldF9jb25=ZW5=c3xjdXJsX2V4ZWN8c2V=Y29va2llKVwoXDlbXjtdKls7XHNdKyl7Myx9KChlY2hvW1xzXCgiXStcOXxleGl=KVteO1=qO1tcfVxzXSopKyguK1x9W1xzXH1dKlwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSp8KFxAKihlcnJvcl9yZXBvcnRpbmd8aW5pX3NldClcKFteO1=rWztcc1=rKXsyfWlmW1xzXChdK1thLXpdK1tcc1woXStcJF9QT1NULityZXR1cm4gXCRbYS16MC=5XStbO1xzXH1dKy9pIjt9czozODoiZGl2IFZpYWdyYSBDaWFsaXMgc2NyaXB=IHN=eWxlLmRpc3BsYXkiO2E6Mjp7aTowO3M6NToiRDlIQ2YiO2k6MTtzOjE=MzoiLzxkaXYgaWQ9WyciXShbXj5dKilbJyJdPi4qVmlhZ3JhLitDaWFsaXMuKjxcL2Rpdj5bXHJcbiBcdF=qPHNjcmlwdFtePl=qPi4qZG9jdW1lbnRcLmdldEVsZW1lbnRCeUlkXChbIiddXDFbIiddXClcLnN=eWxlXC5kaXNwbGF5Lio8XC9zY3JpcHQ-L2kiO31zOjcxOiJwaHAgdmFyaWFibGUgYXJyYXkgYmFzZTY=X2RlY29kZSBmdW5jdGlvbl9leGlzdHMgbnVtZXJpYy1uYW1lZCBmdW5jdGlvbiI7YToyOntpOjA7czo1OiJKNjhHYiI7aToxO3M6NDMxOiIvKFwvXCooW15cKl=qXCpbXlwvXSkqW15cKl=qXCpcL1xzKnxcL1wvW15cbl=qXHMrKSpcJFthLXpfMC=5JyJcW1xdXHNdKz1ccyphcnJheVwoLio_YmFzZTY=X2RlY29kZVwoLis_XCkrO1xzKigoaWZccypcKFwhZnVuY3Rpb25fZXhpc3RzXChbIiddX1swLTldK1siJ11bXClcc1=rXHtccyp8XD8-XHMqPFw_W3BoXHNdKikqZnVuY3Rpb24gKFthLXpfMC=5XSspXCguKz9cfVtcfVxzXSsoKFw_PlxzKjxcP1twaFxzXSopKlxAP1wkR=xPQkFMU1xzKihcW1teXF1dKlxdK1xzKnxce1teXH1dKlx9K1xzKikrXChbXjtdKztccyopKy4rPygoXCRbYS16XzAtOV=rXHMqPVxzKik_KGV2YWx8XCRHTE9CQUxTKFxzKlxbW15cXV=qXF=rXHMqfFx7W15cfV=qXH=rKSspXHMqXCgoW147XSspW1wpO1x9XHNdKykrKSsuKyhcMXxcNVxzKlwoW147XSs7W1wpO1x9XHNdKikvaSI7fXM6MzI6IlRhZ2dlZCBpZiBlbXB=eSBzY3JpcHQgZXZhbCBlY2hvIjthOjI6e2k6MDtzOjU6Ikk1NTZMIjtpOjE7czoyNTY6Ii8oXCMoW2EtejAtOV=rKVwjXHMqaWZbXHNcKF=rZW1wdHlcKChcJFthLXpfMC=5XSspXClcKVtcc1x7XStcM1tccyciPV=rfF4pPHNjcmlwdFtePl=qKD5ccypce18weFthLXpfMC=5XSpccyo9XHMqZnVuY3Rpb25cKF8weFthLXpfMC=5XSpbXClcc1x7XStyZXR1cm5ccytfMHhbYS16XzAtOV=qXC5=b1N=cmluZ1wofD5ccypldmFsXChccypmdW5jdGlvblwoKS4rXHMqPFwvc2NyaXB=PltccyciO1=qKGVjaG8gXDNbXHM7XH1dK1wjXC9cMlwjfCQpL2kiO31zOjQ=OiJ2YXIgSFRUUF9VU=VSX=FHRU5UIGlmIG1hdGNoIHN=cmluZyB2YXIgZWxzZSI7YToyOntpOjA7czo1OiJIQUw4cSI7aToxO3M6MTczOiIvKFwkW2Etel8wLTldKylccyo9XHMqXCRfU=VSVkVSXFtbIiddSFRUUF9VU=VSX=FHRU5UWyciXVxdO1xzKiguK1xzKikqP2lmXHMqXChbXCRhLXpfMC=5XHNdK1woW14sXSssXHMqXDFbXClcc1=rXHtccyooKGhlYWRlcnxleGl=fGRpZSlbXjtdKjtccyopKyhcfVxzKmVsc2Vccypce1teXH1dKyk_XH=vaSI7fXM6MzQ6ImRpdiBwaHAgZXJyb3JfcmVwb3J=aW5nIGZvcGVuIGh=dHAiO2E6Mjp7aTowO3M6NToiRzhRN1giO2k6MTtzOjg=OiIvPGRpdiBbXj5dKj5ccyo8XD9bcGhcc1=rZXJyb3JfcmVwb3J=aW5nXCguKz9mb3BlblwoWyInXWh=dHA6XC9cLy4rP1w_PlxzKjxcL2Rpdj4vaXMiO31zOjY5OiJET=NVTUVOVF9ST=9UIGlmIGZpbGVfZXhpc3RzIGZpbGVfZ2V=X2NvbnRlbnRzIGd6aW5mbGF=ZSBwcmVnX3JlcGxhY2UiO2E6Mjp7aTowO3M6NToiSjNDQm=iO2k6MTtzOjUyNDoiLyhcJChbYS16XzAtOV=rKVxzKj1bXjtdKjtccyp8ZWNob1teO1=qO1xzKnxcQCooW2Etel8wLTldKylccypcKFxzKikrXCRfU=VSVkVSW1xzXFtce1=rKFsiJ1=pKERPQ1VNRU5UX1JPT1R8U=NSSVBUX=5BTUUpXDRbXHNcXVx9XSsuKz8oZnVuY3Rpb25ccytcM1xzKlwoW15ce1=rXHtccyp8aWZbXHNcKF=rZmlsZV9leGlzdHNccypcKC4rPylcJChbYS16XzAtOV=rKVxzKj1bXHNcQF=qKGZpbGVfZ2V=X2NvbnRlbnRzXHMqXChccypcJFwyLis_XCQoW2Etel8wLTldKylccyo9W1xzXEBdKmd6aW5mbGF=ZVxzKlwoXHMqXCRcNy4rP3ByZWdfcmVwbGFjZS4rP1wpO1tcfVxzXSt8c2NhbmRpclxzKlwoW147XSs7XHMqZm9yZWFjaFxzKlwoXCRcNy4rKGZ3cml=ZVxzKlwoW147XSs7XHMqZmNsb3NlfGZpbGVfcHV=X2NvbnRlbnRzKVxzKlwoW147XSsoO1tcfVxzXSsodW5saW5rXHMqXChccypcJFwyXCl8KFwkW2Etel8wLTldK1xzKj1bXjtdKjtccyopKihpZltcc1woXStbXlx7XStce1xzKikqZWNob1teO1=qKSkrO1xzKikvaXMiO31zOjU=OiJmdW5jdGlvbiBmb3Vyb2ZvdXIgYWRkX2ZpbHRlciBhbGxfcGx1Z2lucyBmb3Vyb2ZvdXJfcHAiO2E6Mjp7aTowO3M6NToiSTJIOW=iO2k6MTtzOjQ2ODoiLzxcP1twaFxzXSsoKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC9bXlxuXSpcblxzKnxcJFthLXpfMC=5XStccyo9W147XSs7XHMqfGVycm9yX3JlcG9ydGluZ1woW147XSs7XHMqfGRlZmluZVwoW147XSs7XHMqKSpmdW5jdGlvblxzKygoW2Etel8wLTldKylbXHNcKF=rKFwkW2Etel8wLTldKykuKz91bnNldFtcc1woXStcNi4rcmV=dXJuXHMrXDZ8KFthLXpfMC=5XSspW15ce1=rXHtccyppZltcc1woXStbaXNfXSpmaWxlW19leGlzdFxzXSpcKFxzKihbXlwpXSspW15cbl=rXG5bXHtcc1=qcmVhZGZpbGVbXHNcKF=rXDgpLis_KSthZGRfZmlsdGVyW1xzXChdK1siJ11hbGxfcGx1Z2luc1ssXHMiJ1=rXDVbIidcKTtcc1=rKFtcL1xAXSphZGRfKGFjdGlvbnxmaWx=ZXIpW1xzXChdK1teLF=rLFsnIlxzXSooXDd8ZnVuY3Rpb25ccypcKC4rcmV=dXJuKVteO1=qW1xzXH1cL1wpO1=rKSooJHxcPz4pL2lzIjt9czoxNDoicCBwYXlkYXkgbG9hbnMiO2E6Mjp7aTowO3M6NToiRzVCQ=siO2k6MTtzOjQ2OiIvPHBbXj5dKj5ccyouKz9wYXlkYXkgbG9hbi4rP1tcclxuXStccyo8XC9wPi9pIjt9czoyNjoic2NyaXB=IHNyYyBlYXJubW9uZXlkby5jb2=iO2E6Mjp7aTowO3M6NToiSjFTOWsiO2k6MTtzOjIyMToiLyg8KHNjcmlwdHxhKVtePl=rKGhyZWY9WyciXVtmaHRwc2w6XSpcL1wvKHNlY3VyZVwucGF5emEpW14-XSs-XHMqPGltZ1tePl=rKT9zcmM9WyciXVtmaHRwc2w6XSpcL1wvKFw=fHN=YXRcLnV1c3RvdWdodG9ubWF8Y2RuXC5hbGx5b3V3YW5=fGNkblwuZWVkdWVsZW1lbnRzfG9ubGluZS1zYWxlMjR8ZWFybm1vbmV5ZG98Z2NjYW5hZGF8ZzAwKVwuW2NvXS4rP1xzKjxcL1wyPlxzKikrL2kiO31zOjkyOiJwaHAgdmFyIGFycmF5IHZhciB=ZXh=IGlmIGZ1bmN=aW9uX2V4aXN=cyBmdW5jdGlvbiBmb3JlYWNoIGNociByZXR1cm4gdmFyaWFibGUgZnVuY3Rpb24gdGV4dCI7YToyOntpOjA7czo1OiJJNEVMMSI7aToxO3M6MzkxOiIvPFw_W3BoXHNdKyhcJFthLXpfMC=5XSsoXHMqXFtbXlxdXStcXSspKltcc1wuXCtcLV=qPVxzKigoYXJyYXlcKHxcJFx7KT8oKFsnIl=pLio_XDZ8WzAtOVwsXSt8XCRbYS16XzAtOV=rKFxzKlxbW15cXV=rXF=rKSopW1wuXCxcc1wpXH1dKikrO1xzKikrKChpZlxzKlwoW15ce1=rXHtccyopP2Z1bmN=aW9uW15ce1=rXHsuKnJldHVyblteO1=qO1tcc1x9XSspKihpZlxzKlwoW15ce1=rXHtccyopPyhlY2hvfHByaW5=fGRpZXxmb3IoZWFjaCk_XHMqXChbXlx7XSspW1xzXChce1=rKFwkW2Etel8wLTldKyhccypcW1teXF1dK1xdKykqW1xzXC5cK1wtXSo9XHMqW147XSs7W1x9XHNdKikqXCRbYS16XzAtOV=rKFxzKlxbW15cXV=rXF=rKSpccypcKFteO1=qO1tcc1x9XSooJHxcPz4pL2lzIjt9czozNjoiVGFnZ2VkIGVycm9yX3JlcG9ydGluZyBiYXNlNjRfZGVjb2RlIjthOjI6e2k6MDtzOjU6Ikk=UkpJIjtpOjE7czoxODU6Ii8oXC9cKi4rP1wqXC98PFwhLS=uKz8tLT4pXHMqKGlmW1woIFwhXStkZWZpbmVkXChbXlwpXStbXCkgXHtdKy4qP2RlZmluZVwoW15cKV=rXCkrO1tcc1x9XSopKigoXEB8XCRbYS16XzAtOV=rXHMqW1wuPV=rKSooZXJyb3JfcmVwb3J=aW5nfGluaV9zZXR8b2Jfc3RhcnQpXCguKz8pK2Jhc2U2NF9kZWNvZGVcKC4rP1wxL2lzIjt9czo=MzoiVGFnZ2VkIGNyZWF=ZUVsZW1lbnQgc2NyaXB=IHNyYyBhcHBlbmRDaGlsZCI7YToyOntpOjA7czo1OiJLOERBVCI7aToxO3M6NjQ2OiIvKDwoc2NyaXB=KVtePl=qPnxcL1wqXHMqWzAtOWEtel=rXHMqXCpcL3xFbGVtZW5=XC5wcm9=b3R5cGVcLmFwcGVuZEFmdGVyXHMqPVxzKmZ1bmN=aW9uLipmdW5jdGlvbltcKFwpXHNdKlx7XHMqfHZhcikrXHMqLio_KFthLXpfMC=5XSspW1xzPV=rZG9jdW1lbnRcLmNyZWF=ZUVsZW1lbnRbXChcc1=rKFN=cmluZ1wuZnJvbUNoYXJDb2RlXCguKz9cM1wuc3JjW1xzPV=rfFsnIl1zY3JpcHRbJyJdLis_XDNcLnNyY1tccz1dK1N=cmluZ1wuZnJvbUNoYXJDb2RlXChbXlwpXStcKSs7XHMqfHZhclxzKihbYS16XzAtOV=rKVtccz1dK2RvY3VtZW5=XC5nZXRFbGVtZW5=c=J5VGFnTmFtZVwoWyciXXNjcmlwdFsnIl1cKTtccyp2YXJccyooW2Etel8wLTldKylbXHM9XSt=cnVlO1xzKigoZm9yW1woXHNdKyh2YXJccyopPyhbYS16XzAtOV=rKVtccz1dK1w1W15ce1=rXHtccyp8aWZbXChcc1=rfFtcfVxzXSplbHNlXHMqKFx7W15cfV=qW1x9XHNdKyk_KSooXDVcW1wxMFxdXC5zcmN8XDNcLnNyY3xcNilbXHM9XSsoXDVcW1wxMFxdXC5zcmN8XDNcLnNyY3x=cnVlfGZhbHNlKVtcKVxzXHs7XSspKykrLis_XC5hcHBlbmRDaGlsZFwoXDNcKS4qP1xzKihbXH1cKFwpO1xzXSt8XC9cKlxzKlswLTlhLXpdK1xzKlwqXC9ccyp8JHw8XC9cMj4pKy9pIjt9czozNzoiUEhQIFZhcnMgQ29uY2F=IFZhcmlhYmxlIEZ1bmN=aW9uIEVORCI7YToyOntpOjA7czo1OiJLNVZFWCI7aToxO3M6NDk3OiIvPFw_W3BoXHNdKygoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyopKnxcQD9lcnJvcl9yZXBvcnRpbmdbXCgwXClcc1=rO1xzKnxmdW5jdGlvblxzK1thLXpfMC=5XStcKFteXHtdK1tce1xzXSspKihcJFthLXpfMC=5XSsoXHMqXFtbXlxdXStcXSspKltcc1wuXSo9XHMqKChbJyJdKS4qP1w3fFwkW2Etel8wLTldKyhccypcW1teXF1dK1xdKykqKVteO1=qO1xzKikrPyhcJFthLXpfMC=5XSsoXHMqXFtbXlxdXStcXSspKlxzKj1ccyopP1xAPyhcJFthLXpfMC=5XSsoXHMqXFtbXlxdXStcXSspKnxzdHJfcmVwbGFjZXxjcmVhdGVfZnVuY3Rpb24pXHMqXChbXlwpXSouKj8oKFwkW2Etel8wLTldKyhccypcW1teXF1dK1xdKykqXHMqPSk_W1xAXHNdKlwkW2Etel8wLTldKyhccypcW1teXF1dK1xdKykqXHMqXCgoLis7fFteO1=qOylccyopKyhcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcfVxzKikqKCR8XD8-KFxzKjxmb3JtLis_PFwvZm9ybT4pPykvaSI7fXM6NjU6ImRpdiBzY3JpcHQgZG9jdW1lbnQgZ2V=RWxlbWVudEJ5SWQgdmlzaWJpbGl=eSBoaWRkZW4gZGlzcGxheSBub25lIjthOjI6e2k6MDtzOjU6IkY1SjdjIjtpOjE7czoyNDg6Ii88ZGl2IGlkPVsnIl=oW2EtelxfMC=5XSspWyciXS4rPzxcL2Rpdj5ccyo8c2NyaXB=W14-XSo-XHMqKChmdW5jdGlvblxzKD8haGlkZW1lc3NhZ2UpKFthLXpcXzAtOV=rKXxpZilbXHNcKF=rW15cKV=qW1wpXHNce1=qKT8oZG9jdW1lbnRcLmdldEVsZW1lbnRCeUlkXChbIiddXDFbIiddXClcLnN=eWxlXC4odmlzaWJpbGl=eXxkaXNwbGF5KVxzKj1ccypbIiddKGhpZGRlbnxub25lKVsiJ1=7XHMqKStbXHNcfV=qPFwvc2NyaXB=Pi9pIjt9czo=NzoiYWRkX2FjdGlvbiB3cF9mb29=ZXIgc2VydmUgZXhhbXBsZV9hZG1pbl9ub3RpY2UiO2E6Mjp7aTowO3M6NToiR=IzQ=wiO2k6MTtzOjE2MzoiLyhhZGRfYWN=aW9uXChccypbJyJdKHdwX2Zvb3Rlcnxpbml=fGFkbWluX25vdGljZXMpWyciXVssXHNdKyhcQD9jcmVhdGVfZnVuY3Rpb25bXHNcKF=rKT9bJyJdKC4rP2Jhc2U2NF9kZWNvZGUuKz98ZXhhbXBsZV9hZG1pbl9ub3RpY2V8c2VydmUpWyciXVtcc1wpXSs7XHMqKXsyLH=vaSI7fXM6NTE6IlBIUCBlcnJvcl9yZXBvcnRpbmcgaWYgIWlzc2V=IHZhcmlhYmxlIGZ1bmN=aW9uIEVORCI7YToyOntpOjA7czo1OiJJMzJLQSI7aToxO3M6MjM2OiIvKChlcnJvcl9yZXBvcnRpbmdccypcKHxcJFthLXpfMC=5XStccyo9KVteO1=rO1xzKikqaWZccypcKC4rP1wpK1xzKlx7XHMqKChcJFthLXpfMC=5XSspXHMqPVteO1=rO1xzKikqKChcJFthLXpfMC=5XSspXHMqPVteO1=rO1xzKikqKChcJFthLXpfMC=5XSspXHMqPStccyopPyhcNHxcNilccypcKC4rPyhcJFthLXpfMC=5XStccyo9XHMqKT9cOFxzKlwoW15cKV=qXCkrW1xzJyJcKTtdKlx9K1xzKihcbnwkKS9pcyI7fXM6NjY6InNjcmlwdCBpZiBuYXZpZ2F=b3IgdXNlckFnZW5=IG1hdGNoIGRvY3VtZW5=IHdyaXRlIHNjcmlwdCBzcmMgaHR=cCI7YToyOntpOjA7czo1OiJLMkhERiI7aToxO3M6MzYxOiIvPHNjcmlwdFtePl=qPigoXC9cKlxzKlswLTlhLXpdK1xzKlwqXC98dmFyfGNvbnN=fFxzKSooKF8weFthLXpfMC=5XSspW1xzPV=rKFxbW15cXV=rW1xdLFxzXSspKztbXH1cc1=qKSsoKChfMHhbYS16XzAtOV=rKT9cKFxzKnwodmFyXHMqKT9ccyooXzB4W2Etel8wLTldKylbXHM9XSpmdW5jdGlvblteXHtdK1x7K1xzKikrW147XSpbO1xzXH1dKykrKHZhclxzKik_XHMqXDhbXHM9XStcNC4rXDEwW147XStbO1xzXH1cKHRoaXNcKV=rfGlmW1xzXChdK25hdmlnYXRvclwudXNlckFnZW5=XC5tYXRjaFwoLis_XHtccypkb2N1bWVudFwud3JpdGVcKFsiJ1=8c2NyLis_IHNyYz1bJyJdaHR=cC4rP1wpWztcfVxzXSspPFwvc2NyaXB=Pi9pIjt9czo2MToicGhwIGZ1bmN=aW9uIEFycmF5IHJldHVybiBiYXNlNjRfZGVjb2RlIHBocCBWYXJpYWJsZSBmdW5jdGlvbiI7YToyOntpOjA7czo1OiJJMzVFNyI7aToxO3M6MTkyOiIvXjxcP1twaFxzXStmdW5jdGlvbiBiYXNlNjRbXlx7XStce1xzKnJldHVybiBiYXNlNjRbXlx9XStcfVxzKmlmW1xzXChdK2lzc2V=W1xzXChdK1wkXyhSRVFVRVN8R=V8UE9TKVQuKzxib2R5IG9ubG9hZD1bXHMnIlxcXStsb2NhdGlvbltePl=rW148XSs8XC9ib2R5PlxzKjxcL2h=bWw-XHMqPFw_W3BoXHNdKlx9K1xzKigkfFw_PikvaXMiO31zOjI1OiJpbmNsdWRlX29uY2UgcnNzLWluZm8ucGhwIjthOjI6e2k6MDtzOjU6IktCTkVlIjtpOjE7czozODg6Ii8oKCgoXCRbYS16XzAtOV=rKFxzKlxbW15cXV=rXF=pKltcc1wuXSo9fGlmW1xzXChdfGZ1bmN=aW9uW1xzXChdW15ce1=rW1x7XHNdK3JldHVyfGZvcltcc1woXVteXCldK1wpKylbXjtdKztbXH1cc1=qKSooXCQoPyFrX29wYWQpW2Etel8wLTldKylbXHNcLl=qPShbXjtdKlxcKHhbMC=5YS1mXXsyfXxbMC=5XXsyLDN9KSkrW147XSo7XHMqKSspKyhpZlxzKlwoW15ce1=rXHtccyopPygoXCRbYS16XzAtOV=rXHMqPVxzKik_XEA_XCRbYS16XzAtOV=rKFxzKlxbW15cXV=rXF=pKlwoKFteO1=rOyg_PVwpKSkqW147XSs7XHMqKStbXH1cc1=qKChpZnxmb3J8XDZ8XC9cLykuK1xzKnwoZWNob3xkaWUpW1xzXChdKihbJyJdKShbXlwiXSooPzw9XFwpIikqLipcMTdbXCk7XHNdKikqL2kiO31zOjIxOiJpc19ib3QgX192aWFfY29udGVudCkiO2E6Mjp7aTowO3M6NToiRzlNQlYiO2k6MTtzOjI4NzoiLyh2YXJccysoW2Etel8wLTldKylccyo9W147XSs7XHMqKSooZnVuY3Rpb25ccysoW15cKF=qY29va2llW15cKF=qfFthLXowLTldezQxfSlcKFteXHtdKlx7Lio_KChkb2N1bWVudC5jb29raWVbXjtdKyg7XHMqWyciXSk_fHJldHVybnxpZlxzKlwoZG9jdW1lbnRcLnJlZmVycmVyW15ce1=rXHtccypcMlxzKj=pW147XSo7XHMqKFx9XHMqKSspKyl7NSx9KFwoKmZ1bmN=aW9uXHMqKFtcKFwpXSt8W2EtejAtOV17NDF9XChbXlx7XSopXHMqXHsuKj9cKTtccypcfVtcKVxzXSpcMTBccyo7XHMqKXsyLH=vaXMiO31zOjQxOiJzZXQgdmFyIHN=cl9yZXBsYWNlIHZhciB2YXJpYWJsZSBmdW5jdGlvbiI7YToyOntpOjA7czo1OiJGN=1DNyI7aToxO3M6MzE3OiIvKChcJFthLXpcXzAtOV=rKFxzKlxbW15cXV=rXF=pKilccyo9XHMqXEA_XCRbYS16XF8wLTldKyhccypcW1teXF1dK1xdKykqXHMqXChcQD9cJF8oUkVRVUVTVHxHRVR8UE9TVHxDT=9LSUUpKFxzKlxbW15cXV=rXF=rKSpcKTtccyopKyhcJFthLXpcXzAtOV=rfHByZWdfcmVwbGFjZSlccypcKFxzKihbJyJdKShbXCFcL1wjXHxcQFwlXF5cKlx-XSkuKz9cOVtpbXN4XSplW2ltc3hdKlw4XHMqLFxzKlwyXHMqLCgoW1wkYS16XF8wLTldKyhccypcW1teXF1dK1xdKSp8J1teJ1=qJ3wiW14iXSoiKVtcLlxzXSopK1wpKztccyooZGllXChbXlwpXSpcKSs7KT8vaSI7fXM6NjQ6IlRhZ2dlZCBlcnJvcl9yZXBvcnRpbmcgY3VybF9pbml=IGZpbGVfZ2V=X2NvbnRlbnRzIGZ3cml=ZSBzY3JpcHQiO2E6Mjp7aTowO3M6NToiSUE5SU4iO2k6MTtzOjU=ODoiLzxcP1twaFxzXSsoW1xAXC9cI1xzXSooZXJyb3JfcmVwb3J=aW5nfGluaV9zZXR8c2V=X3RpbWVfbGltaXR8aGVhZGVyKVxzKlwoW15cKV=qW1wpO1xzXSspKigoKFs7XHNdKihcJFthLXpfMC=5XStccyo9W147XSs7XHMqfGVsc2VbXHNce1=qKSkqaWZccypcKFteO1=rKSsoKGZpbGVfZ2V=X2NvbnRlbnRzXHMqXCh8bWtkaXJccypcKHxjdXJsX1thLXpdK1xzKlwofGRpZVxzKlwofChlY2hvfHByaW5=KVteO1=rO1xzKihyZXR1cm58ZXhpdCkpW15cfV=rW1x9XHNdKikrKSsoZWxzZVtcc1x7XSopPyhpZltcc1woXStbXlwpXStbXClcc1x7XSopPyhcJFthLXpfMC=5XStccyo9XHMqZmlsZV9nZXRfY29udGVudHNcKFteO1=rO1tcfVxzXSopKigoaWZcKFteXCldK3xlY2hvW147XSspW1wpXHtccztdKykqKFwvKihcJFthLXpfMC=5XStccyo9KT9bXEBcc1=qKGZvcGVufGZ3cml=ZXxmY2xvc2UpXHMqXChbXjtdKztbXH1cc1=qKXszLH=oKGhlYWRlcnxlY2hvfHByaW5=fGlmXHMqXChbXlx7XStbXHtcc1=qY2htb2RccypcKClbXjtdKjtbXH1cc1=rKSsoJHxcPz4pL2kiO31zOjcwOiJmaWxlX2V4aXN=cyBjdXJsX2luaXQgZmlsZV9nZXRfY29udGVudHMgZmlsZV9wdXRfY29udGVudHMgaW5jbHVkZV9vbmNlIjthOjI6e2k6MDtzOjU6IkhBNEo2IjtpOjE7czoyNDk6Ii88XD9bcGhcc1=rKFwkW2Etel8wLTldKylccyo9XHMqLis_KGN1cmxfaW5pdHxmaWxlX2dldF9jb25=ZW5=c1woW1xzJyJdK2h=dHBbc1w6XC9dKykuKz9maWxlX3B1dF9jb25=ZW5=c1woXDEuKz8oaW5jbHVkZV9vbmNlfChcJFthLXpfMC=5XSspXHMqPVxzKm5ld1xzK1thLXpfMC=5XSspXChcMS4qP1wpO1xzKiguKlw=W147XSo7XHMqfFx9XHMqfGVsc2Vccyp8XHtccyp8ZGllW1xzXCgnIl=rW15cKV=qXCkrO1xzKikqKCR8XD8-KS9pcyI7fXM6Mzg6Imxvbmcgc3RyaW5nIHZhciBldmFsIHZhcmlhYmxlIGZ1bmN=aW9uIjthOjI6e2k6MDtzOjU6IktDMUtWIjtpOjE7czo1NTY6Ii88KFw_fHNjcmlwdCBsYW5ndWFnZT=pW3BoXHMnIj5dKyhcJFthLXpfMC=5XSsoXHMqXFtbXlxdXStcXSspKltcc1wuXSo9XHMqKCIoW14iXSooPzw9XFwpIikqW14iXSoifCcoW14nXSooPzw9XFwpJykqW14nXSonfFxkK3woXCRbYS16XzAtOV=rW1xbXF1cZFwuXSopKyk7XHMqfFwvXC8uKlxzKnxcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKlxzKnxcQD9lcnJvcl9yZXBvcnRpbmdbXCgwXClcc1=rO1xzKnxmb3IoZWFjaCk_XHMqXCgoW15ce1=rXHtbXlx9XStcfStbXH1cc1=rfChbXjtdKjtccyopezN9KXxcPz5ccyo8XD9bcGhcc1=rKStldmFsXHMqXCgoKFwkW1wkXHtdKlthLXpfMC=5XSspW1x9XHNcKV=qKFxbW15cXV=rXF=rW1wuXHNcfV=qfD=rXHMqKFwkW2Etel8wLTldK3xjcmVhdGVfZnVuY3Rpb24pKSpbXClcc1x7O1x9XSopKyhcKC4qP1wpW1wpXHNcfTtdKykrKChbXCRce1=qKFwxNXxcMTN8XDQpW1xzXH1dKlwofGVjaG8pW147XSs7W1x9XHNdKnxcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKikqKFw_PiguKyQpP3wkfDxcL3NjcmlwdD4pL2kiO31zOjQxOiJwaHAgdmFyIGV4cGxvZGUgbnVtYmVycyBWYXJpYWJsZSBmdW5jdGlvbiI7YToyOntpOjA7czo1OiJIMjRGbCI7aToxO3M6MjE4OiIvPFw_W3BoXHNdKyhpZlxzKlwoKFteXHtdK1tce1xzXSpcJEdMT=JBTFNbXHtcW11bJyJdXFx4W147XSs7W1x9XHNdKikrKFw_PlxzKjxcP1twaFxzXSspKT9cJFthLXpfMC=5XStccyo9XHMqKCcuKz8nfCIuKz8iKTtccyouKj9ccypcJFthLXpfMC=5XStccyo9XHMqZXhwbG9kZVwoW14sXStbLCInXC4wLTlcc1=rXCk7XHMqLio_XCRbYS16XzAtOV=rXHMqXCguKj9cPz4oLiskKT8vaSI7fXM6OTM6ImZ1bmN=aW9uIFggaWYgZnVuY3Rpb25fZXhpc3RzIGN1cmxfaW5pdCBzcGFtY2hlY2tyLmNvbSBjdXJsX2V4ZWMgY3VybF9jbG9zZSBlY2hvIGFkZF9hY3Rpb24gWCI7YToyOntpOjA7czo1OiJLOUVLQiI7aToxO3M6NjYwOiIvKFwvXCouKj9cKlwvXHMqfFwvXC9bXlxuXSpcblxzKikqKFw_PlxzKjxcP1twaFxzXSopPygoaWZccypcKFteXHtdK1x7XHMqKStmdW5jdGlvblxzKyhbYS16XzAtOV=rKVwoW15ce1=rXHtccyopP2lmW1xzXChcIV=rZnVuY3Rpb25fZXhpc3RzXChccypbJyJdKFthLXpfMC=5XSspWyciXVtcc1wpXStce1xzKihpZltcc1woXStbXlx7XSpce1xzKik_KChmdW5jdGlvblxzK1w2XCgpPy4rKHNwYW1jaGVja3JcLmNvbXxqYXZhdGVybTFcLnB3fFsnIl1qcXVlcnlcLnxrYXJhbmJpdFwuY29tKS4rP2N1cmxfaW5pdC4rP2N1cmxfZXhlYy4rP2N1cmxfY2xvc2V8ZnVuY3Rpb25ccytcNlxzKlwoW15cKV=qW1wpXHNdK1x7XHMqKFwkW2Etel8wLTldK1xzKj1bXjtdK1s7XHNdKykqKGlmW1xzXChdK1xAPyhcJHxmb3Blbltcc1woXSspW15ce1=rW1x7XHNdKik_ZWNob1wod3BfcmVtb3RlX3JldHJpZXZlX2JvZHlcKHdwX3JlbW9=ZV9nZXRcKClbXjtdKyg7W1x9XHNdKmVjaG9bXjtdKykqO1xzKlx9W1x9XHNdKigoKGlmW1xzXChdK3xlbHNlKVteXHtdK1tcc1x7XSspP2FkZF9hY3Rpb25bXlwsXStcLFxzKlsnIl=oXDV8XDZ8d29yZHByZXNzX2FwaV9kZWJ1ZylbJyJdW146XSpbXHNcKTtdK1tcfVxzXSopKyhcPz5ccyo8XD9bcGhdKik_KFxzKlwvXCouKj9cKlwvKSovaXMiO31zOjk2OiJpZiBmdW5jdGlvbl9leGlzdHMgZnVuY3Rpb24gZXJyb3JfcmVwb3J=aW5nIFZhcmlhYmxlIHhGRiBIKiBpZiBmaWxlX2V4aXN=cyBlcnJvcl9yZXBvcnRpbmcgZW5kaWYiO2E6Mjp7aTowO3M6NToiRTkyR3AiO2k6MTtzOjI3MDoiL2lmWyBcKFwhXStmdW5jdGlvbl9leGlzdHNcKFsgJyJdKyguKz8pWyAnIl=rW1wpIFx=XStcOi4rP2Z1bmN=aW9uIFwxXChcKSBcey4rP2Vycm9yX3JlcG9ydGluZ1woMC4rPyhcJChbYS16MC=5XF9dKylbID1cdF=rIihcXHhbMC1mXXsyfSkrIjtbXHQgXHJcbl=rKFwkKFthLXowLTlcX1=rKVsgPVx=XStcJChbYS16MC=5XF9dKylcKCJIXCoiXCwuKz87W1x=IFxyXG5dKykrKStpZlsgXChcIV=rZmlsZV9leGlzdHMuKz9lcnJvcl9yZXBvcnRpbmdcKFwkLis_ZW5kaWY7L2lzIjt9czoxNzoiaW5jbHVkZSBJbWFnZUZpbGUiO2E6Mjp7aTowO3M6NToiSTVFQkgiO2k6MTtzOjI5NzoiLyg_PCFcL1wvXHN7OH=pXEA_KGluY2x1ZGV8cmVxdWlyZSkoX29uY2UpP1xzKlwoXHMqW2Etel8wLTksXC4nXHMiXC9cLVwoXCldKz8oPzwhR=RfU1lTVEVNX1BMVUdJTl9ESVIgXC4gJ1wvaW1hZ2VzXC8=MDQpKFwuKGdpZnxqcGd8cG5nfGNidXxbXHMiJ1=rXC93cC1pbmNsdWRlc1wvaW5pdFwucGhwfFtccyInXStcL3dwLWluY2x1ZGVzXC9qc1wvdXRpbGl=aWVzXC5qc3xbXHMiJ1=rXC93cC1hZG1pblwvaW5jbHVkZXNcL2NsYXNzLXdwLWl=ZXJuYWwtdXBncmFkZVwucGhwKXx3cC1qYXZhXC5waHApWyInXHNcKV=rOy9pIjt9czo=MToiL2Z1bmN=aW9uIGFycmF5IFZhcmlhYmxlIEZ1bmN=aW9uIGlmIGV2YWwiO2E6Mjp7aTowO3M6NToiSDNPSTQiO2k6MTtzOjMyODoiLyhcL1wqW15cKl=qKFwqW15cKlwvXSopK1wvXHMqKSooKFwkW19cLT5cLmEtejAtOV=rKVxzKj1bXjtdKztccyooW2Etel8wLTldKylcKFteXCldKlw=W15cKV=qW1wpXHM7XStccypmdW5jdGlvblxzKlw1KVxzKlwoW15ce1=rXHtccyooXCRbX1wtPlwuYS16MC=5XSspXHMqKFxbW15cXV=rXF=rXHMqKSo9XHMqYXJyYXkoX21hcCk_XHMqXCguKz9cKTtccyooXCRbYS16XzAtOV=rKFxzKlxbW15cXV=qXF=rKSpbXC5cc1=qXCguKz9pZltcc1woXSpcJFtfXC5hLXowLTlcWyciXF1cc1=rXClccypceykrXHMqKHJldHVyblxzKik_ZXZhbFxzKlwoW15cKV=rW1wpXHM7XH1dKy9pcyI7fXM6NDM6IlRhZ2dlZCBlcnJvcl9yZXBvcnRpbmcgSFRUUF9VU=VSX=FHRU5UIGN1cmwiO2E6Mjp7aTowO3M6NToiSzhQS24iO2k6MTtzOjI2NToiLyhlcnJvcl9yZXBvcnRpbmdccypcKFteO1=rO1xzKnxcJFthLXpfMC=5XStccyo9XHMqKGFycmF5XHMqXChbXlwpXStcKStbO1wpXHNdKnxbIicuXHNdKm1iX3N=cnRvbG93ZXJcKFwkX1NFUlZFUltce1xbJyJdKyl8aWZccypcKFteXCldKykrSFRUUF9VU=VSX=FHRU5UKC4rP2h=dHA6XC9cL3wuKz9jdXJsX2luaXQpezIsfS4rPyhcJFthLXpfMC=5XSspP1tccz1dKmN1cmxfZXhlYy4rPyhwcmludHxkaWV8ZWNobylbJyJcc1woXStcNFsnIlxzXCk7XH1dK1xzKi9pcyI7fXM6MzA6ImhlYWRlciBMb2NhdGlvbiBodHRwIHNwYWNlLnBocCI7YToyOntpOjA7czo1OiJFOTlEcCI7aToxO3M6NjM6Ii9oZWFkZXJcKFsnIl1Mb2NhdGlvbjogaHR=cDpcL1wvW15cL1=rXC9zcGFjZVwucGhwXD9bXlwpXStcKTsvaSI7fXM6NTA6IkNvcHlyaWdodCBmdW5jdGlvbiBnZXRDb29raWUgZG9jdW1lbnQud3JpdGUgaWZyYW1lIjthOjI6e2k6MDtzOjU6IkY5VUF4IjtpOjE7czo5MToiLyhcL1wqLis_XCpcLylccypmdW5jdGlvblxzKyhbYS16XzAtOV=rKVwoLis_bmF2aWdhdG9yXC51c2VyQWdlbnQuKz88aWZyYW1lIC4rP1wyXCguKz9cMS9pcyI7fXM6Mzc6IkNvcHlyaWdodCBmdW5jdGlvbiBzZXRDb29raWUgZnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiRjFDRm8iO2k6MTtzOjE5NzoiL1wvXCpccypDb3B5cmlnaHQuK1xzKlwqXC9ccyooZnVuY3Rpb24gW3NnXWV=Q29va2llXCguKz9yZXR1cm5bXjtdKls7XH1cc1=rKSpmdW5jdGlvbiAoW2EtejAtOVxfXSspXChcKVtce1xzXSsoW2EtejAtOVxzXD1dK25hdmlnYXRvclwudXNlckFnZW5=Lis_fGZ1bmN=aW9uXHMrKVtzZ11ldENvb2tpZVwoLis_XDJcKFteO1=rWztcfVxzXSsvaXMiO31zOjIxOiJwaHAgaGV4LWVuY29kZWQtbGluZXMiO2E6Mjp7aTowO3M6NToiSUI=QnciO2k6MTtzOjYwOiIvPFw_W3BoXHNdKyhbXjtdKj9cXHhbMC=5YS1mXXsyfVteO1=qO1xzKil7OSx9LipccyooJHxcPz4pL2kiO31zOjM1OiJwaHAgYXJyYXkgaHR=cCBtdF9yYW5kIG1ldGEgcmVmcmVzaCI7YToyOntpOjA7czo1OiJKNUw4eCI7aToxO3M6MjA1OiIvPFw_W3BoXHNdKyhcJFthLXpfMC=5XStbXHM9XSthcnJheVtcKFxzXSsoWyciXWh=dHAuK1ssXCk7XHNdKykrXCRbYS16XzAtOV=rW1xzPV=rbXRfcmFuZFwoLitbXCk7XHNdKyhcJFthLXpfMC=5XStbXHM9XSsuK1xzKikrfGlmW1woXHNdK1teXHtdK1x7XHMqaGVhZGVyXChbXlx9XStcfVxzKilcPz5ccyooPGhlYWQ-XHMqKT88bWV=YS4qXHMqKCR8XD8-KS9pIjt9czo=NDoicGhwIGFycmF5IGZ1bmN=aW9uIHJldHVybiBiYXNlNjRfZGVjb2RlIGV2YWwiO2E6Mjp7aTowO3M6NToiRjdRMEQiO2k6MTtzOjIyNToiLzxcP1twaFxzXStcJFtfXC1cPlwuYS16MC=5XHtcWyciXF1cfV=rXHMqPVxzKmFycmF5XCguKz9mdW5jdGlvblxzKyhbYS16XzAtOV=rKVwoKC4rPztccyopKygoXCRbYS16XzAtOV=rXHMqPVxzKik_KGV2YWx8XCRbYS16XzAtOV=rKFxzKlxbW15cXV=rXF=pKilccypcKFxzKihcJF8oUkVRVUVTfEdFfFBPUylUXFspP1teXCldK1tcKTtcc1=rKGV4aXR8ZGllKVteO1=qO1xzKikrKCR8XD8-KS9pIjt9czo1NjoicGhwIGlmIGlzc2V=IEdMT=JBTFMgc3RydG9sb3dlciBTRVJWRVIgaWYgc3Ryc3RyIEdMT=JBTFMiO2E6Mjp7aTowO3M6NToiSThUS=giO2k6MTtzOjIyNDoiL2lmW1xzXChcIV=raXNzZXRbXHNcKF=rXCRHTE9CQUxTXFsiXFx4W15cXV=rW1xdXClcc1=rXHtccyooXCRbYS16XzAtOV=rKVtccz1dK3N=cnRvbG93ZXJbXChcc1=rXCRfU=VSVkVSXFsiXFx4W15cXV=rW1xdXCk7XHNdKygoaWZ8YW5kKVtcKFxzXCFdK3N=cnN=cltcKFxzXStcMVtccywiJ1=rXFx4W15cKV=rW1wpXHNce1=rKStcJEdMT=JBTFNcWyJcXHhbXlxdXStcXVteO1=qO1xzKlx9L2kiO31zOjQyOiJmdW5jdGlvbiByZXR1cm4gZnVuY3Rpb24gVmFyaWFibGUgZnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiRUFLQUIiO2k6MTtzOjIwMjoiLyhmdW5jdGlvblthLXpfMC=5XHNdK1woW15cKV=qW1wpXHNdK1x7XHMqcmV=dXJuW2Etel8wLTlcc1=rXChbXlwpXSpbXClcc1=rOypcfStccyopKyhcJFthLXpfMC=5XStbPVxzXSsoW2Etel8wLTlcc1=rXChbXlwpXSpbXClcc1=rfFsnIl1bXjtdKik7K1xzKikrKFwkW2Etel8wLTldKylbPVxzXStbXjtdK1snIlwpO1=rXHMqXDRccypcKCsuKj9cKTsvaSI7fXM6MTc6ImV2YWwgY2hyIFJFUEVBVEVEIjthOjI6e2k6MDtzOjU6Ikc1Qk5hIjtpOjE7czoyMTI6Ii8oPFw_W3BoXSp8XC9cKlteXCpdKlwqXC8pXHMqKChcJFthLXpfMC=5XSspXHMqPVxzKicpPyguKz9cLlxzKmNoclwoWzAtOV=rXClccypcLil7MjB9LitccyooXDNccyo9XHMqc3RyX3JlcGxhY2VcKCdcI1snLFxzXStcM1wpO1xzKik_KChcJFthLXpfMC=5XSspXHMqPVxzKmNyZWF=ZV9mdW5jdGlvblwoWydccyxdKlwzXCk7XHMqXDdcKFwpOyk_KFw_PlxzKnwkfFwxKS9pIjt9czozNjoiZ2FyYmFnZSBhcm91bmQgZXZhbCBWZXJpYWJsZUZ1bmN=aW9uIjthOjI6e2k6MDtzOjU6IktDNEZHIjtpOjE7czo=NDU6Ii88XD9bcGhcc1=rKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSooXCRbYS16XzAtOV=rW1xzXC5dKj=oW1xzXC5cKF=qKChbIiddKS4qPyg_PCFfZSlcNnxbXCRce2Etel8wLTldK1tcfVxzXSooXFtbXlxdXStcXSspKjt8XChbXlwpXSpcKTsrfFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKig_PVwvKSkrW1wvXC47XF5cJlx8XH5cKV=qKD8hXCopXHMqfFwjLitcbikrKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSopKygoXEBcJFthLXpfMC=5XSt8ZXZhbHxpZilccypcKHxcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcLykqXCRbXCRce1=qW2Etel8wLTldK1tcfVxzXSooXFtbXlxdXStcXVtcc1=qKSpcKC4qPyguKydbXC47XCldKyk_KFxzKicuKydbXC47XCldKykqXHMqKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSooXD8-fCQpL2kiO31zOjU2OiJpZiBkZWZpbmVkIGRlZmluZSBmdW5jdGlvbiBnbG9iYWwgZXZhbCBWYXJpYWJsZSBGdW5jdGlvbiI7YToyOntpOjA7czo1OiJJNEJGZSI7aToxO3M6MzI=OiIvaWZbXChcc1whXStkZWZpbmVkXChbXlwpXStbXClcc1x7XStkZWZpbmVcKFteXCldK1tcKVxzXSs7XHMqKFwkW2Etel8wLTldK1tcc1wuXSo9W147XSo7XHMqKSpmdW5jdGlvblxzKyhbXlwoXSopXChbXlwpXSpbXClcc1=rXHtccyooZ2xvYmFsIChcJFteO1=rKTtccyp8KFwkW2Etel8wLTldK1tcc1wuXSo9W147XSo7XHMqKSpmb3IoZWFjaCk_XHMqXCgpKC4rW1xyXG5dKykrP2V2YWwoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyopKlwoKFwyfFw=KVwoW15cKV=qW1wpXHNdKzsoXHMqcmV=dXJuW147XSo7XHMqXH=pP1xzKlx9XHMqKFwvXC8uKlxzKikqL2kiO31zOjI1OiJpZnJhbWUgc21hbGwgaGVpZ2h=fHdpZHRoIjthOjI6e2k6MDtzOjU6IkgzRkU4IjtpOjE7czoxNTY6Ii8oPHNjcmlwdFtePl=rc3JjPVsnIl=_aHR=cFw6XC9cLyhbYS16XC5cLTAtOV=rKVtePl=qPjxcL3NjcmlwdD4pPzxpZnJhbWUuKj8oXHMqKGhlaWdodHx3aWR=aHxzcmMpPVsnIl=_KFswLTVdWyciXHNdfGh=dHBcOlwvXC9bXj5dKz8pKXszfVtePl=qPjxcL2lmcmFtZT4vaSI7fXM6NDk6InBocCBnbG9iYWwgYXJyYXkgZnVuY3Rpb25fZXhpc3RzIHJldHVybiBmb3IgdW5zZXQiO2E6Mjp7aTowO3M6NToiRUM4MU8iO2k6MTtzOjI2MToiL2dsb2JhbCAoXCRbYS16MC=5XF9dKyk7XHMqXDFbXHM9XSthcnJheVwoLis_ZnVuY3Rpb25fZXhpc3RzXChbXlwpXStbXClcc1wmXStcIWZ1bmN=aW9uX2V4aXN=c1woWyciXShbYS16MC=5XF9dKylbJyJdW1wpXHNce1=rZnVuY3Rpb25ccytcMlwoW15cKV=rW1wpXHNce1=rZ2xvYmFsIFwxOy4rP3JldHVyblteO1=qWztcc1x9XStmb3JccypcKFteXCldKltcKTtcfV=rKFx7XHMqW1wkYS16MC=5XF9dK1woW15cKV=rW1wpO1x9XSspP3Vuc2V=XChcMVwpOy9pIjt9czoxMzoiZXZhbCBwYWNrIEhleCI7YToyOntpOjA7czo1OiJGOFREbyI7aToxO3M6MzI1OiIvKFwvXCouKj9cKlwvXHMqfFwkW2Etel8wLTlcWyciXF1cc1=rPVxzKihbJyJdKS4qP1wyO1xzKikqKGlmW1xzXChcIV=rZnVuY3Rpb25fZXhpc3RzW1woXHNdKyhbJyJdKShbYS16XzAtOV=rKVw=W1wpXHNdK1x7XHMqKT8oZnVuY3Rpb25ccysoW2Etel8wLTldKylcKFteXCldKltcKVxzXStce1teXH1dK3BhY2tcKFsnIl1IXCpbJyIsXHNcLjAtOUEtRl=rW1wpO1xzXStyZXR1cm5bXjtdKls7XHNdK1x9Wztcc1=rKT9ldmFsXCgoXDVcKFteXCldKltcKTtcc1x9XSt8XDdcKFteXCldKltcKTtcc1=rfHBhY2tcKFsnIl1IXCpbJyIsXHNcLjAtOUEtRl=rW1wpO1xzXSspL2lzIjt9czo=NzoicGhwIEhUVFBfVVNFUl9BR=VOVCBpZiBoZWFkZXIgTG9jYXRpb24gaHR=cCAucnUiO2E6Mjp7aTowO3M6NToiRzMxTFIiO2k6MTtzOjMxMDoiLzxcP1twaFxzXSooXCRbYS16XzAtOV=rKVxzKj1ccyooYXJyYXlcKFteXCldK1wucnVbJyJdXCkrO1xzKihcJFthLXpfMC=5XSspXHMqPVxzKlwxXFsuKztccyooXCRbYS16XzAtOV=rKVxzKj1bXHNcKF=qcHJlZ19tYXRjaFxzKnxcJF9TRVJWRVJcW1siJ11IVFRQX1VTRVJfQUdFTlRbJyJdXF=7XHMqaWZbXHNcKF=rW1wkYS16XzAtOV=rKVwoLiooXDN8XDEpLipbXClcc1x7XStoZWFkZXJcKFsnIl1Mb2NhdGlvbjpccyooaHR=cDpcL1wvLitcLnJ1XC8uKnxbJyJcLlxzXSt8XDF8XDN8XDQpK1wpO1tcc2RpZVwoXCk7XH1dKihcPz5ccyp8JCkvaSI7fXM6ODQ6InJlcXVpcmVfb25jZSB3cC11cGRhdGUucGhwIFJFTU9URV9BRERSIEhUVFBfVVNFUl9BR=VOVCByZXF1aXJlX29uY2Ugd3AtY2xhc3MucGhwIGRpZSI7YToyOntpOjA7czo1OiJGM=tHciI7aToxO3M6MTk2OiIvPFw_Lis_cmVxdWlyZV9vbmNlW1xzXCgiJ1=rd3AtdXBkYXRlXC5waHBbIidcKTtcc1=rXCRpcCA9IFwkX1NFUlZFUlxbWyInXVJFTU9URV9BRERSWyInXVxdOy4rP1wkX1NFUlZFUlxbWyInXUhUVFBfVVNFUl9BR=VOVFsiJ11cXS4rP3JlcXVpcmVfb25jZVtcc1woIiddK3dwLWNsYXNzXC5waHBbIidcKTtcc1=rZGllXCguKz8oJHxcPz4pL2lzIjt9czozNjoiZXZhbCBkZWNvZGVVUklDb21wb25lbnQgRW5jb2RlZC1=ZXh=IjthOjI6e2k6MDtzOjU6Iko=SEp1IjtpOjE7czozNTU6Ii8oXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyp8ZXJyb3JfcmVwb3J=aW5nXChbMFwpO1xzXSt8XCRbYS16XzAtOVxbXF1ce1x9JyJdK1xzKj1bXjtdKztccyp8XC9cL1teXG5dKlxuXHMqKSpldmFsKFxzKlwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvKSpbXHNcKF=rKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSooZ3p1bmNvbXByZXNzfHJhd3VybGRlY29kZXxkZWNvZGVVUklDb21wb25lbnRcKChbJyJdKS4qXDgpKFxzKlwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvKSpccyooXCh8XCkpW147XSo7XHMqKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC8uK1xzKikqL2kiO31zOjg2OiJmdW5jdGlvbnMgQkROIFNWQiBTQ2sgR=NrIGlmIGNvb2tpZUVuYWJsZWQgR=NrIGVsc2UgU=NrIGlmIGxvYWRlZCBTVkIgYWRkRXZlbnRMaXN=ZW5lciI7YToyOntpOjA7czo1OiJFQ=ZHWiI7aToxO3M6NDMwOiIvZnVuY3Rpb24gQkROXCguKz9mdW5jdGlvbiBTVkJcKC4rP2Z1bmN=aW9uIFNDa1woLis_ZnVuY3Rpb24gR=NrXCguKz9yZXR1cm4gdW5lc2NhcGVcKGRvY3VtZW5=XC5jb29raWVcLnN1YnN=cmluZ1woW15cKV=rW1wpO1xzXH1dK2lmW1xzXChdK25hdmlnYXRvclwuY29va2llRW5hYmxlZFtcKVxzXHtdK2lmW1xzXChcIV=rR=NrXChbXlx7XStce1tcfWVsc2Vce1xzXSpTQ2tcKFteXCldK1tcKTtcc1=raWZbXHNcKF=rZG9jdW1lbnRcLmxvYWRlZFtcKVx7XHNdK1NWQlwoW15cKV=qW1wpO1xzXH1dK2Vsc2VbXHtcc1=raWZbXHNcKF=rd2luZG93XC5hZGRFdmVudExpc3RlbmVyW1wpXHtcc1=rd2luZG93XC5hZGRFdmVudExpc3RlbmVyXChbXlwpXStbXCk7XHNcfV=rZWxzZVtce1xzXSt3aW5kb3dcLmF=dGFjaEV2ZW5=XChbXlwpXStbXCk7XHNcfV=rL2lzIjt9czoxODoiZGl2IHN=eWxlIG9wYWNpdHkwIjthOjI6e2k6MDtzOjU6Iks2REpzIjtpOjE7czoyMjU6Ii88KGRpdnxmb25=fGEpXHMrKD89W15cPl=qc3R5bGU9WyciXVteXD5dKihoZWlnaHR8d2lkdGh8b3BhY2l=eXxmb25=LXNpemUpXHMqLlxzKjAoW15cLl18XC5bMC=xXSkpW14-XSooKD5bYS16XCZcI1whMC=5O1xzXSo8YVxzKyk_KD89W15cPl=qaHJlZj1bJyJdaHR=cCg_IXNcOlwvXC9wcmVtaW9cLmlvXC8pKVtePF=qPFwvKGF8XDEpPykrKD5bYS16XCZcI1whMC=5O1xzXSo8XC8pP1wxPi9pcyI7fXM6NDQ6InBocCBlcnJvcl9yZXBvcnRpbmcgTG9uZyBtYWlsIHByaW5=X3IgU=VSVkVSIjthOjI6e2k6MDtzOjU6Iko2T=lkIjtpOjE7czozNTE6Ii88XD9bcGhcc1=qKGVycm9yX3JlcG9ydGluZ1woLns5OTk5LH18XC9cL1teXG5dKlxuXHMqfFwkW2Etel8wLTldK1tcc1wuXSo9W147XSs7XHMqKSsoaWZccypcKFteXCldK1tcKVxzXHtdK2RpZVtcc1woXStbXjtdKztbXHNcfV=qKSooaWZccypcKFteXCldK1tcKVxzXHtdKykqKGZvcmVhY2h8d2hpbGUpXHMqXChbXlwpXStbXClcc1x7XSsobWFpbFxzKlwoLitccyopKyhbXHNcfV=qaGVhZGVyW1xzXCgnIl=rTG9jYXRpb24uK3xccypwcmludF9yXChcJF9TRVJWRVIuK3xccyplY2hvLitccypcJFthLXpfMC=5XCs7XSspK1tcfVxzXSooXD8-KChccypbXFs8XWh=bWxbXF=-XSl7Mn1bXiRdKzxcL2h=bWw-KT98JCkvaSI7fXM6Njc6ImlmICFmdW5jdGlvbl9leGlzdHMgZnVuY3Rpb24gY3VybCByZXR1cm4gZnVuY3Rpb24gaW5jbHVkZSBmdW5jdGlvbnMiO2E6Mjp7aTowO3M6NToiRUNNMjQiO2k6MTtzOjI4NzoiL2lmXHMqXChccypcIWZ1bmN=aW9uX2V4aXN=c1woWyInXShbYS16XzAtOV=rKVsnIl1cKVtcKVxzXHtdKmZ1bmN=aW9uXHMqXDFcKFteXCldK1wpW1wpXHNce1=rKFteXG5dKmN1cmxfW15cbl=rXHMrKStyZXR1cm5bXlxuXStbXHMrXH1dK2Z1bmN=aW9uXHMqW2Etel8wLTldK1woW15cKV=qXClbXClcc1x7XSsoKFwkW2Etel8wLTldKylccyo9XHMqKFthLXpfMC=5XSspXChbXlxuXStccyspK2luY2x1ZGVbXChcc1=rXDQuKz9mdW5jdGlvblxzK1w1Lis_KCR8KD89ZnVuY3Rpb24gKXwoPz1cP1w-KSkvaXMiO31zOjU5OiJpZiAhY3VycmVudF91c2VyX2NhbiBhZGRfZmlsdGVyIGZ1bmN=aW9uIGEgaHJlZiBodHRwIHJldHVybiI7YToyOntpOjA7czo1OiJFQ==zUiI7aToxO3M6MjY1OiIvaWZccypcKFxzKlwhY3VycmVudF91c2VyX2NhblwoW15cKV=rW1wpXHNce1=qYWRkX2ZpbHRlcltccypcKF=rW14sXSssXHMqWyInXShbYS16XzAtOV=rKVsnIl1cKVtcKTtcc1x9XStmdW5jdGlvblxzKlwxXCguKz9hZGRfZmlsdGVyW1xzKlwoXStbXixdKyxccypbIiddKFthLXpfMC=5XSspWyciXVwpW1wpO1xzXH1dKy4rcmV=dXJuW147XSpbO1xzXH1dK2Z1bmN=aW9uXHMqXDJcKC4rPzxhIGhyZWY9WyciXWh=dHA6XC9cLy4rcmV=dXJuW147XSpbO1xzXH1dKy9pIjt9czo1OToicGhwIEFycmF5IGZ1bmN=aW9uIHJldHVybiBiYXNlNjRfZGVjb2RlIGV2YWwgRnVuY3Rpb24gQXJyYXkiO2E6Mjp7aTowO3M6NToiSjM1Rm=iO2k6MTtzOjQwMjoiLzxcP1twaFxzXSooXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyp8XC9cL1teXG5dKlxzKikqKFwkW2Etel8wLTldK1xzKj1bXjtdK1s7XHNdK3woXCRbXCRce1=qW2Etel8wLTldK1x9KihccypcW1teXF1dK1xdKSopXHMqPVxzKmFycmF5KSouKz9mdW5jdGlvbiAoW2Etel8wLTldezExfSlbYS16XzAtOV=qXCguKz9yZXR1cm4gYmFzZTY=X2RlY29kZS4rKGV2YWx8XCRbYS16XzAtOV=rXHMqKFxbW15cXV=rXF=rXHMqKSopXChccyooKFw=fFw1fFw2fFw3KVteO1=rWztcc1x9XD8-PHBoXSt8LisoZWxzZVtcc1x7XSt8YWRkX2FjdGlvblwoW14sXSssW1xzJyJdKylcNlteO1=rO1tcfVxzXSopKyhcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcL1wvW15cbl=qXHMqKSooJHxcPz4pL2lzIjt9czozODoicGhwIFZhciBBcnJheSBDb25jYXQgVmFyaWFibGUgRnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiSkJRQ3giO2k6MTtzOjQ=NDoiLzxcP1twaFxzXSsoXC9cL1teXG5dKlxzK3woaWZbXHNcKF=raXNzZXRcKHxmdW5jdGlvblxzK1thLXpfMC=5XStcKFteXHtdK1tce1xzXSsuK3JldHVybilbXjtdKztbXHNcfV=rKSooKChcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxpZlxzKikrXChpc3NldFtcc1woXStbXCRceyciX1=rW15ce1=rW1x7XHNdKik_KChcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcJFthLXpfMC=5XSsoXHMqXFtbXlxdXSpcXSkqXHMqKSs9W147XSo7XHMqfGZvcihlYWNoKT9ccypcKFteXHtdK1x7W15cfV=rXH1ccyopKykrKChmdW5jdGlvblxzK1thLXpfMC=5XStcKFteXHtdK1tce1xzXSsuKj8pP1wkW1wkXHtdKlthLXpfMC=5XStbXH1cc1=qKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFxbW15cXV=rXF1ccyopKlwoLio7W1x9XHNdKikrKCR8XD8-KS9pIjt9czo2MzoicGhwIGFycmF5IGltcGxvZGUgZnVuY3Rpb24gVmFyIEhleCByZXR1cm4gVmFyaWFibGVGdW5jdGlvbiBldmFsIjthOjI6e2k6MDtzOjU6Iko=RktGIjtpOjE7czoyMTA6Ii88XD9bcGhcc1=rKChcJFthLXpfMC=5XSspXHMqPVteO1=rWztcc1=rfGZ1bmN=aW9uIChbYS16XzAtOV=rKVwoW15cKV=rW1wpXHtcc1=rLipccyooKFwkW2Etel8wLTldKylccyo9W1xzJyJdKyhcXCh4WzAtOWEtZl17Mn18WzAtOV=rKSkrWyciXTtccyopKykrLipccypldmFsXHMqXCgoXHMqKFwzfFwyfFw1KVxzKlwoKXsyLH1bXjtdK1s7XHNdKy4rPygkfFw_PikvaSI7fXM6NTg6InBocCBhcnJheSBpZiBTRVJWRVIgaWYgaXNib3QgZmlsZV9nZXRfY29udGVudHMgaGVhZGVyIGh=dHAiO2E6Mjp7aTowO3M6NToiRkFWRjkiO2k6MTtzOjI5ODoiLzxcP1twaFxzXSsoKGVycm9yX3JlcG9ydGluZ3xpbmlfc2V=KVxzKlwoW147XSo7XHMqKSooXCRbYS16XF8wLTldK1xzKj1bXjtdK1s7XHNdKykrKGlmW147XStcJGlzYm9=W147XStbO1x9XHNdKykrKC4rPyhcJFthLXpfMC=5XSspXHMqPVxzKihmaWxlX2dldF9jb25=ZW5=c3xjdXJsX2V4ZWMpXHMqXChbXlx9XStbXH1cc1=rKSsoKFwkW2EtelxfMC=5XSspXHMqPVteO1=qXDZbXjtdKls7XHNdKykqLisoKFw2fFw5KVteO1=rWztcfVxzXSsoKGhlYWRlcnxlY2hvfHByaW5=KVteO1=rWztcfVxzXSspKykrKCR8XD8-KS9pcyI7fXM6NDM6InBocCBSRVFVRVNUIGFycmF5IFJFUVVFU1QgYXJyYXlfZmlsdGVyIGV4aXQiO2E6Mjp7aTowO3M6NToiRUNRQ3AiO2k6MTtzOjE5NjoiLzxcP1twaFxzXSsoXCRbYS16XF8wLTldKylccyo9XHMqXCRfKFJFUVVFU3xHRXxQT1MpVFxbW147XStbO1xzXSsoXCRbYS16XF8wLTldKylccyo9XHMqYXJyYXlcKFwkXyhSRVFVRVN8R=V8UE9TKVRcW1teO1=rWztcc1=rXCRbYS16XF8wLTldK1xzKj1ccyphcnJheV9maWx=ZXJcKFwzWyxcc1=qXDFcKVtkZXhpdFwoXCk7XHNdKigkfFw_PikvaSI7fXM6NTA6InBocCBiYXNlNjRfZGVjb2RlIGNyZWF=ZV9mdW5jdGlvbiBWYXJpYWJsZUZpbmN=aW9uIjthOjI6e2k6MDtzOjU6IkY4Qko4IjtpOjE7czoyNTQ6Ii88XD8uKz8oXCRbYS16XzAtOV=rKVxzKj1ccypiYXNlNjRfZGVjb2RlXCguKz8oKFwkW2Etel8wLTldKylccyo9XHMqKFxAPyhnemluZmxhdGV8c3RycmV2KVwoKStcMS4rPyk_KFwkW2Etel8wLTldKylccyo9XHMqY3JlYXRlX2Z1bmN=aW9uXChbXixdK1ssXHNdKyhcMXxcMylbXjtdK1s7XHNdK1w2XChbXjtdK1s7XHNcfV=rKGVsc2VbXHtcc1=rW15cfV=rWztcc1x9XSt8ZWNob1tcc1woXSooWyciXSkuKz9cOVs7XHNcfV=rKSooJHxcPz4pL2lzIjt9czo=NzoicGhwIGZ1bmN=aW9uIHdwX2VucXVldWVfc2NyaXB=IGpzb24yIGFkZF9hY3Rpb24iO2E6Mjp7aTowO3M6NToiSjNLSFoiO2k6MTtzOjQwMjoiLyhcL1wqW15cKl=qKFwqW15cKlwvXSopK1wvXHMqKSooaWZbXHNcKFwhXStmdW5jdGlvbl9leGlzdHNcKFxzKlsnIl=oW2Etel8wLTldKylbJyJdW1xzXCldK1x7XHMqKT9mdW5jdGlvblxzKyhbYS16XzAtOV=rKVxzKlwoW15ce1=rXHtccyooKGlmW1xzXChcIV=raXNzZXRbXChcc1=rW15cKV=rW1xzXCldK1tce1xzXSopPyhcJFthLXpfMC=5XStccyo9W147XSs7XHMqKSooXCRbYS16XzAtOV=rXHMqPVxzKik_KGV2YWx8XCRbYS16XzAtOV=rKVxzKlwoLio_YmFzZTY=X2RlY29kZVwofChlY2hvfHByaW5=KVtcc1woJyJdKzxzY3JpcHQuKz9mcm9tQ2hhckNvZGVcKC4rP2RvY3VtZW5=XC53cml=ZVwoKS4rP2FkZF9hY3Rpb25ccypcKFtccyInXSpbXixdK1snIlwsXHNdKyhcNHxcNSlbJyJcKTtcc1=rL2lzIjt9czo2MToicGhwIGlmIGZ1bmN=aW9uX2V4aXN=cyBmdW5jdGlvbiByZXR1cm4gVmFyaWFibGUgRnVuY3Rpb24gZXZhbCI7YToyOntpOjA7czo1OiJJOTFKYSI7aToxO3M6MjY3OiIvPFw_W3BoXHNdKigoXC9cKlteXCpdKihcKlteXCpcL1=qKStcL1xzKikqKFwkW2Etel8wLTldK1xzKihcW1teXF1dK1tcXVxzXH1dKykqPVteO1=rO1xzKikrKChpZltcc1woXStcIWZ1bmN=aW9uX2V4aXN=c1woW15ce1=rW1x7XHNdKyk_ZnVuY3Rpb25cc1teXHtdK1x7XHMqKSooXCRbYS16XzAtOV=rXHMqPVteO1=rWztcc1=rfGZvclteXHtdK1x7W15cfV=rXH1ccyopKihyZXR1cm4gXCRbYS16XzAtOV=rfGV2YWwpXHMqXChbXjtdK1s7XH1cc1=rKSsoJHxcPz4pL2kiO31zOjQzOiJMZWZ=b3ZlciBIZWFkZXIgaWYgR=xPQkFMUyBIZXggU=VSVkVSIEhleC9pIjthOjI6e2k6MDtzOjU6Iko=Q=g2IjtpOjE7czoxMjY6Ii8oKFwkW2Etel8wLTldKylccyo9XHMqZnNfcmVxdWVzdF9nZXRcKFteO1=rWztcc1=rKXsyfWlmXHMqXChbXlx7XStcMlteXHtdK1tce1xzXSt1cGRhdGVfb3B=aW9uXHMqXChbXixdKyxccypcMlteO1=rWztcc1x9XSsvaSI7fXM6NTM6ImlmIEhUVFBfVVNFUl9BR=VOVCBhZGRfYWN=aW9uIHdwX2Zvb3RlciBmdW5jdGlvbiBlY2hvIjthOjI6e2k6MDtzOjU6IkYxOEZCIjtpOjE7czoyMTU6Ii8oXCRbYS16XF8wLTldKyhcW1teXF1dK1tcXV=rKSpccyo9XHMqZ2V=X29wdGlvblwoW147XStbO1xzXStpZlxzKlwoW15ce1=rSFRUUF9VU=VSX=FHRU5UW15ce1=rW1x7XHNdK2FkZF9hY3Rpb25cKFsnIlxzXSt3cF9mb29=ZXJbJyJccyxdKyhbYS16XF8wLTldKylbJyJcc1=rW147XStbO1xzXH1dKykrZnVuY3Rpb25ccytcM1teXHtdK1tce1xzXSsoW15cfV=rXHMqKStcfS9pIjt9czozMDoiZGl2IGRpc3BsYXkgbm9uZSBocmVmIGh=dHAgYnV5IjthOjI6e2k6MDtzOjU6IkYzSDBWIjtpOjE7czoxMjY6Ii88KChkaXYpfChhKSlccytbXj5dKyhkaXNwbGF5W1xzXDpdK25vbmVbXj5dK3woPlxzKjwoYSlccytbXj5dKik_aHJlZls9JyJdK2h=dHBbXj5dKyl7Mn=-Lio_YnV5Lio_XHMqPFwvKFwzfFw2PlxzKjxcL1wyKT5ccyovaSI7fXM6ODU6IkNvcHlyaWdodCBmdW5jdGlvbiBzZXRDb29raWUgcmV=dXJuIGZ1bmN=aW9uIHVzZXJBZ2VudCBzZXRDb29raWUgd3JpdGUgaWZyYW1lIHRvcCBOZWciO2E6Mjp7aTowO3M6NToiSDdORVkiO2k6MTtzOjQxNzoiLyg8KHNjcmlwdClbXj5dKj5ccyopKFwvXCpccypDb3B5cmlnaHQuK1xzKlwqXC9ccyp8KFwkfHZhclxzKyk_W2Etel8wLTlcc1=rPVteO1=rO1xzKnxzZXRUaW1lb3V=XChbXjtdKztccyopKihmdW5jdGlvbiBbc2ddZXRDb29raWVcKC4rPygoZG9jdW1lbnRcLmNvb2tpZT18cmV=dXJuKVteXH1dK1s7XH1cc1=rKSspKy4rP1tzZ11ldENvb2tpZVwoLis_ZG9jdW1lbnRcLndyaXRlXCgoWyInXSk8KHNjcmlwdHxpZnJhbWUpW14-XSsoc3JjPVsnIlwrXHNodHBzXDpdK1wvXC98dG9wOlxzKlwtKSgoLis_ZG9jdW1lbnRcLmNvb2tpZXwuKz9cLnRvVVRDU3RyaW5nKXsyfVtcKFwpXH1dK3wuKz9lbmNvZGVVUklDb21wb25lbnRcKGRvY3VtZW5=XC5yZWZlcnJlclwpKT8uKz9cOFwvXDk-XDhbXjtdK1tcKTtcfVxzXSsoPFwvXDI-fCQpL2lzIjt9czoxNToicGhwIExvdHMgb2YgSGV4IjthOjI6e2k6MDtzOjU6Ikk1NjZlIjtpOjE7czoxODc6Ii9eKDxcP1twaFxzXSsoXC9cKi4qP1wqXC9ccyp8XCRbYS16XzAtOV=rXHMqPVteO1=qO1xzKikqKFwkW2Etel8wLTldK1xzKj1ccyopP2V2YWxcKCguKz9cXHhbMC=5QS1GXXsyfSl7NTJ9W15cbl=qfFxceEVGXFx4QkJcXHhCRlxzKjxcIURPQ1RZUEUuKz9ldmFsXCguKzxcL2JvZHk-XHMqPFwvaHRtbD4pK1xzKigkfFw_PikvaXMiO31zOjYxOiJzY3JpcHQgZG9jdW1lbnQgd3JpdGUgZGl2IGFuY2hvciBzY3JpcHQgZG9jdW1lbnQgd3JpdGUgRU5EZGl2IjthOjI6e2k6MDtzOjU6IkdCUjhLIjtpOjE7czoxODY6Ii88c2NyaXB=W14-XSo-XHMqZG9jdW1lbnRcLndyaXRlXChbIiddKFtcPGRpdl1bIicgXCtdKil7NH1bXj5dKj5bIiddXCk7XHMqPFwvc2NyaXB=PlxzKig8YSAuKz88XC9hPlxzKikrPHNjcmlwdFtePl=qPlxzKmRvY3VtZW5=XC53cml=ZVwoWyInXShbXDxcL2Rpdl1bIicgXCtdKil7NX=-WyInXVwpO1xzKjxcL3NjcmlwdD4vaSI7fXM6NDM6ImVjaG8gZGl2IHBvc2l=aW9uIGFic29sdXRlIG5lZ2F=aXZlIGFuY2hvcnMiO2E6Mjp7aTowO3M6NToiTDJFRWsiO2k6MTtzOjM5NToiLyg_PCFbJyJdKTwoaHRtbD4pP1tcczxdKigoKHNjcmlwdClbXj5dKj5ccypkb2N1bWVudFwud3JpdGVbXChccyciXSs8KT9kaXZ8KHN=eWxlKVtePl=qPlxzKltcLlwjXShbYS16X1wtMC=5XSspW1xzXHtdKykoW15cfVw-XSooKGhlaWdodHx3aWR=aClcOlxzKjBwfChsZWZ=fHBvc2l=aW9ufHRvcHxvcGFjaXR5fGZpbHRlcnxkaXNwbGF5fHRleHQtaW5kZW5=KVw6XHMqKGFscGhhXChvcGFjaXR5PTB8MD9cLnxcLVswLTlcLl17Myx9fG5vbmV8YWJzb2x1dGUpKSl7Myx9W14-XSo-WyciXCk7XHNdKig8XC9cNT4pPy4qPzwoKChbYi1zXVthLXowLTldKilbXj5dKj5bLlxzXSo8KSphIC4rPzxcL2EoPltePF=qPChcLyhbXmRdW2EtejAtOV=qfFwxNSkpPykqKSs-KFxzKjxcLyhcMnxkaXYpPikqL2kiO31zOjQxOiJQSFAgR2FyYmFnZSBBcm91bmQgZXZhbCBWYXJpYWJsZSBGdW5jdGlvbiI7YToyOntpOjA7czo1OiJGMkNKZCI7aToxO3M6MTUxOiIvPFw_W3BoXHNdK1wkW2EtelxfMC=5XStccyo9KFxzKicuKydbXClcLl=rKSsoXHMqJy4rZXZhbFxzKlwoXCRbXCRce1=qW2EtelxfMC=5XStbXH=gXHRdKihcW1teXF1dK1xdWyBcdF=qKSpcKC4rJ1tcKVwuXSspKFxzKicuKydbXC47XCldKykrXHMqKFw_PnwkKS9pIjt9czo3Njoic3RyaXBzbGFzaGVzIFJFUVVFU1QgaWYgZWNobyByZXR1cm4gZm9wZW4gZndyaXRlIGZjbG9zZSBlY2hvIGZ1bmN=aW9uIHJldHVybiI7YToyOntpOjA7czo1OiJJMjZIMiI7aToxO3M6MzE=OiIvKFxceEVGXFx4QkJcXHhCRik_PFw_W3BoXHNdKyhcJFthLXpfMC=5XStccyo9XHMqKHN=cmlwc2xhc2hlc1tcKFxzXSspP1wkXyhSRVFVRVN8R=V8UE9TKVRcW1siJ11bXjtdKls7XHNdKykrKGlmW1woXHNdK1wkW15ce1=qW1x7XHNdK2VjaG9ccypbIiddW147XStbO1xzXStyZXR1cm5bXjtdKjtbXHNcfV=rKSsuKz9mb3BlblwoLis_ZndyaXRlXCguKz9mY2xvc2VcKFteO1=qWztcc1=rZWNob1xzKlsiJ11bXjtdK1s7XHNdKyhmdW5jdGlvbi4rP1tybWtdezJ9ZGlyXChbXjtdKztbXHNcfV=rKHJldHVyblteO1=qO1tcc1x9XSspKikrKCR8XD8-KS9pcyI7fXM6MjU6IlZhciBIZXggVmFyaWFibGUgRnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiSjdUOUciO2k6MTtzOjI2NToiLygoKFwkW2Etel8wLTlcc1wuXSs9W147XSs7XHMqKSpcJCg_IWtfb3BhZClbYS16XzAtOV=rW1xzXC5dKj=oW147XSpcXCh4WzAtOWEtZl17Mn18WzAtOV17MiwzfSkpK1teO1=qO1xzKikrKSsoaWZccypcKFteXHtdK1x7XHMqKT8oKFwkW2Etel8wLTldK1xzKj1ccyopP1xAP1wkW2Etel8wLTldKyhccypcW1teXF1dK1xdKSpcKChbXjtdKzsoPz1cKSkpKlteO1=rO1xzKikrW1x9XHNdKihcL1wvLitccyp8ZWNob1tcc1woXSooWyciXSkuKlwxMltcKTtcc1=qKSovaSI7fXM6ODk6ImluaV9zZXQgaWYgaXNzZXQgYXJyYXkgYmFzZTY=X2RlY29kZSBmdW5jdGlvbiByZXR1cm4gYmFzZTY=X2RlY29kZSBldmFsIFZhcmlhYmxlIEZ1bmN=aW9uIjthOjI6e2k6MDtzOjU6Ikk5VUozIjtpOjE7czo=OTA6Ii88XD9bcGhcc1=rKFtpZlxzXChcIVxAXSooaW5pX3NldFxzKlwofGVycm9yX3JlcG9ydGluZ1xzKlwofHNldF9=aW1lX2xpbWl=XHMqXCh8aXNzZXRccypcKHxkZWZpbmV8Z2xvYmFsfFwkW1x7XCRhLXpfMC=5XH1cW1xcJyJcXVxzXSs9KVteO1=rO1tcfVxzXSp8Zm9yZWFjaFtcc1woXStbXlx7XSo_XCRfQ=9PS=lFW15ce1=rXHtbXlx9XStbXHNcfV=rKSsoZnVuY3Rpb25ccyooW2Etel8wLTldKylccypcKC4rPyhyZXR1cm5bXHNcKF9dKihcNHxiYXNlNjRfZGVjb2RlKXxcJFthLXpfMC=5XStccyooXFtbXlxdXSpcXVxzKikqKVwoLis_KSsoPzwhXC9cLyxmdW5jdGlvblwocmVzcG9uc2VcKSBceyApZXZhbFwoLis_XCkrO1tcc1x9O1=rKC4qZnVuY3Rpb25bXHNcKF9dK1w2W15ce1=rW1x7XHNdKyhcJFthLXpfMC=5XSspXHMqPS4rP3JldHVyblteO1=qXDlbXjtdKls7XHNcfV=rKT8oXD8-XHMqKFwjXCFbXC9hLXpfXC=wLTlcKz1cc117MjAwLH=kKT98JCkvaXMiO31zOjQ2OiJjbGFzcyBjb25zdCBwYWNrIEgqIGZ1bmN=aW9uIGluY2x1ZGUgbmV3IENsYXNzIjthOjI6e2k6MDtzOjU6Iks5NUNIIjtpOjE7czoyODA6Ii9jbGFzc1xzKyhbYS16XzAtOV=rKVxzKlx7KCg_PS4rXCRxU3RyaW5nW1xzPV=rXCR=aGlzLVw-KFthLXpfMC=5XSspXCgpfC4rP2NvbnN=XHMrKFthLXpfMC=5XSspXHMqPS4rP3NlbGZcOlw6KFthLXpfMC=5XSspXChwYWNrXCgnSFwqJ1ssXHNdK3NlbGZcOlw6XDQpLis_ZnVuY3Rpb25ccysoXDN8XDUpXCgoXCRbYS16XzAtOV=rKS4rPyhcJFthLXpfMC=5XSt8XEA_KGJhc2U2NF9kZWNvZGV8aW5jbHVkZXxyZXF1aXJlKShfb25jZSk_KVxzKlwoW147XSpcNy4rbmV3XHMrXDFbXjtdKjsvaXMiO31zOjE=OiJldmFsIHN=cl9yb3QxMyI7YToyOntpOjA7czo1OiJGOVBDbCI7aToxO3M6MTU5OiIvKFwvXC8uKyk_XHMqKChpbmlfc2V=XCh8ZXJyb3JfcmVwb3J=aW5nXCh8XCRbYS16XzAtOV=rW1xzXC5dKj=pW147XSo7XHMqKSpcQD8oZXZhbHxhc3NlcnR8XCRbYS16XF8wLTldKyhccypcW1teXF1dK1xdKSopXHMqXChccypzdHJfcm9=MTNcKCcuKidcKVwpOyhccypcMSk_L2kiO31zOjMyOiJwaHAgR=xPQkFMUyBIZXggZnVuY3Rpb24gaWYgZXZhbCI7YToyOntpOjA7czo1OiJLODRLcSI7aToxO3M6ODE=OiIvPFw_W3BoXHNdKihcJFthLXpfMC=5XStccyo9W147XSs7XHMqKSooXHMqXCQoR=xPQkFMU3xbXHtcJCciXStbMC=5X1wtYS16XFwnIlwuXStbXH1cc1=rKVtcc1xbXHsnIl=rKFthLXpfMC=5XSspWyInXH1cXVxzXSsoW147XSo7XHMqZ2xvYmFsXHMqXCRcNFteO1=qO1xzKlwkXDRccyo9XHMqXCRHTE9CQUxTW147XSo7XHMqXCQoXDR8XHtbXlx9XSpcfSspXHMqKFxbW15cXV=rW1xdXHNdK3xce1teXH1dK1tcfVxzXSspKyk_PVxzKlsnIl=oXFx4WzAtOWEtZl17MSwyfSkrWyInXTtccyooKGVjaG98cHJpbnQpP1tcc1xAXSpcJChHTE9CQUx8XDQpW147XSs7XHMqfFwkW2Etel8wLTldK1xzKihbXC49XStccypcQD8oTlVMTHwoYXJyYXlbXChcc1=rKT9cJChHTE9CQUx8XDQpW147XSp8XCRbYS16XzAtOV=rKFxbW15cXV=rW1xdXHNdK3xce1teXH1dK1tcfVxzXSspKnxbIiddKykpKztccyp8Z2xvYmFsXHMqXCRbXjtdKztccyp8ZnVuY3Rpb25ccytbMC=5X2Etel=rXHMqXChbXlx7XSt8XHtccyp8XH1ccyp8KGZvcihlYWNoKT98KGVsc2VccyopP2lmKVxzKlwoLis_XCkrXHMqfHJldHVyblteO1=qO1tcc1x9XSspezMwLH=pKmV2YWwoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyopKlwoKD8hIiBcPz4iLlwkR=xPQkFMU1xbJ=94eWdlbl9WU=JfQ3VycmVudF9Db21tZW5=c19DbGFzcykuKz9cKSsoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyopKjtbXHNcfV=rKGV4aXRbXjtdKjtbXHNcfV=rfFw_PlxzKjxcP1twaFxzXStcJFthLXpfMC=5XStccyo9XHMqYXJyYXlcKFteXCldKlwpKy4rO1xzKikqKCR8XD8-KS9pIjt9czozNjoicGhwIGlmIGlzc2V=IFBPU1QgYmFzZTY=X2RlY29kZSBtYWlsIjthOjI6e2k6MDtzOjU6Iks4VkVwIjtpOjE7czo1Nzk6Ii88XD9bcGhcc1=qKChcJChbMC=5X2Etel=rKVxzKj1ccypleHBsb2RlW14sXSssXHMqYmFzZTY=X2RlY29kZVwoW147XSs7XHMqfChpbmlfc2V=fHNlc3Npb25fc3RhcnQpXChbXjtdKztccyp8KChpZnxpc3NldHxmb3JlYWNoKVtcc1woXSspK1wkXyhSRVFVRVNUfEdFVHxQT1NUfFNFUlZFUikuW15ce1=rXHtccyopPygoXCRbYS16XzAtOV=rKVtcc1wuXSo9W2Etel8wLTlcc1woXSpbXCQiZiddKFwzfF9SRVFVRVNUfF9HRVR8X1BPU1R8X1NFUlZFUnxSRU1PVEVfQUREUnxodHRwW3NdP1w6XC9cL3xpbGVfZ2V=X2NvbnRlbnRzW1xzXChdKykoW147XSpbXCk7XH1cc1=rZWxzZVtce1xzXSt8ZWNob3xwcmludCkqW147XSpbO1xzXSsoXHMqZXhpdDspP3xcL1wvLitcbispKltcfVxzXSopKygoXCRbMC=5X2Etel=rKVtcc1wuXSo9W147XSs7XHMqKSooKFwkW2Etel8wLTldK1xzKj1ccyp8aWZbXHNcKF=rfGVsc2VbXlx7XSpbXHtcc1=rKSptYWlsXHMqXChbXjtdK1tcKTtcc1x9XSopKygoKGlmW1woXHNdK3xlbHNlKVteXHtdKltce1xzXSspPygoaGVhZGVyfGVjaG98ZXhpdClbXjtdKls7XHNcfV=rKSspKigkfFw_PikvaSI7fXM6MzA6IndwX2VucXVldWVfc2NyaXB=IFNXRUVUQ=FQVENIQSI7YToyOntpOjA7czo1OiJGNlVHbCI7aToxO3M6NjA6Ii93cF9lbnF1ZXVlX3NjcmlwdFwoW14sXSssXHMqWyciXWh=dHAuKz9TV=VFVENBUFRDSEFbXjtdKzsvaSI7fXM6Mzg6InBocCBjbGFzcyBWYXJpYWJsZSBGdW5jdGlvbnMgbmV3IENMQVNTIjthOjI6e2k6MDtzOjU6IkwyMUh=IjtpOjE7czo2NDA6Ii88XD9bcGhcc1=rKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSooKGluaV9zZXR8ZXJyb3JfcmVwb3J=aW5nfHNldF9=aW1lX2xpbWl=KVwoW15cKV=qXCk7XHMqfGNsYXNzXHMrLis_KFwkW2Etel8wLTldKylccyo9W1xzXEBdKmZpbGVfZ2V=X2NvbnRlbnRzXCguKz9yZXR1cm5ccytcNVs7XH1cc1=qfGNsYXNzIEJccypcey4qP3JldHVybiAnVU4nW147XSpbO1x9XHNdK3xmdW5jdGlvblteXChdK2RvbGx5W15ce1=rXHsuKj8ocmV=dXJufGRiRGVsdGEpW147XSpbO1x9XHNdKnxpZltcc1woXCFdK2NsYXNzX2V4aXN=c1tcc1woJyJdKyhbYS16XzAtOV=rQ2FjaGVIZWxwZXIpWyciXClcc1x7XSt8KD89LipyZXR1cm4gbXlmdW5jZ29vZFwoKSkrY2xhc3NccysoW2Etel8wLTldKylccypcey4rKCg_PCEiKVwkW2Etel8wLTlce1x9XSsoXHMqXFtbXlxdXStcXSkqfGZpbGVfcHV=X2NvbnRlbnRzKVxzKlwoLisoXCRbYS16XzAtOV=rfG5ldylbXD1cc1=rKFw1fFw4KShcOlw6Z2V=SW5zdGFuY2UpP1woW15cKV=qXCkrWztcc1=rKChlY2hvfGVsc2UpKltcc1x7XSpbXCRhLXpfMC=5XHtcfV=rKFw6XDp8LT4pW2Etel8wLTlce1x9XStccypcKFteO1=qO1tcc1x9XSopKiguKj9leGl=XChcKTtccyopPygkfFw_PikvaXMiO31zOjE=OiJ2aXNpdG9yVHJhY2tlciI7YToyOntpOjA7czo1OiJKQkI4VyI7aToxO3M6MjQ=OiIvKCg8XCEtLXxcL1wqKXZpc2l=b3JUcmFja2VyKFwqXC98LS=-KXxpZltcc1woXCFdKyhsb2FkU3RhdHMpW1wpXHNce1=rZnVuY3Rpb24gXDRbXChcKVxzXHtdKylccyooPFw_W3BoXHNdKy4rP2Jhc2U2NF9kZWNvZGVccypcKC4rP1w_PnwuKz9kb2N1bWVudFwuY3JlYXRlRWxlbWVudFwoWyciXXNjcmlwdFsiJ11cKTtccyouKz9cLnNyY1xzKj1bXHMnIl=rW2h=cHNcOl=qXC9cLy4rPylccyooXDF8XDRbXChcKVx9O1xzXSspL2lzIjt9czo1ODoiZnNvY2tvcGVuIGZ3cml=ZSB3aGlsZSBmZW9mIGZjbG9zZSBwcmVnX21hdGNoIGd6dW5jb21wcmVzcyI7YToyOntpOjA7czo1OiJGQTVMTyI7aToxO3M6MjMyOiIvKFwkW2Etel8wLTldKylccyo9XHMqXEA_ZnNvY2tvcGVuXChbXjtdKztccyppZltcKFxzXStcMVtcKVxzXSpcey4rP2Z3cml=ZVwoXDFbXjtdKztccyp3aGlsZVtcc1woXCFdK2Zlb2ZcKFwxLis_ZmNsb3NlXChcMVwpO1xzKnByZWdfbWF=Y2hcKFteLF=rLFteLF=rLFxzKihcJFthLXpfMC=5XSspXCk7XHMqaWZbXChcc1=rXDJcWzFcXVtcc1whXSo9Lis_Z3p1bmNvbXByZXNzXChbXjtdKztbXH1cc1=rL2lzIjt9czoyMDoiVGFnZ2VkIGV2YWwgZnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiSjNFQ=MiO2k6MTtzOjEyMzoiLyhcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcLylccyooW1xzYS16XzAtOVw9XStbO1xzXChdKykqd2luZG93W1wuXFsiJ1=rXFx4W147XSs7XHMqZXZhbFtcKFxzXStbXlwpXStbJyJcc1woXCk7XH1dK1wxL2lzIjt9czo=NDoic2NyaXB=IHZhciBodHRwIGlmIGRvY3VtZW5=IHdyaXRlIHNjcmlwdCBzcmMiO2E6Mjp7aTowO3M6NToiRzJDSXciO2k6MTtzOjM1MjoiLyg8c2NyaXB=W14-XSo-XHMqKCh2YXJccyopP1thLXpfMC=5XStccyo9WyciO1xzXSooc2V=VGltZW91dHxlbmNvZGVVUklDb21wb25lbnQpXChbXlwpXSpbJyJcKTtcc117Mix9KSsoW3ZhclxzXSooW2Etel8wLTldKylccyo9XHMqWyciXVtoZnRdK3RwW3NdKjpcL1wvW147XSs7XHMqKCh2YXJccyopPyhbYS16XzAtOV=rKVxzKj1ccypcNlteO1=rO1xzKikrKT9pZlteXHtdK1x7XHMqZG9jdW1lbnRcLndyaXRlXChbIiddPFtzY3JpcHRccyciXCtdezcsfVteXH1dKnNyYz1bJyJcc1wrXSsoXDl8W2ZodF=rdHBbc1=qOlwvXC8uK2pxdWVyeVwuKG1pblwuKSpwaHApKFteO1=rW1x9O1xzXSspKz88XC9zY3JpcHQ-KSsvaSI7fXM6NDU6ImZ1bmN=aW9uIHVuc2V=IHdwX2xpc3RfdGFibGUgaXRlbXMgYWRkX2FjdGlvbiI7YToyOntpOjA7czo1OiJLNUxBSCI7aToxO3M6NTA3OiIvKFwvXCpbXlwqXSooXCpbXlwqXC9dKikrXC9ccyopKihcJFteO1=rPVteO1=rO1xzKikqKGlmW1woXHNcIV=rZnVuY3Rpb25fZXhpc3RzW1woXHMnIl=raW5pX3NldFsnIlwpXHtcc1=rKFxAP2luaV9zZXRcKFteO1=rWztcc1=rKStbXHNcfTtdKykqZnVuY3Rpb25ccysoW2Etel8wLTldKylccypcKFteXH1dKygodXBkYXRlX29wdGlvbltcKCciXHNdK2FjdGl2ZV9wbHVnaW5zfHBhY2tcKFsnIl1IXCpbJyIsXHNcLjAtOUEtRlwpXSs7XHMqaWZbXHNcKFxAaXNfXStmaWxlW19hLXpdKltcKFxzXSsoXCRbYS16XzAtOV=rKSkuKz9maWxlX2dldF9jb25=ZW5=c1tcc1woXSsoXCRbYS16XzAtOV=rKS4rP2ZpbGVfcHV=X2NvbnRlbnRzW1xzXChdKyhcOXxcMTApfHVuc2V=XChcJHdwX2xpc3RfdGFibGUtPml=ZW1zXFt8ZmlsZV9nZXRfY29udGVudHNcKF9fRklMRV9fLis_ZnB1dHNcKC4rP3NjYW5kaXJcKCkuKz9hZGRfYWN=aW9uXChbXixdK1ssXHMwLTlcKSciXStcNlteO1=rO1tcc1x9XSovaXMiO31zOjM5OiJwaHAgZXJyb3JfcmVwb3J=aW5nIGZ1bmN=aW9uIGRldGVjdF9jbXMiO2E6Mjp7aTowO3M6NToiRkJCRzAiO2k6MTtzOjE2MDoiLzxcP1twaFxzXSsoXEA_KGVycm9yX3JlcG9ydGluZ3xzZXRfdGltZV9saW1pdHxpbmlfc2V=KVwoLio_MFwpO1xzKikrLio_ZnVuY3Rpb24gKGRldGVjdF9jbXNcKCkuK1wzW147XSs7XHMqKChpZlxzKlwoW15cKV=rfGVsc2UpW15ce1=qW15cfV=rW1x9XHNdKykrKCR8XD8-KS9pcyI7fXM6NTE6ImZ1bmN=aW9uIGdsdWVzX2l=IHNhbml=aXplX2tleSBjYWxsX3VzZXJfZnVuY19hcnJheSI7YToyOntpOjA7czo1OiJGQkk5SyI7aToxO3M6MjkyOiIvKGlmW1xzXChcIV=rZnVuY3Rpb25fZXhpc3RzXChccypbJyJdW2Etel8wLTldK1snIl1bXHNcKV=rXHtccyopP2Z1bmN=aW9uXHMrKFthLXpfMC=5XSspXHMqXChbXlwpXStbXClcc1=rXHtccyooXCRbYS16XzAtOV=rKVxzKj1ccypzYW5pdGl6ZV9rZXlcKFteO1=rO1xzKihcJFthLXpfMC=5XSspXHMqPVxzKmNhbGxfdXNlcl9mdW5jX2FycmF5XChccypcM1teO1=rO1xzKnJldHVyblxzKlw=LitcMlxzKlwoW147XSs7XHMqLitjYWxsX3VzZXJfZnVuY19hcnJheVwoW147XSs7W1x9XHNdKygkfCg_PVw_PikpL2lzIjt9czoxNjoicGhwIGV2YWwgVmFyIEhleCI7YToyOntpOjA7czo1OiJGQktLUiI7aToxO3M6MTE1OiIvPFw_W3BoXHNdKyhAP2V2YWxccypcKFxzKikrKFsnIl=pW1xzXFxdKlwkW2EtelxfMC=5XFtcXVx7XH1ccyciXSs9W1xzXFwnIl=qKFxceFswLTldezJ9KSsuK1wyKFxzKlwpKSs7XHMqKCR8XD8-KS9pIjt9czoyOToiaWYgc3RycG9zIFJFUVVFU1RfVVJJIGluY2x1ZGUiO2E6Mjp7aTowO3M6NToiRkNRRlMiO2k6MTtzOjE=OToiL2lmKFtcc1woXStzdHJbYS16XzAtOV=rKXsyLH1bXHNcKF=rXCRfU=VSVkVSXFtbIiddUkVRVUVTVF9VUklbJyJdXF1ccypcKStbXlwpXStbXClcc1=rXHtbXHNcQF=qKGluY2x1ZGV8cmVxdWlyZSkoX29uY2UpP1teO1=rWztcc1=rKGV4aXRbXHM7XSspP1x9L2kiO31zOjc2OiJlcnJvcl9yZXBvcnRpbmcgaW5pX3NldCBzZXRfdGltZV9saW1pdCBpZ25vcmVfdXNlcl9hYm9ydCBlbHNlaWYgcmVxdWlyZV9vbmNlIjthOjI6e2k6MDtzOjU6Iko1S=xkIjtpOjE7czoyOTc6Ii88XD9bcGhcc1=rKFwvXCpbXlwqXSooXCpbXlwqXC9dKikrXC9ccyp8XC9cL1teXG5dKlxzKykqKFxAPyhlcnJvcl9yZXBvcnRpbmd8aW5pX3NldHxzZXRfdGltZV9saW1pdHxpZ25vcmVfdXNlcl9hYm9ydClccypcKFteO1=rWztcc1=rKXszLH=oKGVsc2Vccyp8aWZccypcKCtbXlwpXStbXHNcKV=rKSsoLio_KGFzc2VydHxldmFsfGZpbGVfcHV=X2NvbnRlbnRzfGZ3cml=ZVwoLio_ZmNsb3NlKVwoW15cKV=rW1wpO1x9XHNdKikqXEA_KHJlcXVpcmV8aW5jbHVkZSkoX29uY2UpP1teO1=rWztcfVxzXSspKygkfFw_PikvaSI7fXM6ODM6InBocCBpZiBmdW5jdGlvbl9leGlzdHMgZnVuY3Rpb24gY3VybF9pbml=IHJldHVybiBmdW5jdGlvbiB=cmltIHJldHVybiBiYXNlNjRfZGVjb2RlIjthOjI6e2k6MDtzOjU6IkcxOEZuIjtpOjE7czo=MDU6Ii88XD9bcGhcc1=rKFwkW2Etel8wLTldKylccyo9W147XSs7XHMqaWZccypcKFxzKlwhZnVuY3Rpb25fZXhpc3RzXChbIiddKFthLXpfMC=5XSspWyciXVwpW1wpXHNce1=qZnVuY3Rpb25ccypcMlwoW15cKV=rXClbXClcc1x7XStbXlxuXSpjdXJsX2luaXRcKFwpOy4rP3JldHVyblteO1=rO1tccytcfV=raWZccypcKFxzKlwhZnVuY3Rpb25fZXhpc3RzXChbIiddKFthLXpfMC=5XSspWyciXVwpW1wpXHNce1=qZnVuY3Rpb25ccypcM1woW15cKV=rXClbXClcc1x7XStbXlxuXSp=cmltW147XSs7Lio_cmV=dXJuW147XSs7W1xzK1x9XSsoLio_KGJhc2U2NF9kZWNvZGVbXChcc1=rXDF8XDJcKHxcM1woKVteXCldKltcKVxzXStbXjtdKls7XHNdKyl7Myx9KChlY2hvfHByaW5=KVteO1=rO1xzKikrKCR8XD8-KS9pcyI7fXM6MTI6IlBIUCByZXZlcnNlZCI7YToyOntpOjA7czo1OiJJNTY3ZCI7aToxO3M6NDg6Ii9eKFxzKlw-XD9ccyopPzsuKyhvaGNlfFwkKShbcGhcc1=qXD9cPCk_XHMqJC9pcyI7fXM6MzQ6ImlmIGlzc2V=IFJFUVVFU1QgVmFyaWFibGUgRnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiSjk1MHYiO2k6MTtzOjM3NjoiLyg8XD9bcGhcc1=qXEBccyonW14nXSo_JztccyouKykoaWZbXHNcKFwhXSsoaXNzZXR8ZW1wdHkpW1xzXChdK1wkXyhSRVFVRVNUfEdFVHxQT1NUfENPT=tJRXxTRVNTSU9OKVteXHtdK1x7XHMqKSsoXCRbYS16XzAtOVx7XH1dK1xzKj1ccyooJ1teJ1=qJ3wiW14iXSoifFwkKVteO1=qWyciO1wpXHNdKnxleHRyYWN=W1xzXChdK1wkX1wzW1xzXCldKztccyopKi4qKFwkW2Etel8wLTldK1xzKj1ccyp8ZWNob1tcc1woXSspP1xAPyhcJCg_IWRlbGV=ZV9zZXJ2aWNlKVthLXpfMC=5XSspKFxzKlxbW15cXV=qXF=pKnMqXCguKj9cKStccyo7W15cfV=qXH=rWztcc1=qKChpZltcc1woXStbXlx7XSt8ZWxzZVxzKilce1teXH1dK1x9KykqLipccyooXD8-XHMqKT8vaSI7fXM6MTg6ImV2YWwgYmFzZTY=X2RlY29kZSI7YToyOntpOjA7czo1OiJKNE9FayI7aToxO3M6NDA4OiIvKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFxAPygoZXJyb3JfcmVwb3J=aW5nfGV2YWx8c2V=X3RpbWVfbGltaXR8aW5pXyhzZXR8cmVzdG9yZSkpXHMqXChbXlwpXSpcKSt8KFwkW2Etel8wLTldKylccyo9KVteO1=qO1tcczsiJ1wpXSp8XD8-XHMqPFw_W3BoXHNdKikqKGlmW1woXHNdKyhbaXNzZXRtZDVdK1woKSpcJF8oUE9TfEdFfFJFUVVFUylUXFsuK1tcKVxzXHtdK3xlY2hvXHMqKSooKFwkW2Etel8wLTldKylccyo9XHMqXEA_YmFzZTY=X2RlY29kZVtcc1woXStbXjtdKztccypcQD8oZXZhbFtcc1woXSsuKlwxMXxcMTFccypcKFxzKlwkXyhQT1N8R=V8UkVRVUVTKVQpfFxAP2V2YWxbXHNcKF=rW147XSo_YmFzZTY=X2RlY29kZVwoKVteXCldKlwpKzsuKlxzKihyZXR1cm5bXjtdKjsuKikqL2kiO31zOjMxOiJwaHAgaWYgbWQ1IFJFUVVFU1QgZXZhbCBSRVFVRVNUIjthOjI6e2k6MDtzOjU6Ikg4OE5YIjtpOjE7czo2Nzk6Ii88XD9bcGhcc1=rKChcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL3xbXHtcc1=rKSooXCRbYS16XzAtOV=rKShccypcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcLykqXHMqPVteO1=rO1xzKnxpZihccypcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcLykqW1xzXChdKyhpc3NldHxtZDUpXChcJChfUkVRVUVTVHxfUE9TVHxfR=VUfF9DT=9LSUV8XHtbIiddW15cfV=rXH=rKVxzKlxbW15cKV=rXCkrKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvfFtce1xzXSspKnxcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKikqPyhcJFthLXowLTldKyhccypcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcLykqXHMqPVxzKik_KGFzc2VydHxldmFsfFw=fFwkXDEwKFxzKlxbW15cXV=rXF=rKSspKFxzKlwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvKSpccypcKChccypcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcLykqXCQoX1JFUVVFU1R8X1BPU1R8X=dFVHxfQ=9PS=lFfFx7WyInXVteXH1dK1x9KykoXHMqXFtbXlxdXStcXSspK1xzKlteO1=rOygoZGllfGV4aXR8ZWNob3xwcmludClbXjtdKjtccyp8KFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSp8XH1ccyopKigkfFw_Pig8Zm9ybVtePl=qKD5ccyo8aW5wdXRbXj5dKikrPlxzKjxcL2Zvcm=-KT8pL2kiO31zOjMxOiJpZiBpc3NldCBldmFsIFZhcmlhYmxlIGZ1bmN=aW9uIjthOjI6e2k6MDtzOjU6IkoyT=JmIjtpOjE7czozMTY6Ii88XD9bcGhcc1=qKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC8uKlxzKnxcQD9=b3VjaFwoLipcKSs7XHMqfFwkW2Etel8wLTlce1wkXH1dKyhccypcW1teXF1dK1xdKSpccyo9W147XSs7XHMqKSppZltcc1woXCFdK2lzc2V=W1xzXChdK1wkW2Etel8wLTlcJFx7XH1dKyhccypcW1teXF1dK1xdKSpbXClcc1x7XSsuKj9ccyooXCRbYS16XzAtOVx7XCRcfV=rKFxzKlxbW15cXV=rXF=pKlxzKj1ccyopP1xAP2V2YWxcKC4qP1wkW2Etel8wLTlce1wkXH1dKyhccypcW1teXF1dK1xdKSpccypcKC4qP1wpKztbO1x9XHNdKihcJHxcPz4pL2kiO31zOjU3OiJlcnJvcl9yZXBvcnRpbmcgZXhlYyBzeXN=ZW=gcGFzc3RocnUgZm9wZW4gUkVRVUVTVCBmd3JpdGUiO2E6Mjp7aTowO3M6NToiSjJCSkIiO2k6MTtzOjI5MToiLzxcPy4rPyhzZXRfdGltZV9saW1pdFwoMHxlcnJvcl9yZXBvcnRpbmdcKDB8ZXhwbG9kZVwoWyciXXdwLWNvbnRlbnQpKD89Lis_cGFzc3RocnVccypcKCkoPz=uKz9zeXN=ZW1ccypcKCkoPz=uKz9leGVjXHMqXCgpKCg_PS4rP2N1cmxfaW5pdFxzKlwoKSg_PS4rP2ZpbGVfZ2V=X2NvbnRlbnRzXHMqXCgpfCg_PS4rP3JlYWRkaXJccypcKCkoPz=uKz91bmxpbmtccypcKCl8KD89Lis_Zm9wZW5ccypcKChcJFthLXpfMC=5XSspKSg_PS4rP1wzXHMqPVxzKlwkX1BPU1QpKSg_PS4rP2Z3cml=ZVxzKlwoKS4rL2lzIjt9czoxODoiL2Z1bmN=aW9uIHggZXZhbCB4IjthOjI6e2k6MDtzOjU6Ikg4QUlUIjtpOjE7czoxNTE6Ii8oaWZccypcKFteXHtdK1x7XHMqKT9mdW5jdGlvblxzKyhbYS16XzAtOV=rKVxzKlwoW15ce1=rXHtccyooXCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKikqXEA_KGFzc2VydHxldmFsKVwoLis_XDJcKFwkXyhSRVFVRVN8R=V8UE9TKVRcWy4rP1wpO1tcc1x9XSovaXMiO31zOjIwOiJHRVRfZGwgc2FmZV9tb2RlIGVuZCI7YToyOntpOjA7czo1OiJIOEZGZSI7aToxO3M6MTg1OiIvPFw_W3BoXHNdK2lmW1xzXChdKyhpc3NldFwoXCRfR=VUXFtbJyJdZGxbIiddXF1cKXxcQHN=cmlwb3NbXChcc1=rXCRfU=VSVkVSXFtbIiddSFRUUF9VU=VSX=FHRU5UKS4rP3NhZmVfbW9kZS4rPyhcPz4oXHMqPFwvZGl2PlxzKjxcL2JvZHk-XHMqPFwvaHRtbD4pP3w8XC9ib2R5PlxzKjxcL2h=bWw-WyciO1xzXSokKS9pcyI7fXM6MTQ6IkdMT=JBTFMgMCBldmFsIjthOjI6e2k6MDtzOjU6IktDQUlkIjtpOjE7czoyMzA6Ii88XD9bcGhcc1=qKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC9bXlxuXSpcblxzKikqKFwkKEdMT=JBTFMpP1tcW1x7JyJdKltPXzBdK1snIlxdXH1cc1=qW1w9XC5cc1=rW147XSs7XHMqKSsuKigoZXZhbHxbXCRceyInXSsoXFx4W2EtZjAtOV17Mn18W2xpMV9dKStbXH=nIl=rKFxzKlxbW15cXV=rXF=pKilccypcKC4rXClbXCk7XHNdKykrKHJldHVyblteO1=qOykqKCR8XD8-KS9pIjt9czoyMToia2V5c3BhdCB2aWFncmEgY2lhbGlzIjthOjI6e2k6MDtzOjU6Ikg4RkZnIjtpOjE7czoxMDM6Ii9lcnJvcl9yZXBvcnRpbmdcKDBcKTtccypcJGtleXNwYXRbPVxzXSthcnJheVtcKFxzXSsoKFsnIl=pKHZpYWdyYXxhbW94aWNpbGxpbnxjaWFsaXMpXDJbXHMsXSspezJ9LisvaXMiO31zOjUxOiJzZXNzaW9uX3N=YXJ=IGVycm9yX3JlcG9ydGluZyBzZXRfdGltZV9saW1pdCBmb29=ZXIiO2E6Mjp7aTowO3M6NToiSzdSR2YiO2k6MTtzOjI3MToiLzxcP1twaFxzXSsoXEAqKHNlc3Npb25fc3RhcnR8ZXJyb3JfcmVwb3J=aW5nfHNldF9=aW1lX2xpbWl=KVwoW147XSs7XHMqKXsyLH=oZWNob1tcKFxzJyJdKzwoXCFET=NUWVBFICk_SFRNTD4uKzxcL=hUTUw-WyciO1xzXStmdW5jdGlvbiBwZXJtc1woKFwkW2Etel8wLTldKylbXClcc1x7XStcJFthLXpfMC=5XStccyo9XHMqZmlsZXBlcm1zXChcNVwpOy4rcmV=dXJuW147XSs7W1x9XHNdK3wuKz88XD9ccyplY2hvW1woXHNdKlwkZm9vdGVyW1wpO1xzXSspKCR8XD8-KS9pcyI7fXM6MzM6Im1kNXRhZ2dlZCBldmFsIHZhcmlhYmxlIGZ1bmN=aW9ucyI7YToyOntpOjA7czo1OiJLNEc5TyI7aToxO3M6NTM3OiIvKCg_PCF2YXIgKShcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcQD9lcnJvcl9yZXBvcnRpbmdbXCgwXClcc1=rO1xzKikqXEA_KFwkW2Etel8wLTldKylbXHNcLl=qPVxzKigoJ1teJ1=qKD88IV9lKSd8IlteIl=qInxcJFthLXpfMC=5XSt8c3RycmV2XCgpW1xzXC5dKikrW147XSo7XHMqKSs_KChcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKikqXEA_KFwkW2Etel8wLTldKylbXHNcLl=qPVxzKigoJ1teJ1=qKD88IV9lKSd8IlteIl=qInxcJFthLXpfMC=5XSt8YXJyYXlcKHwoc3RycmV2KVwoKVtcc1wuXSopK1teO1=qO1xzKnxmb3JlYWNoW1xzKF=rW15ce1=rXHtbXlx9XStcfVxzKikrPygoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyp8KFwkW2Etel8wLTldKylbXHNcLl=qPVxzKikqXEA_KGV2YWx8XCRbYS16XzAtOV=rKVwoW15cKV=qP1tcKTtcc1=qKChcNHxcMTBcfFwxM3xcMTYpXHMqKFxbfFwoKVteXCldKltcKVxzXSs7XHMqKSspKyhcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKikqL2kiO31zOjU2OiJpZiBpc3NldCBQT1NUIGZpbGVfZ2V=X2NvbnRlbnRzIGZvcGVuIGZ3cml=ZSBmY2xvc2UgZXhpdCI7YToyOntpOjA7czo1OiJKMUdBaSI7aToxO3M6NTU2OiIvKD88PVw8XD9waHApKFxzKlwkW2Etel8wLTldK1xzKj1bXjtdKzt8XHMqXEA_KGlnbm9yZV91c2VyX2Fib3J=fGluaV9zZXR8c2V=X3RpbWVfbGltaXR8ZXJyb3JfcmVwb3J=aW5nKVwoLio_XCk7fFxzKlwvXC9bXlxuXSpcbnxccypcL1wqW15cKl=qKFwqW15cKlwvXSopK1wvKSpccyppZltcKFxzXCFdKyhmdW5jdGlvbl9leGlzdHNbXChcc1=rKFsiJ1=pKFthLXpfMC=5XSspXDVbXlx7XStbXHtcc1=rfGlzc2V=W1woXHNdK1wkXyhSRVFVRVNUfEdFVHxQT1NUfFNFUlZFUilcWykuKz8oXCRbYS16XzAtOV=rKVxzKj1ccypcQD9mKGlsZV9nZXRfY29udGVudHN8b3BlblwoLis_ZmdldHMpXChccyooXDhbXHNcKV=rfFsnIl1baHRwczpdK1wvXC98X19GSUxFX18pKC4rPyhmaWxlX3B1dF9jb25=ZW5=c1wofGZvcGVuXCguKz9md3JpdGVcKC4rP2ZjbG9zZVwoKVteXCldKlwpW1wpO1x9XHNdKykoKD89XD9cPil8Lio_KChyZXR1cm58KGVsc2UpP2lmXHMqXChbXlx7XStce1xzKmV4dHJhY3RcKHxkaWV8ZXhpdClbXjtdKjtbXHNcfV=qKSsoXC9cL1teXG5dKlxuXHMqKXszLH=pL2lzIjt9czoyNToiZnVuY3Rpb24gQXJyYXkgcHJpbnQgZXhpdCI7YToyOntpOjA7czo1OiJKMlE5ViI7aToxO3M6NzE=OiIvPFw_W3BoXHNdKyhcJFtfXC1cPlwuYS16MC=5XHtcWyciXF1cfV=rXHMqPVteO1=rO1xzKikqKChmdW5jdGlvblxzK1thLXpfMC=5XStcKC4qP1wpXHMqXHsoPyEgXH=7KShcJFtePV=rPVxzKlsnIl17Mn=pP3xmb3JbXHMoXStbXlx7XStce1teXH1dK1x9Lio_fChyZXR1cm58Z2xvYmFsKVxzKyhcJFx7W15cfV=rXH=rKT9bXjtdKjt8XCRcey4rP1x9XHMqXCguKj9cKSs7fFwkXHsuKz9cfVxzKj1ccyphcnJheVwoKChbYS16XzAtOV=rXCguKj9cKSssXHMqKStbYS16XzAtOV=rXCguKj8pP1wpKzt8aWZccypcKC4qP1wpK1xzKlx7fGVsc2VbXHNce1=qfFwkW19cLVw-XC5hLXowLTlce1xbJyJcXVx9XStbXHNcLl=qPShccypjaHJcKC4qP1wpK3woLis_XF4pezUsfXxbXjtdK1xeXHMqXGQrKVteO1=qO3xleGl=XCguKj9cKSs7fChcJChce1thLXpfMC=5XStcKC4rP1wpXH=oXHMqXFtbXlxdXSpcXSspKnxjb25=ZW5=fHVybClbXHNcK1wuO1x9PD5cLl=qKSs9XHMqKFtcQFwkXHtdKlthLXpfMC=5XH1dKyhcKC4rP1wpfFxbLis_XF=pKVx9Kjt8Zm9yZWFjaC4rP1xzK2FzXHMrW15cKV=rW15ce1=rXHspWztcc1x9XSopezUwLH=oXCQoXHtbYS16XzAtOV=rXCguKz9cKVx9KFxzKlxbW15cXV=qXF=rKSp8Y29udGVudHx1cmwpW1xzXCtcLjtcfTw-XC5dKikrPVxzKihbXEBcJFx7XSpbYS16XzAtOVx9XSsoXCguKz9cKXxcWy4rP1xdKSlbO1x9XSooJHxcPz4pL2kiO31zOjQwOiJwaHAgaWYgaXNzZXQgR=VUIGVjaG8gaWYgUE9TVCBjb3B5IEZJTEVTIjthOjI6e2k6MDtzOjU6Iks5TEpDIjtpOjE7czo1NDQ6Ii8oPzw9XDxcP3BocClccyooZWNob1teO1=qO1xzKnxlcnJvcl9yZXBvcnRpbmdcKDBcKTtccyp8XC9cKi4qP1wqXC9ccyp8XCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKnwoXC9cL3xcIylbXlxuXSpcblxzKikqaWZbXHNcKF=raXNzZXRcKFwkXyhSRVFVRVN8R=V8UE9TKVRbXlwpXStbXClcc1x7XSsoKGVjaG98cHJpbnR8XCRbYS16XzAtOV=rXHMqPSlbXjtdKztccyopK2lmW1xzXChdK1wkXyhSRVFVRVN8R=V8UE9TKVRbXlwpXStbXClcc1x7XStpZltcc1woXStcQD9jb3B5XCgoW1xzXCxdKlwkX=ZJTEVTKFxbW15cXV=rXF=pKykrW1wpXHNdK1x7W15cfV=rKChccypcfSkrKFxzKmVsc2VbXHNce1=rW15cfV=rKT8pKyhccyooXC9cL3xcIylbXlxuXSp8XHMqXC9cKi4qP1wqXC8pKihccyplcnJvcl9yZXBvcnRpbmdcKDBcKTtccypmdW5jdGlvblxzKyhbYS16XzAtOV=rKVxzKlwoLitcMTVbXChcc1=rXCRfKFJFUVVFU3xHRXxQT1MpVC4rZWNob1tcc1woXSooWyciXSk8c2NyaXB=Lis_PFwvc2NyaXB=PlwxNztbXHMqXH1dKyg_PVwvXCp8JHxcPz4pKT8vaXMiO31zOjE4OiJhdXRoX3Bhc3MgRmlsZXNNYW4iO2E6Mjp7aTowO3M6NToiSjhHTEoiO2k6MTtzOjI1NzoiLzxcP1twaFxzXSsoaWZbXHNcKF=raXNzZXRccypcKFxzKlwkXyhSRVFVRVN8R=V8UE9TKVRcWyhbJyJdKShbYS16XzAtOV=rKVwzW15ce1=rXHtccypzd2l=Y2ggXChcJF9cMlRcW1wzXDRcM1xdLis_ZGVmYXVsdDpbXlx9XStbXH1cc1=rZGllXChbXlx9XStbXH1cc1=raWZbXHNcKF=rXCR3cGRiXC=-Z2V=X3ZhclwoLis_ZXhpdDtbXH1cc1=rfCg_PS4qXCRhdXRoX3Bhc3MpKD89LipGaWxlc=1hbikoPz=uKj1bXjtdezIwMDB9KS4rKSgkfFw_PikvaXMiO31zOjg4OiJwaHAgc2V=X3RpbWVfbGltaXQgZmlsZV9nZXRfY29udGVudHMgUkVRVUVTVCBmaWxlX2dldF9jb25=ZW5=cyBGSUxFUyBmb3BlbiBSRVFVRVNUZndyaXRlIjthOjI6e2k6MDtzOjU6Ikg4S=xPIjtpOjE7czoxNTQ6Ii88XD9bcGhcc1=rLis_c2V=X3RpbWVfbGltaXRcKC4rP2ZpbGVfZ2V=X2NvbnRlbnRzXChcJF8oUkVRVUVTfEdFfFBPUylULis_ZmlsZV9nZXRfY29udGVudHNcKFwkX=ZJTEVTXFsuKz9mb3BlblwoXCRfKFJFUVVFU3xHRXxQT1MpVC4rP2Z3cml=ZVwoLis_KFw_PikvaXMiO31zOjIzOiJjbGVhcnN=YXRjYWNoZSBoZXJlIGRpZSI7YToyOntpOjA7czo1OiJIQTdBSiI7aToxO3M6NDY4OiIvPFw_W3BoXHNdKihlcnJvcl9yZXBvcnRpbmdcKDBcKTtccyopKihpZltcc1woXCFdK2lzc2V=W1xzXChdK1wkXyhSRVFVRVN8UE9TfEdFKVRcW1snIl1bMC=5X2Etel=rWyciXVxdW1wpXHNce1=rKChlY2hvfHJlcXVpcmV8XCRbMC=5X2Etel=rXHMqPVxzKihcJHwoWyciXSkuKj9cNykpW147XSs7W1xzXH1dKykqKSsoXCRbMC=5X2Etel=rXHMqPVxzKik_KFwkd3BkYlwtPnF1ZXJ5XChccyp8bXlzcWxfY29ubmVjdFtcc1woXStcJF8oUkVRVUVTfFBPU3xHRSlUXFtbJyJdWzAtOV9hLXpdK1snIl1cXS4rPykiSU5TRVJUXHMrSU5UT1tcc1xgIlwuXCQwLTlfYS16XC1cPl=rdXNlcnNbXHNcYF=rXCguKygobXlzcWxfY2xvc2VcKFteXCldKlwpfGNsZWFyc3RhdGNhY2hlLitoZXJlO1xzK2RpZXwoXCRbMC=5X2Etel=rKVxzKj1ccypcQGZpbGVfZ2V=X2NvbnRlbnRzXCguK1wxM1tcKVxzXSopO1tcfVxzXSspKygkfFw_PikvaXMiO31zOjEwOiJ1bnNldCBzZWxmIjthOjI6e2k6MDtzOjU6Ikk3REJWIjtpOjE7czoyODc6Ii88XD9bcGhcc1=qKFxAP2NobW9kXChbXlwpXStcKTtccyopKmlmW1xzXChcIV=rKGlzc2V=fGVtcHR5KVtcc1woXStcJF8oUkVRVUVTVHxHRVR8UE9TVHxDT=9LSUUpW15ce1=rW1x7XHNdKihcJFthLXpfMC=5XHtcfV=rKVxzKj=uKz9ta2Rpcltcc1woIidcLlwvXStcNFtcKTtcc1=rZm9yZWFjaC4rP1x7W15cfV=rXH1ccyooaWZbXHNcKFwhXStpc19kaXJbXlwpXStcKStbXHtcc1xAXSpta2Rpcltcc1woXStbXlwpXStcKSs7W1xzXH1dKikrLio_KHVubGlua1woW15cKV=rXCk7XHMqKSsoJHxcPz4pL2lzIjt9czo=MToiaWYgaXNzZXQgUkVRVUVTVCB=b3VjaCBtb3ZlX3VwbG9hZGVkX2ZpbGUiO2E6Mjp7aTowO3M6NToiSDhNRTIiO2k6MTtzOjM=NjoiLygoaWZbXChcc1whXSsoKHByZWdfbWF=Y2hbXHNcKF=rW14sXSssXHMqKT9cOHwoaXNzZXR8ZW1wdHkpW1xzXChdK1wkXyhSRVFVRVNUfEdFVHxQT1NUfEZJTEVTKSlccypcW1teXHtdK1x7XHMqKChcJFthLXpfMC=5XSspXHMqPVteO1=rO1xzKikqKSsoZm9yZWFjaFxzKlwoW15cKV=rXCkrW1xzXHtdKmlmW1xzXChdK1teXCldK1wpK1xzKmNvbnRpbnVlO1xzKik_KChcJFthLXpfMC=5XSspXHMqPXxpZlxzKlwoKSpbXHNcQF=qKG1vdmVfdXBsb2FkZWRfZmlsZXx=b3VjaHxcJFthLXpfMC=5XSspXHMqXChbXlw7XSs7KFtcfVxzXSooKFwkW2Etel8wLTldK1xzKj18ZWNobylbXjtdKztccyopKikrKXsyLH=vaSI7fXM6NTg6InBocCBpZiBpc3NldCBSRVFVRVNUIGV2YWwgZmlsZV9wdXRfY29udGVudHMgaW5jbHVkZSB1bmxpbmsiO2E6Mjp7aTowO3M6NToiS=FPSzYiO2k6MTtzOjcxNToiLzxcP1twaFxzXSsoXEA_KGlnbm9yZV91c2VyX2Fib3J=fHNldF9=aW1lX2xpbWl=fGluaV9zZXR8ZXJyb3JfcmVwb3J=aW5nfERFRklORSlcKFteXCldKlwpW1xzXCldKjtccyp8XC9cL1teXG5dKlxuXHMqKSooXCRbYS16XzAtOVxbJyJcXV=rXHMqPVteO1=rO1xzKikqKCh=cnlccyp8ZnVuY3Rpb25cc1teXHtdKilce1xzKik_aWZbXHNcKFwhXSsoKGVtcHR5fHN=cmxlbnxpc3NldClcKFwkXyhSRVFVRVN8R=V8UE9TKVR8W1wkYS16XzAtOV=qW1xzXD1dKltzY2Fub3BlcmRdK2RpcltcKFxzXSsoXCRbYS16XzAtOV=rKSlbXlx7XStcey4qPyhcJFthLXpfMC=5XSspXHMqPS4qPyhjdXJsX1teXChdK3xldmFsfGZpbGVfZ2V=X2NvbnRlbnRzKVwoKFw5fFwxMCkuKz9maWxlXy4udF9jb25=ZW5=c1tcKCBdKyhbXCRhLXpfMC=5XFsnIlxdXC5dKykuKz8oZWNob1tcc1woXStcMTB8aW5jbHVkZShfb25jZSk_W1woXHNdK1wxMy4rP3VubGlua1tcKFxzXStcMTN8Y3VybF9pbml=XCguKz9jdXJsX3NldG9wdFwoW14sXSssXHMqQ1VSTE9QVF9VUkxbLFxzXStcMTN8XH1ccypjYXRjaFxzKlwoXHMqRXhjZXB=aW9uXHMqXCRbYS16XzAtOV=rW1wpXHNdKlx7W15cfV=qXH1ccyp8ZmlsZV9nZXRfY29udGVudHNbXHNcKCInXStodHRwW147XSs7W1xzXC9cQF=qZmlsZV9wdXRfY29udGVudHNcKC4rP2Vycm9yX3JlcG9ydGluZ1tcKFxzMFwpXSs7XHMqKS4qKCR8XD8-KS9pcyI7fXM6NDM6InBocCBjaGRpciBSRVFVRVNUIGdldGN3ZCBtb3ZlX3VwbG9hZGVkX2ZpbGUiO2E6Mjp7aTowO3M6NToiSzlBRkciO2k6MTtzOjM1NToiLzxcPy4rPyhjaGRpcltcKFxzXStcJF8oUkVRVUVTfFBPU3xHRSlUXFt8ZXJyb3JfcmVwb3J=aW5nW1woXHNdKzApLis_KFwkW2Etel8wLTldKylbPVxzXEBdK2dldGN3ZFtcc1woXSsuKz8oKFwkW2Etel8wLTldKylbPVxzXEBdK1wkXyhSRVFVRVN8UE9TfEdFKVRcW1teO1=rO1xzKmlmW1xzXChdKyk_KGNvcHl8bW92ZV91cGxvYWRlZF9maWxlKVtcc1woXSsoLis_dW5saW5rW1xzXChdKy4rP3NjYW5kaXJbXHNcKF=rKFwzfFw1KXxcJF9GSUxFU1xbW14sXStbLFxzXSsoXCRfXDJ8XDN8XDUpKSguK2NoYW5nZXBhc3NcKCk_KC4rP1w_PlxzKjxcP1twaFxzXSpcfSkqLis_KCR8XD8-KFxzKjxcLyhib2R5fGh=bWwpPikqKS9pcyI7fXM6MzU6ImVycm9yX3JlcG9ydGluZyBpbmlfc2V=IHVubGluayBGSUxFIjthOjI6e2k6MDtzOjU6Ikg5NUY1IjtpOjE7czozMDA6Ii9cQD9lcnJvcl9yZXBvcnRpbmdcKDBcKTtccyooaW5pX3NldFwoLitcQD91bmxpbmtcKF9fRklMRV9fXCk7fChpZltcc1woXCFdKyhpc3NldFwofGZpbGVfZXhpc3RzXCgpP1xzKlwkXyhTRVJWRVJ8UkVRVUVTVHxHRVR8UE9TVHxGSUxFUylcW1teXF1dK1xdK1teXCldKlwpW1wpXHNce1=qKGVjaG9bXjtdKztccyopKikrXEA_Y29weVwoKFtcc1wsXSpcJF9GSUxFUyhcW1teXF1dK1xdKykrKStbXClcc1=rO1tcc1x9XStcPz5ccyooPChmb3JtfGlucHV=KVtePl=rPlxzKikrPFwvZm9ybT5ccyooPFw_W3BoXHNdK1x9Kyk_KS9pcyI7fXM6MTE6ImluY2x1ZGUgR=VUIjthOjI6e2k6MDtzOjU6Ikk5NkRDIjtpOjE7czozNTI6Ii8oXHMqKFwkWzAtOV9hLXpdKylccyo9XHMqKFsiJ1=pKFthLXpcL19cLTAtOVwuXSpcXHhbYS1mMC=5XXsyfSkrW15cM1=qP1wzO3xccyooXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC8pKSpbXEBcc1=qKGluY2x1ZGV8cmVxdWlyZSkoX29uY2UpP1tcc1woXSooXC9cKlteXCpdKihcKlteXCpcL1=qKStcL1xzKikqW1woXHNdKigoWyInXSkoW2EtelwvX1wtMC=5XC5dKlxcKHhbYS1mMC=5XXsyfXxbMC=5XXsyLDN9KSkrW15cMTJdKj9cMTJ8XDJ8XCRfKD8hUkVRVUVTVFxbJ3RhcmdldCdcXTspKFBPU3xSRVFVRVN8R=UpVFxzKihcW1teXF1dK1xdXHMqfFx7W15cfV=rXH1ccyopKylbXHNcKV=qOyhccypcNSkqL2kiO31zOjUzOiJwaHAgZnVuY3Rpb24gZmlsZV9nZXRfY29udGVudHMgZndyaXRlIHVubGluayBfX=ZJTEVfXyI7YToyOntpOjA7czo1OiJKNlFNUCI7aToxO3M6NDYwOiIvPFw_W3BoXHNdKygoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyopKnxlcnJvcl9yZXBvcnRpbmdcKFteO1=rO1xzKnxbYS16XzAtOV=rXChbXjtdKztccyp8XCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKnxcL1wvW15cbl=qXG5ccyopKmZ1bmN=aW9uXHMrKFthLXpfMC=5XSspXCguKygoXCRbYS16XzAtOV=rKVxzKj1bXEBcc1=qZmlsZV9nZXRfY29udGVudHNcKCguKyhcJFthLXpfMC=5XSspXHMqPVtcQFxzXSooYmFzZTY=X2RlY29kZXxmaWxlX2dldF9jb25=ZW5=cylcKFw2KSouK2ZpbGVfcHV=X2NvbnRlbnRzXChbXixdKyxccyooXDZ8XDgpW147XSs7W1x9XHNdKnxmaWxlXy4udF9jb25=ZW5=c1woLitmb3BlblwoLitmd3JpdGVcKC4rZmNsb3NlXCgpLisoXDRcKFteO1=rO1xzKnx1bmxpbmtcKF9fRklMRV9fXCk7XHMqfGVjaG9bXjtdKjtccypleGl=W1woXCk7XHNcfV=qKSsoJHxcPz4pL2lzIjt9czozMzoiYXV=aF9wYXNzIEZpbGVzTWFuIHNhZmVfbW9kZSBldmFsIjthOjI6e2k6MDtzOjU6Ikg5UzZrIjtpOjE7czo3NjoiLzxcPyg_PS4qXCRhdXRoX3Bhc3MpKD89LipGaWxlc=1hbikoPz=uKnNhZmVfbW9kZSkoPz=uKihldmFsfG5ldHN=YXQpXCgpLisvcyI7fXM6MTA1OiJwaHAgZXJyb3JfcmVwb3J=aW5nIGluaV9zZXQgc2V=X3RpbWVfbGltaXQgaWYgaXNzZXQgUkVRVUVTVCBmaWxlX2dldF9jb25=ZW5=cyBmaWxlX3B1dF9jb25=ZW5=cyB1bmxpbmsgaWUiO2E6Mjp7aTowO3M6NToiSDlTNzYiO2k6MTtzOjQ5ODoiLzxcP1twaFxzXSsoXC9cKlteXCpdKihcKlteXCpcL1=qKStcL1xzKnxcL1wvW15cbl=qXHMrKSooaWdub3JlX3VzZXJfYWJvcnRccypcKFteO1=qO1xzKnxcJFthLXpfMC=5XStccyo9W147XSpbO1xzXSspKygoZWxzZVtcc1x7XSp8aWZbXHNcKF=rW147XSt8XCRbYS16XzAtOV=rXHMqPVxzKikqKGVycm9yX3JlcG9ydGluZ3xpbmlfc2V=fHxzZXRfdGltZV9saW1pdHx3aGlsZSg_PVwoMVwpKSlccypcKFteO1=rO1tcfVxzXSspKygoaWZbXHNcKF=rKGlzX3dyaXRhYmxlfGlzc2V=fGZpbGVfZXhpc3RzKVtcc1woXStcJChfUkVRVUVTVHxfR=VUfF9QT1NUfHBhdGgpW147XSspPyhcQD8oZmlsZV9nZXRfY29udGVudHN8ZmlsZV9wdXRfY29udGVudHN8dW5saW5rfGNobW9kKVxzKlwoW147XSs7KFtcfVxzXSooaWZbXHNcKF=rW15cKV=rXCkrfGVsc2UpP1tce1xzXSooZGllfHByaW5=fHNsZWVwfGVjaG8pW147XSo7KSpbXH1cc1=qKStbXH1cc1=rKXszLH=uKj8oJHxcPz4pL2lzIjt9czozNzoicGhwIGNyZWF=ZV9mdW5jdGlvbiBWYXJpYWJsZSBmdW5jdGlvbiI7YToyOntpOjA7czo1OiJIOVM3RyI7aToxO3M6MjM2OiIvPFw_W3BoXHNdKihcL1wqKFteXCpdKlwqW15cL1=pKlteXCpdKlwqXC9ccyp8XC9cLy4qXHMqKSooKFwkW2Etel9cLTAtOV=rKVxzKj=uKztccyp8aWZccypcKFteXHtdK1x7XHMqKSsoKFwkW2Etel9cLTAtOV=rKVxzKj1ccyopP2NyZWF=ZV9mdW5jdGlvblwoW14sXSssXHMqKFw=W147XSs7W1xzXEBdKlw2XCh8IihcXChbMC=5XXsyLDN9fHhbMC=5YS1mXXsyfSkpKyIpW15cKV=qW1wpO1xzXH1dKygkfFw_PikvaSI7fXM6NDI6ImlmIGlzc2V=IFJFUVVFU1QgZXZhbCBvciBmaWxlX3B1dF9jb25=ZW5=cyI7YToyOntpOjA7czo1OiJIOVM3SCI7aToxO3M6MzcxOiIvPFw_W3BoXHNdKyhmdW5jdGlvbiAoW2Etel8wLTldKylcKFteXHtdK1tce1xzXSsuK3JldHVyblteO1=qO1t9XHNdKyk_aWZbXHNcKF=raXNzZXRbXHNcKF=rXCRfKFJFUVVFU3xHRXxQT1MpVChccypcW1teXF1dK1xdKStbXClcc1x7XSsoXCRbYS16X1wtMC=5XStccyo9XHMqLis_O1xzKikqKCgoaGVhZGVyfHVubGluaylcKFteO1=rWztcc1=rKXsyLH1bXH1cc1=qZWxzZVtce1xzXSsoXCRbYS16X1wtMC=5XStccyo9XHMqLis_O1xzKikqKChcJFthLXpfXC=wLTldK1xzKj1ccyopP1xAPyhldmFsfFwyKVwoLis_XCk7XHMqKXsyLH18ZmlsZV9wdXRfY29udGVudHNcKFteLF=rLFxzKmJhc2U2NF9kZWNvZGVcKC4rP1wpOylbXH1cc1=qKFw_PnwkKS9pcyI7fXM6MjY6InBocCBlY2hvIHBhc3N=aHJ1IF9SRVFVRVNUIjthOjI6e2k6MDtzOjU6IkhBS=ZEIjtpOjE7czoxNTY6Ii88XD9bcGhcc1=rKChlY2hvfHByaW5=KVtcc1woXSsoWyciXSkuKj9cM1tcKVxzXSo7XHMqKSooKFwkW2Etel8wLTldKylccyo9XHMqKT9cQD8ocGFzc3RocnV8ZXhlY3xzeXN=ZW18XCRbYS16XzAtOV=rKVxzKlwoXCRfKFJFUVVFU3xHRXxQT1MpVC4rO1xzKigkfFw_PikvaSI7fXM6NTc6InBocCBpZiBpc19kaXIgZmlsZV9nZXRfY29udGVudHMgaWYgZmlsZV9wdXRfY29udGVudHMgZWNobyI7YToyOntpOjA7czo1OiJIQUtGTCI7aToxO3M6MzQ1OiIvPFw_W3BoXHNdKyhcL1wvW15cbl=qW1xyXG5dK3xcJFthLXpfMC=5XStccyo9W147XSo7XHMqfGVycm9yX3JlcG9ydGluZ1woW147XSs7XHMqKSsuKz8oaW5jbHVkZVteO1=qd3AtY2xhc3MtaGVhZGVycy5waHAuKz98aWZbXChcc1=raXNfZGlyW15ce1=rXHsoXHMqXCRbYS16XzAtOV=rXHMqPWZpbGVffFteXH1dK1x9XHMqKWdldF8oYWxsX2RpcnNcKC4rP3xjb25=ZW5=c1woW147XSo7XHMqXCRbYS16XzAtOV=rXHMqPVteO1=qO1xzKihpZltcKFxzXSspPykpZmlsZV9wdXRfY29udGVudHNcKC4rPygodG91Y2hcKC4rfGVjaG9bXjtdKjtccyp8XH=oXHMqZWxzZVtcc1x7XSspPylccyopKygkfFw_PikvaXMiO31zOjM=OiJtb3ZlX3VwbG9hZGVkX2ZpbGUgX=ZJTEVTIF9fRklMRV9fIjthOjI6e2k6MDtzOjU6IkhBS=ZOIjtpOjE7czoyNjA6Ii88XD9bcGhcc1=rKChcJFthLXpfMC=5XSspXHMqPVxzKlwkX=ZJTEVTXFtbXjtdKztccyooXCRbYS16XzAtOV=rKVxzKj1bXjtdKztccyppZltcc1woXStmaWxlX2V4aXN=c1tcc1woJyJcLlwvXStcM1tcc1woJyJcKVxzXSt1bmxpbmtbXHNcKCciXC5cLyldK1wzKT8uKj8obW92ZV91cGxvYWRlZF9maWxlW1xzXChdKyhcJF9GSUxFU1xbW14sXStbLFxzXStfX=ZJTEVfX3xcMil8c3lzdGVtXChbJyJdbXYgWyciXVwuXCRfRklMRVNcWykuKj8oJHxcPz4pL2lzIjt9czo2ODoicGhwIGZ1bmN=aW9uIGRpZSBzZXRjb29raWUgaWYgZW1wdHkgaWYgaXNzZXQgZm9ybSBtb3ZlX3VwbG9hZGVkX2ZpbGUiO2E6Mjp7aTowO3M6NToiSEFLRlAiO2k6MTtzOjYwMToiLzxcP1twaFxzXSsoKFwkW2Etel8wLTldKylccyo9W147XSs7XHMqKSooaWZbXChcc1=rKFwyfFwhZW1wdHlbXChcc1=rKVteXHtdK1x7XHMqKCgoKFwkW2Etel8wLTldKylccyo9XHMqKT8oXDJcKC4qP1wpK3xcJF8oUkVRVUVTfEdFfFBPUylUW147XSspO1xzKnxpZltcKFxzXCFdKyhpc3NldFtcKFxzXSsuKz9cKStccytbYS16XzAtOV=rfFw4W15cfV=qKSkpK1tcfVxzXSp8ZnVuY3Rpb24gW2Etel8wLTldK1woW15ce1=rXHtccyooZGllXCguKz9cKTtccyp8KFwkX=NPT=tJRS4rPztccyp8c2V=Y29va2llXCguKz9cKTtccyopezJ9KVx9XHMqKSsoW1xzXHtdKihcJFthLXpfMC=5XSspXHMqPVxzKlwkXyhSRVFVRVNUfEdFVHxQT1NUfEZJTEUpW147XSs7W1xzXH1dKikqKFw_PlxzKnxlY2hvW1xzXChdKihbJyJdKSkoPChmb3JtfGlucHV=KVtePl=qPlthLXpcOjAtOVxzXSopKzxcL2Zvcm=-KFxzKjxcP1twaFxzXSt8WyciXTtccyopKFwkW2Etel8wLTldK1xzKj1bXjtdKztccyp8aWZbXHNcKF=rKSoobW92ZV91cGxvYWRlZF9maWxlXChbXlw7XSt8KFwkW2Etel8wLTldKylccyo9XHMqXCRbYS16XzAtOV=rXHMqXCguKj9cKSk7W1xzXH1dKigkfFw_PikvaSI7fXM6MTEwOiJwaHAgaWYgUkVRVUVTVCBhZGRfYWN=aW9uIGZ1bmN=aW9uIGdsb2JhbCBpZiBnZXRfb3B=aW9uIHJldHVybiBvYl9zdGFydCB3cF9yZXdyaXRlLT5mbHVzaF9ydWxlcyB3cF9jYWNoZV9mbHVzaCI7YToyOntpOjA7czo1OiJLNzhINiI7aToxO3M6NDY=OiIvPFw_W3BoXHNdKyhpZlxzKlwoW15cKV=qXCRfKFBPU3xSRVFVRVN8R=UpVFteXHtdK1tce1xzXSt8YWRkX2FjdGlvblxzKlwoW14sXSssXHMqKFsnIl=pKFthLXpfMC=5XSspWyciXCk7XHNcfV=rfGZ1bmN=aW9uXHMrXDRbXlx7XStbXHtcc1=rKSooKChpbmNsdWRlfHJlcXVpcmUpKF9vbmNlKT9cKFteO1=rO1xzKnxpZltcc1woXCFdK3VzZXJuYW1lX2V4aXN=c1woW15ce1=rW1x7XHNdKykqKFwkW2Etel8wLTldKylccyo9XHMqd3BfY3JlYXRlX3VzZXJcKC4rc2V=X3JvbGVbXChccyciXSthZG1pbmlzdHJhdG9yfChnbG9iYWxbXjtdKjtccyopP2lmW1xzXChcIV=rZ2V=X29wdGlvblwoW15cKV=rW1wpXHNce1=rcmV=dXJuW147XSo7W1xzXH1dK29iX3N=YXJ=XChcKTtccypcPz4uK1wkd3BfcmV3cml=ZS=-Zmx1c2hfcnVsZXNcKFwpO1xzKndwX2NhY2hlX2ZsdXNoXCgpK1siJ1xzXCk7XHNcfV=rKCR8XD8-KS9pcyI7fXM6NDI6ImlmIGlzc2V=IFJFUVVFU1QgRklMRSBzdHJpcHNsYXNoZXMgUkVRVUVTVCI7YToyOntpOjA7czo1OiJIQUtGUyI7aToxO3M6MjgyOiIvaWZbXHNcKF=raXNzZXRbXHNcKF=rXCRfKEdFfFBPU3xSRVFVRVMpVChccypcW1teXF1dKlxdK3xccypce1teXH1dKlx9KykrW1xzXClce1=rKChcJFthLXpfMC=5XSspXHMqPVxzKlwkXyhHRXxQT1N8UkVRVUVTKVQoXHMqXFtbXlxdXSpcXSt8XHMqXHtbXlx9XSpcfSspK1teO1=qWztcc1=qKSooYXNzZXJ=fGV2YWx8XCRbYS16XzAtOV=rKVxzKlwoK3N=cmlwc2xhc2hlc1woXCRfKEdFfFBPU3xSRVFVRVMpVChccypcW1teXF1dKlxdK3xccypce1teXH1dKlx9KykrW1xzXCldKztbXH1cc1=qL2kiO31zOjE=MDoiZXJyb3JfcmVwb3J=aW5nIGZ1bmN=aW9uIGVycm9yXzQwNCB=dHBfcmVxdWVzdF9jdXN=b2=gZ2V=SXAgZ2V=VXNlcmFnZW5=IGNvbnZlcnRJcFRvU3RyaW5nIGh=dHBfYnVpbGRfcXVlcnkgZmlsZV9nZXRfY29udGVudHMgZndyaXRlIGxvbmcyaXAiO2E6Mjp7aTowO3M6NToiS=NJSzUiO2k6MTtzOjI4MToiLzxcPy4rP2Vycm9yX3JlcG9ydGluZ1woKCg_PS4rP2dldFtfXSpJcFwoKSg_PS4rP2Z1bmN=aW9uIGVycm9yXzQwNFwoKXwoPz=uKz9mdW5jdGlvbiBfW2EtejAtOV=rXCgpezExLH=pKCg_PS4rP3N=cmVhbV9jb25=ZXh=X2NyZWF=ZVwoKXwoPz=uKz9yZXF1ZXN=X2N1c3RvbVwoKSkoPz=uKz9odHRwX2J1aWxkX3F1ZXJ5XCgpKD89Lis_ZmlsZV9nZXRfY29udGVudHNcKCkoKD89Lis_ZmlsZV9nZXRfY29udGVudHNcKCl7NCx9fCg_PS4rP2hlYWRlclwoKSkoPz=uKz9sb25nMmlwXCgpLisvaXMiO31zOjM1OiJpZiBpc3NldCBSRVFVRVNUIGZvcmVhY2ggYXJyYXkgZXZhbCI7YToyOntpOjA7czo1OiJIQUtGViI7aToxO3M6MTU5OiIvaWZbXHNcKF=rKFthLXpfMC=5XStccypcKFxzKikqXCRfKFJFUVVFU3xHRXxQT1MpVFxbW15ce1=rXHtccyooXCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKnwuKj9mb3JlYWNoXChhcnJheS4qPykqW1xzXEBdKihzeXN=ZW18ZXZhbClcKC4rXHMqKGV4aXRbXjtdKjtccyopKlx9L2kiO31zOjcyOiJpZiBlbXB=eSBTRVJWRVIgSFRUUF9VU=VSX=FHRU5UIHNldF9=aW1lX2xpbWl=IG1vdmVfdXBsb2FkZWRfZmlsZSByZXR1cm4iO2E6Mjp7aTowO3M6NToiSUJDSWEiO2k6MTtzOjQzMjoiLyg8XD9bcGhcc1=rKGlmW1xzXChcIV=rKGZpbGVfZXhpc3RzXHMqXCh8aXNzZXRbXHNcKF=rXCRfKFJFUVVFU3xHRXxQT1MpVFxbW15cXV=rXF=pW15ce1=rXHtbXlx9XStbXHNcfV=rKStcPz5ccyp8PFteXD9dW14-XSo-XHMqKSo8XD9bcGhdKlxzKigocHJpbnR8ZWNobylbXjtdKjtccyp8XC9cKlteXCpdKihcKlteXCpcL1=qKStcL1xzKikqaWZbXHNcKFwhXSsoXEA_aXNfdXBsb2FkZWRfZmlsZXxlbXB=eVwoXCRfU=VSVkVSXFtbIiddSFRUUF9VU=VSX=FHRU5UWyInXVxdW1wpXHNdKyguKz8pc2V=X3RpbWVfbGltaXQpLis_bW92ZV91cGxvYWRlZF9maWxlLisocmV=dXJuIFwkW2Etel8wLTldK3xlY2hvW1woXHMnIl=rW147XSt8dG91Y2hccyooXC9cKi4qP1wqXC9ccyopKlwoW147XSspO1tcc1x9XSsoJHxcPz4oXHMqPFwvKGJvZHl8aHRtbCk-KSopL2lzIjt9czo3NzoiZndyaXRlIHVubGluayBldmFsIGNobW9kIFBPU1QgcGhwaW5mbyBtb3ZlX3VwbG9hZGVkX2ZpbGUgZXhlYyBzeXN=ZW=gcGFzc3RocnUiO2E6Mjp7aTowO3M6NToiSEFWOHEiO2k6MTtzOjE1MzoiLzxcPy4rP2Vycm9yX3JlcG9ydGluZ1woMFwpLis_ZndyaXRlXCguKz91bmxpbmtcKC4rP2V2YWxcKC4rP2NobW9kXChcJF9QT1NUXFsuKz9waHBpbmZvXCguKz9tb3ZlX3VwbG9hZGVkX2ZpbGVcKCguKz8oZXhlY1wofHN5c3RlbVwofHBhc3N=aHJ1XCgpKXszfS4rL2lzIjt9czo=NToiaWYgZnVuY3Rpb25fZXhpc3RzIGZ1bmN=aW9uIHZhcmlhYmxlIGZ1bmN=aW9uIjthOjI6e2k6MDtzOjU6IktCMzlrIjtpOjE7czo=NjM6Ii8oXC9cKlteXCpdKihcKlteXCpcL1=qKStcL1xzKikqKFwkW2Etel8wLTldKyhccypcW1teXF1dK1xdKykqW1wuXHNdKj1ccyooKFsnIl=pLio_XDYpP1teO1=qO1xzKikrKChpZltcKFxzXCFdK2Z1bmN=aW9uX2V4aXN=c1tcKFxzXStbJyJdW15ce1=rXHtccyopP2Z1bmN=aW9uXHMqKFtcJGEtel8wLTldKylccypcKC4rP3JldHVybi4qPztbXHNcfV=rKSgoXCRbYS16XzAtOV=rKVxzKj1ccyooY3JlYXRlX2Z1bmN=aW9uXHMqXChbXixdKyxccyp8XDlcKFxzKikoW1wkYS16XzAtOV=rfChbJyJdKSlbXjtdKls7JyJcKVx9XHNdKykrKFxzKihcJFthLXpfMC=5XStccyo9XHMqKT9cJFthLXpfMC=5XStcKFteO1=rWyInXCk7XH1cc1=rKSsoKGlmW1woXHNcIV=rZnVuY3Rpb25fZXhpc3RzW1woXHNdK1snIl1bXlx7XStce1xzKik_ZnVuY3Rpb25ccyooXDExfFwxMylccypcKC4qP3JldHVybi4qPztbXHNcfV=rKT8vaXMiO31zOjY5OiJyZXF1aXJlX29uY2Ugd3AtY29uZmlnIGluaV9zZXQgbXlzcWxfcXVlcnkgVVBEQVRFIHVzZXJzIFNFVCB1c2VyX3Bhc3MiO2E6Mjp7aTowO3M6NToiSEFWOHUiO2k6MTtzOjE5MToiL14uKjxcP1twaFxzXSooaW5jbHVkZXxyZXF1aXJlKShfb25jZSk_XCguK3dwLWNvbmZpZ1wucGhwWyInXHNcKTtdKyhcQD9pbmlfc2V=XChbXlwpXStbXCk7XHNdKykrLis_KG15c3FsX3F1ZXJ5XChbJyJdVVBEQVRFW1xzXHsnIi5dK1wkdGFibGVfcHJlZml4W1xzXH=nIi5dK3VzZXJzXHMrU=VUXHMrdXNlcl9wYXNzLispezIsfSQvaXMiO31zOjM2OiJpZiByZW5hbWUgb3IgZmlsZV9wdXRfY29udGVudHMgdG91Y2giO2E6Mjp7aTowO3M6NToiSjVTOEoiO2k6MTtzOjIwNDoiLzxcP1twaFxzXStpZltcc1woXStpc3NldFtcc1woXStcJF8oUkVRVUVTfEdFfFBPUylUKFxzKlxbW15cXV=rXF=pK1tcKVxzXHtdK1teO1=rO1xzKlteXH1dKlx9W1x9XHNdKihcJFthLXpfMC=5XSspW1xzKlwuPV=rYmFzZTY=X2RlY29kZVwoLis_ZmlsZV9wdXRfY29udGVudHNcKChbXixdKyksXHMqXDMuKz91bmxpbmtcKC4rP1woXDRbXCk7XHNdKy4rL2lzIjt9czoxODoiZXZhbCBSRVFVRVNUIGFsb25lIjthOjI6e2k6MDtzOjU6IkpBUUxPIjtpOjE7czoxNzM6Ii88XD9bcGhcc1=rKChcJFthLXpfMC=5XSspXHMqPVteO1=rO1xzKik_XEA_KGV2YWx8c3lzdGVtfGVjaG9ccytiYXNlNjRfZGVjb2RlKShbXChccypcQF=rc3RyaXBzbGFzaGVzKT9bXChccypcQF=rKFwyfFwkXyhSRVFVRVN8R=V8UE9TKVRccyooXFtbXlxdXStcXVxzKikrKVtcKTtcc1=rKCR8XD8-KS9pIjt9czoyMzoiRmlsZXNNYW4gcHJlZ19yZXBsYWNlIC4iO2E6Mjp7aTowO3M6NToiSEI2N1kiO2k6MTtzOjI=MjoiLzxcP1twaFxzXSooXC9cKi4rP1wqXC9ccyopKihcJFthLXpfMC=5XStccyo9W147XSs7XHMqKSpcJFthLXpfMC=5XStccyo9W1xzIiddKkZbIidcLlxzXSppWyInXC5cc1=qbFsiJ1wuXHNdKmVbIidcLlxzXSpzWyInXC5cc1=qTVsiJ1wuXHNdKmFbIidcLlxzXSpuWyInXHNdKjsoXHMqXCRbYS16XzAtOV=rXHMqPVteO1=rOykqXHMqKFwkW2Etel8wLTldK3xwcmVnX3JlcGxhY2UpXChbXlwpXSpbXCk7XHNdKygkfFw_PikvaXMiO31zOjMzOiJodG1sIGhlYWQgdW56aXAgRklMRVMgdW5saW5rIGZvcm=iO2E6Mjp7aTowO3M6NToiTDFUR=ciO2k6MTtzOjI3NzoiL148aHRtbD5ccyo8aGVhZD4oPHNjcmlwdC4rP=hhY2tlZFxzK2J5Lis_PGlmcmFtZSAuKz88YXVkaW8uKz98Lis_KGZpbGVwZXJtc1xzKlwoLis_KHBvc2l4X2dldFtwd3Vncl=raWRccypcKC4rPyl7Mix9bW92ZV91cGxvYWRlZF9maWxlXHMqXCguKz9mcHV=c1xzKlwoLis_dW5saW5rXHMqXCguKz9leGVjXHMqXCguKz9ccypyZWFkZGlyXCguKz9cP3x1bnppcFwoXCRfRklMRVNcWy4rP3VubGlua1woXCQuK1w_PlxzKjxcL2Zvcm=pPlxzKik8XC9ib2R5PlxzKjxcL2h=bWw-XHMqJC9pcyI7fXM6NjU6ImlmIGFycmF5X2tleXMgR=VUIGZpbGVfZ2V=X2NvbnRlbnRzIGlmIHVubGluayBmb3BlbiBmd3JpdGUgZmNsb3NlIjthOjI6e2k6MDtzOjU6IkkxSEd=IjtpOjE7czozODc6Ii88XD9bcGhcc1=rKFwvXC9bXlxuXSpcblxzKnxcL1wqW15cKl=qKFwqW15cKlwvXSopK1wvXHMqfFxAPyhpZ25vcmVfdXNlcl9hYm9ydHxpbmlfc2V=fHNldF9=aW1lX2xpbWl=fGVycm9yX3JlcG9ydGluZylcKC4qP1wpO1xzKnxcJFthLXpfMC=5XStccyo9W147XSs7XHMqKSooKChpZlxzKlwofGVsc2UpW15ce1=qXHtccyopP2Z1bmN=aW9uXHMrLis_cmV=dXJuW147XSo7W1xzXH1dKykrKChcJFthLXpfMC=5XStccyo9XHMqKT9cJFthLXpfMC=5XStcKFteO1=rWyInXCk7XH1cc1=qKSsuKz8oZihvcGVufHdyaXRlfGNsb3NlKVwoLis_KXszLH1pbmNsdWRlXCguKj9cKTtccyp1bmxpbmtcKC4qP1wpO1xzKihcJFthLXpfMC=5XStccyo9W147XSs7W1x9XHNdKikqKCR8XD8-KS9pcyI7fXM6NzY6ImRpc3BsYXlfZXJyb3JzIGZpbGVfZ2V=X2NvbnRlbnRzIF9SRVFVRVNUIGZpbGVuYW1lIHVwZGF=ZV9jb2RlIGZ3cml=ZSB1bmxpbmsiO2E6Mjp7aTowO3M6NToiSEJVRkciO2k6MTtzOjE1NzoiL14uKz8oZXJyb3JfcmVwb3J=aW5nXCgwXCl8ZGlzcGxheV9lcnJvcnMpLis_KGZpbGVfZ2V=X2NvbnRlbnRzXChbXjtdKnx1cmxkZWNvZGVcKClcJF8oUE9TfEdFfFJFUVVFUylUXFtbIiddZltpbGVdKm5hbWVbc1=_WyInXVxdLis_ZndyaXRlXCguKz91bmxpbmtcKC4rJC9pcyI7fXM6NTU6InBocCBWYXJzIEFycmF5IGJhc2U2NF9kZWNvZGUgZnVuY3Rpb24gVmFyaWFibGUgRnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiSEJVRkkiO2k6MTtzOjI3NToiLyhcJFthLXpfMC=5XStccyo9W147XStbO1xzXSspKihcJFtcJFx7XSpbYS16XzAtOV=rXH=qKFxzKlxbW15cXV=rXF18XHMqXHtbXlx9XStcfSkqKVxzKj1ccyphcnJheVtcKFxzXStiYXNlNjRfZGVjb2RlXCguKz9mdW5jdGlvbiAoW2Etel8wLTldKylccypcKC4rP1wyXHMqKFxbW15cXV=rXF1ccyopKlwoLisoXCRbXCRce1=qW2Etel8wLTldK1x9KihccypcW1teXF1dK1xdfFxzKlx7W15cfV=rXH=pKilccyo9XDRcKC4rPyhlY2hvfGRpZXxwcmludClbXHNcKF=qXDZbXjtdKjsvaXMiO31zOjUzOiJleGVjIHN5c3RlbSBwYXNzdGhydSBmd3JpdGUgVmFyaWFibGUgRnVuY3Rpb24gUkVRVUVTVCI7YToyOntpOjA7czo1OiJJNVRCWiI7aToxO3M6MjYzOiIvPFw_KD89LipwYXNzdGhydVwofC4qZXhlY1wofC4qc3lzdGVtXCgpLio_KCgoXCRbYS16XzAtOV=rKVxzKj1ccyooW2Etel8wLTldK1woXHMqKSpcJF8oUkVRVUVTVHxHRVR8UE9TVHxTRVJWRVJ8Q=9PS=lFKVxbW147XSs7W1xzXH1dKihlbHNlXHMqXHtbXlx9XStcfVtcc1x9XSopPykrLiooPzwhbmV3IClcJFthLXpfMC=5XSsoPyFcKCBcJGtleSBcKSBcKTspXChbXHMiXSpcM3xcJFthLXpfMC=5XStcKFwkXyhSRVFVRVN8R=V8UE9TKVQpLis_KCR8XD8-KS9pcyI7fXM6NjY6InBocCBpZiBmdW5jdGlvbl9leGlzdHMgZmlsZV9wdXRfY29udGVudHMgZm9wZW4gY2htb2Qgc3lzdGVtIHVubGluayI7YToyOntpOjA7czo1OiJJNEVLdiI7aToxO3M6MTY2OiIvPFw_KC4rPyh=b3VjaHxoZWFkZXIpXCgpLis_aWZbXHNcKFwhXStmdW5jdGlvbl9leGlzdHNcKFtccyciXSsoZmlsZV9wdXRfY29udGVudHMpWyInXHNcKVx7XStmdW5jdGlvblxzK1wzXCguKz9mb3BlblwoLis_XDNcKC4rP2NobW9kXCguKz9zeXN=ZW1cKC4rKHVubGlua3xleGl=KS4rL2lzIjt9czo3MjoiYmFzZTY=X2RlY29kZSBmaWxlX3B1dF9jb25=ZW5=cyBjaG1vZCB=b3VjaCBmc29ja29wZW4gY3VybF9leGVjIG9iX3N=YXJ=IjthOjI6e2k6MDtzOjU6IkhDMzhsIjtpOjE7czoxOTU6Ii9cL1wvXHMqaXN=YXJ=Lis_KFwkW2Etel8wLTldKylbXHMqXC49XStiYXNlNjRfZGVjb2RlXCguKz9maWxlX3B1dF9jb25=ZW5=c1woW14sXSssXHMqXDEuKz9jaG1vZFwoLis_dG91Y2hcKC4rPyhmc29ja29wZW5cKC4rP2ZnZXRzXCh8Y3VybF9pbml=XCguKz9jdXJsX2V4ZWNcKCkuKz9vYl9zdGFydFwoLis_XC9cL2llbmRbXlxuXD9dKi9pcyI7fXM6MjE6ImlmIGlzc2V=IFJFUVVFU1QgZXZhbCI7YToyOntpOjA7czo1OiJJOElHUiI7aToxO3M6NDAyOiIvPFw_W3BoXHNdKygoXCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKikqKGlmW1xzXChdK2lzc2V=fGZvcihlYWNoKT8pW1woXHNdK1wkXyhSRVFVRVN8R=V8UE9TKVRbXlwpXStcKVtcKVxzXHtdKyhcJFthLXpfMC=5XStbXC49XHNdK1wkXyhSRVFVRVN8R=V8UE9TKVRcW1teXF1dK1xdWztcc1=rfGlmXHMqXChbXjtdKztbXHNcfV=qZnVuY3Rpb25ccytbYS16XzAtOV=rXCguK3JldHVyblteO1=qO1tcfVxzXSooXCRbYS16XzAtOV=rXHMqPVteO1=rO1xzKikqKSsoKFwkW2Etel8wLTldK1s9XHNdKyk_XEA_KGV2YWx8ZmlsZV9wdXRfY29udGVudHN8Zm9wZW58ZndyaXRlfGZjbG9zZSlcKFteXCldK1wpO1xzKikrKChlY2hvfGV4aXQpW15cO1=qO1xzKikqW1x9XHNdKihlbHNlW1xzXHtdKik_KSsoJHxcPz4pL2kiO31zOjgxOiJlcnJvcl9yZXBvcnRpbmcgZXZhbCBjdXJsX2luaXQgZmlsZV9nZXRfY29udGVudHMgZmlsZV9wdXRfY29udGVudHMgaW5jbHVkZSB1bmxpbmsiO2E6Mjp7aTowO3M6NToiSENDOXgiO2k6MTtzOjE5ODoiL1wkW2Etel8wLTldK1s9XHNdK19fRklMRV9fO1xzKlwkW2Etel8wLTldK1xzKj1bXjtdezIwMDB9Lio_ZXJyb3JfcmVwb3J=aW5nXCguKz9ldmFsXCguKz8oY3VybF9pbml=fGZpbGVfZ2V=X2NvbnRlbnRzKS4rP2ZpbGVfcHV=X2NvbnRlbnRzXCguKz9pbmNsdWRlLio_dW5saW5rXCguKj9cKTtccypcfVxzKmVsc2Vccypce1teXH1dK1tcfV=rL2lzIjt9czo=MDoic2V=X2Vycm9yX2hhbmRsZXIgZXZhbCBmaWxlX2dldF9jb25=ZW5=cyI7YToyOntpOjA7czo1OiJJOE5JdSI7aToxO3M6MjA1OiIvKChlcnJvcl9yZXBvcnRpbmd8c2V=X2Vycm9yX2hhbmRsZXJ8aW5pX3NldClccypcKFteO1=qO1xzKikqKGVjaG9bXHNcKF=rXEA_ZmlsZV9nZXRfY29udGVudHNbXChcc1=rKGNoclwoWzAtOV=rW1xzXClcLl=rKSt8ZXZhbFwoW15cKV=qPyhcJHJlcXVlc3R8c3RycmV2XCgpW15cKV=qP1xAP2ZpbGVfZ2V=X2NvbnRlbnRzXCgnW14nXSsnW1xzXCldKyk7L2lzIjt9czoyMzoiaWYgZm9yIHVuc2V=IHdwX3dwIGZvcm=iO2E6Mjp7aTowO3M6NToiSENFRFgiO2k6MTtzOjIwNjoiLzxcP1twaFxzXSooXCQoW2Etel8wLTldKylccyo9W147XSs7XHMqKSooXCQoKChsfHdwKVtfXSopezJ9KVxzKj1bXjtdKztccyopKyhpZnxmb3J8dW5zZXR8KFwkW2Etel8wLTldK1xzKj1ccyopP1wkKFwyfFw=KSlccypcKFwkKFwyfFw=KVteO1=rO1xzKi4qP1w_PlxzKjxmb3JtLis_bmFtZT1bJyJdKCgobHx3cClbX1=qKXsyfSlbJyJdLis_PFwvZm9ybT4vaXMiO31zOjE3OiJwaHAgY2xhc3MgdmlhV29ybSI7YToyOntpOjA7czo1OiJIQ=VEWiI7aToxO3M6MjUyOiIvPFw_W3BoXHNdKyhcL1wqLio_XCpcL1xzKikqKGNsYXNzIHZpYVdvcm1ccypcey4rP2Z3cml=ZVwoLis_ZmlsZV9nZXRfY29udGVudHNcKC4rP3VubGlua1woLis_YmFzZTY=X2VuY29kZVwoLis_KT9maWxlX3B1dF9jb25=ZW5=c1woW14sXSssXHMqYmFzZTY=X2RlY29kZVwoKFxAP2ZpbGVfZ2V=X2NvbnRlbnRzXCguK3xbXlwpXStbXCk7XHNdK2VjaG9bXHNcKF=rZmlsZV9nZXRfY29udGVudHNcKFteXCldK1tcKTtcc1=rKCR8XD8-KSkvaXMiO31zOjI4OiJhc3NlcnQgSGV4IDY=ZW5jb2RlZFRleHQgSGV4IjthOjI6e2k6MDtzOjU6IkhDRURiIjtpOjE7czoyOTQ6Ii8oYXNzZXJ=X29wdGlvbnNcKC4rP1wpO1xzKnxmdW5jdGlvbiBbYS16XzAtOV=rXChbXlwpXSpbXClcc1x7XSsuKz9yZXR1cm5bXjtdKls7XH1cc1=rfFwkKGNvbG9yfGF1dGh8cGFzc3xkZWZhdWx=fF9fKVtfXC1cPlwuYS16MC=5XSpccyo9Lis_O1xzKikqKCgoXCRbYS16XzAtOV=rKVxzKj=uKj9cJFwyfChcJFthLXpfMC=5XSspXHMqPS4qP1w1KS4qXHMqKSphc3NlcnRcKFxzKigiKFxceFswLTlBLUZdWzAtOUEtRl=pKydbXC9hLXpcXzAtOVw9XSsnKFxceFswLTlBLUZdWzAtOUEtRl=pKyJ8XDYpW1wpXHNdKzsvaSI7fXM6Mjk6InBvc3Qgc3RydG91cHBlciBpZiBpc3NldCBldmFsIjthOjI6e2k6MDtzOjU6IkhDVDlGIjtpOjE7czoxODc6Ii8oKFwkW2Etel8wLTldKylccyo9W147XSs7XHMqKSsoXCRbYS16XzAtOV=rXHMqPVxzKihcJFthLXpfMC=5XSt8c3RydG8uLi5lcilccypcKChbXHNcLl=qXCRbYS16XzAtOV=rXHMqXFtcZCtcXSkrW1wpO1xzXSspK2lmW1woXHNdK2lzc2V=XHMqXChbXlwpXStbXClcc1=rXHtccypldmFsXHMqXChbXlwpXStbXCk7XHNdK1x9L2kiO31zOjQ5OiJmdW5jdGlvbiBnemluZmxhdGUgYmFzZTY=X2RlY29kZSBmb3IgY2hyIG9yZCBldmFsIjthOjI6e2k6MDtzOjU6IkkzNUVLIjtpOjE7czoyNDk6Ii8oZnVuY3Rpb25ccysoW2Etel8wLTldKylccypcKFxzKihcJFthLXpfMC=5XSspW1wpXHNce1=rXDNbPVxzXStnemluZmxhdGVcKGJhc2U2NF9kZWNvZGVcKC4rW1wpO1xzXSspP2ZvclxzKlwoKFteXHtdK3wuKz8pXHtccyooXCRbYS16XzAtOV=rKShccypcW1teXF1dK1xdKykqW1wuXHNdKj1bXEBcc1=qY2hyXChbXjtdK1s7XHNcfV=rKHJldHVyblteO1=qWztcfVxzXSspP2V2YWxcKChcMlwofFwzfFw1KVteXCldKlwpW1wpO1xzXSsvaSI7fXM6ODc6ImluaV9zZXQgb2Jfc3RhcnQgcmVnaXN=ZXJfc2h1dGRvd25fZnVuY3Rpb24gaWYgSFRUUF9VU=VSX=FHRU5UIGZpbGVfZ2V=X2NvbnRlbnRzIHJldHVybiI7YToyOntpOjA7czo1OiJJMTQ5diI7aToxO3M6Mjc2OiIvXEA_aW5pX3NldFwoLitccysoXEA_b2Jfc3RhcnRcKFsiJ1=oLis_KVsnIl1cKTtccytcQD9yZWdpc3Rlcl9zaHV=ZG93bl9mdW5jdGlvblwoLitccysoZnVuY3Rpb25ccytcMlwoXCRbYS16XzAtOV=rW1wpXHNce1=raWYuKz9IVFRQX1VTRVJfQUdFTlQuK1tcKVxzXHtdKy4rP2ZpbGVfZ2V=X2NvbnRlbnRzLitccypyZXR1cm5bXjtdKjtbXHNcfV=rKT98KFwkW2Etel8wLTldKylccyo9XHMqYmFzZTY=X2RlY29kZVwoLitccyplY2hvLis_ZmlsZV9nZXRfY29udGVudHNcKFw=LispL2kiO31zOjI5OiJpZiBpc3NldCBSRVFVRVNUIGV2YWwgUkVRVUVTVCI7YToyOntpOjA7czo1OiJJMTQ5dyI7aToxO3M6MTUyOiIvaWZbXHNcKF=rKGlzc2V=fGVtcHR5KVtcc1woXStcJF8oUkVRVUVTfEdFfFBPUylUW15ce1=rW1x7XHNdKy4qZXZhbFtcc1woXStbXCRhLXpfMC=5XStbXlwpXSpcKSsoLisoZGllfGV4aXR8ZWNob3xwcmludHxyZXR1cm4pW147XSo7KSpbXHNcfTtdKigkfFw_PikvaSI7fXM6Mzg6ImlmIENPT=tJRSBnemluZmxhdGUgYmFzZTY=X2RlY29kZSBldmFsIjthOjI6e2k6MDtzOjU6IkkxNDl4IjtpOjE7czoyNDc6Ii9pZlxzKlwoLis_XChcJF9DT=9LSUUuKz9bXHtcc1=qKFwkW2Etel8wLTldKylccyo9Lio_YmFzZTY=X2RlY29kZVwoKC4rP2V2YWxcKFwxXCkuK3xbXjtdK1s7XHNdKyhcJFthLXpfMC=5XSspXHMqPVteO1=rWztcc1=rKGZpbGVfcHV=X2NvbnRlbnRzXChcMy4rP1wxW147XStbO1xzXSt8ZWNob1tcKFxzXStbJyJdXFx4Lis_WyciXVtcKTtcc1=rKGluY2x1ZGV8dW5saW5rKVtcKFxzXStcM1tcKTtcc1=rKXszLH=uKylbXHNcfV=qL2kiO31zOjUyOiJhdXRoX3Bhc3MgY29weSBGSUxFUyBleGVjIHBhc3N=aHJ1IHN5c3RlbSBzaGVsbF9leGVjIjthOjI6e2k6MDtzOjU6IkkxNEEwIjtpOjE7czoxMjE6Ii88XD8oPz=uKlwkKG1kNXxhdXRoKV9wYXNzXHMqPSkoPz=uKmNvcHlcKFwkXyhQT1NUfEZJTEVTKVxbKSg_PS4qZXhlY1woKSg_PS4qcGFzc3RocnUpKD89LipzeXN=ZW=pKD89LipzaGVsbF9leGVjXCgpLisvaXMiO31zOjEzMToiaW5pX3NldCBlcnJvcl9yZXBvcnRpbmcgaWYgZnVuY3Rpb25fZXhpc3RzIGZ1bmN=aW9uIGVjaG8gcmV=dXJuIGZpbGVfZ2V=X2NvbnRlbnRzIGZpbGVfcHV=X2NvbnRlbnRzIHNldGNvb2tpZSBhZGRfYWN=aW9uIGFkZF9maWx=ZXIiO2E6Mjp7aTowO3M6NToiSTRFTHYiO2k6MTtzOjM4MzoiLyhcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcJFthLXpfMC=5XStccyo9W147XSs7XHMqfChpbmlfc2V=fGVycm9yX3JlcG9ydGluZ3xzZXRfdGltZV9saW1pdClcKFteXCldKlwpO1xzKikrKChpZltcc1woXCFdK2Z1bmN=aW9uX2V4aXN=c1tcKFxzXSsoWyInXSkoLis_KVw2W1wpXHNdK1x7XHMqKT9mdW5jdGlvblxzKyhbYS16XzAtOV=rKVxzKlwoW15cKV=qXClbXClcc1x7XSsuKz8oZWNob3xyZXR1cm4pW147XSo7W1x9XHNdKykrKC4rPyhmaWxlXy4udF9jb25=ZW5=c3xldGNvb2tpZSlcKCkuKz9maWxlXy4udF9jb25=ZW5=c1woLisoYWRkXyhhY3Rpb258ZmlsdGVyKVwoW14sXSssXHMqWyciXShcN3xcOClbJyJdW1xzXCldKztbXH1cc1=qKXsyLH=vaXMiO31zOjM1OiJpZiBpc3NldCBiYXNlNjRfZGVjb2RlIFJFUVVFU1QgZXZhbCI7YToyOntpOjA7czo1OiJJMThIUiI7aToxO3M6MzA4OiIvPFw_W3BoXHNdKygoXEA_KGlnbm9yZV91c2VyX2Fib3J=fHNldF9=aW1lX2xpbWl=KVwofFwkW2Etel8wLTlcLl=rXHMqPSlbXjtdK1s7XHNdKykqaWZbXChcc1whXSsoaXNzZXR8ZW1wdHkpW1woXHNdK1wkXyhSRVFVRVN8R=V8UE9TKVRcWy4rW1xzXHtdKyhcJFthLXpfMC=5XC5dKylccyo9XHMqKGJhc2U2NF9kZWNvZGV8XCRbYS16XzAtOV=rKVxzKlwoK1xzKlwkXyhSRVFVRVN8R=V8UE9TKVRcW1teXF1dK1xdW1wpO1xzXStcQD9ldmFsXChcNlwpO1xzKlx9KFxzKmVsc2VbXHNce1=rZWNobyAiW14iXSpbIjtcc1x9XSspPygkfFw_PikvaSI7fXM6Mzk6ImJhc2U2NF9kZWNvZGUgZnVuY3Rpb24gY3VybCByZXR1cm4gZXhpdCI7YToyOntpOjA7czo1OiJJMTk4WiI7aToxO3M6MTk1OiIvPFw_W3BoXHNdKihcL1wqLis_XCpcL1xzKikqKFwkW2Etel8wLTldK1xzKj1ccypiYXNlNjRfZGVjb2RlXChbXjtdK1tcKTtcc1=qKStmdW5jdGlvblxzKyhbYS16XzAtOV=rKVxzKlwoW15ce1=rW1x7XHNdKygoXCRbYS16XzAtOV=rW1xzKj1dKyk_Y3VybF9bXjtdKztccyopK3JldHVybiAuK1wzXCguK2V4aXQ7W1x9XHNdKygkfFw_PikvaXMiO31zOjgxOiJwaHAgYmFzZTY=X2RlY29kZSBmaWxlX3B1dF9jb25=ZW5=cyB1bmxpbmsgZnVuY3Rpb25fZXhpc3RzIEhleCBjYWxsX3VzZXJfZnVuYyBIZXgiO2E6Mjp7aTowO3M6NToiSTE5OTYiO2k6MTtzOjM1NjoiLzxcP1twaFxzXSsoXCRce1teXH1dK1tcfVxzXSsoXFtbXlxdXStbXF1cc1x9XSspKj1bXjtdK1s7XHNdKyhcQD8oXCRbYS16XzAtOV=rXHMqPXxkZWZpbmVcKHxzZXNzaW9uX3N=YXJ=XCh8ZXJyb3JfcmVwb3J=aW5nXCh8aW5pX3NldFwofHNldF9=aW1lX2xpbWl=XCh8c2V=X21hZ2ljX3F1b3Rlc19ydW5=aW1lXCgpW147XStbO1xzXSt8aWZcKFteXHtdK1tce1xzXStbXlx9XStbXH1cc1=rKSopKyhbXjtdK1s7XHNdKyk_LitmaWxlX3B1dF9jb25=ZW5=c1woLis_YmFzZTY=X2RlY29kZVwoLis_dW5saW5rXCguKz9mdW5jdGlvbl9leGlzdHNcKFsnIl1cXHguKz9jYWxsX3VzZXJfZnVuY1woWyciXVxceC4rPygkfFw_PikvaXMiO31zOjg5OiJjdXJsX2luaXQgaGVhZGVyIExvY2F=aW9uIHJldHVybiBwcmVnX3JlcGxhY2VfY2FsbGJhY2sgY3JlYXRlX2Z1bmN=aW9uIHJldHVybiBSRU1PVEVfQUREUiI7YToyOntpOjA7czo1OiJJMTk5RSI7aToxO3M6MTQ2OiIvPFw_Lis_Y3VybF9pbml=XCguKz9oZWFkZXJbXCgiJ1xzXStMb2NhdGlvbjouKz9yZXR1cm4gcHJlZ19yZXBsYWNlX2NhbGxiYWNrXCguKz9jcmVhdGVfZnVuY3Rpb25cKC4rP3JldHVybiBcJF9TRVJWRVJcW1siJ11SRU1PVEVfQUREUi4rKFw_PnwkKS9pcyI7fXM6MTI5OiJwaHAgc2V=X3RpbWVfbGltaXQgaW5pX3NldCBlcnJvcl9yZXBvcnRpbmcgaWYgYXJyYXlfa2V5X2V4aXN=cyBIVFRQX1VTRVJfQUdFTlQgc2VhcmNoLXRyYWNrZXIuY29tIHByZWdfbWF=Y2ggZ29vZ2xlIGJpbmcgb2Jfc3RhcnQiO2E6Mjp7aTowO3M6NToiSTE5OUYiO2k6MTtzOjIzMDoiLzxcP1twaFxzXSsuKj9zZXRfdGltZV9saW1pdFwoLis_aW5pX3NldFwoLis_ZXJyb3JfcmVwb3J=aW5nXCguKz9pZltcKFwhXHNdK2FycmF5X2tleV9leGlzdHNcKFsiJ11IVFRQX1VTRVJfQUdFTlQuKz9odHRwOlwvXC9zZWFyY2gtdHJhY2tlclwuY29tXC9pblwuY2dpXD8uKz8ocHJlZ19tYXRjaFwoWyInXVwvKFteXC9dKmdvb2dsZXxbXlwvXSpiaW5nKXsyfS4rPyl7Mn=uKz9vYl9zdGFydFwoLisvaXMiO31zOjUxOiJpZiBpc3NldCBGSUxFU3xSRVFVRVNUIG1vdmVfdXBsb2FkZWRfZmlsZSBlbHNlIGVjaG8iO2E6Mjp7aTowO3M6NToiS=NNSk=iO2k6MTtzOjYyMToiLzxcP1twaFxzXSsoKFwkW2Etel8wLTldK1xzKj18ZXJyb3JfcmVwb3J=aW5nXCh8c2V=X3RpbWVfbGltaXRcKHxpbmlfc2V=XCgpW147XStbO1xzXSspKigoW2Etel8wLTldKylcKFteO1=rWztcc1x9XSspPyhpZltcKFxzXStzdWJzdHJbXChcc1=rW15ce1=rW1xzXHtdKyhcJFthLXpfMC=5XStccyo9W147XStbO1xzXH1dKykrKT8oKGlmW1woXHNdKyhpc3NldFtcKFxzXSspP1wkXyhGSUxFU3xSRVFVRVNUfFBPU1R8R=VUKVteXCldKltcKVxzXHtdKygoXCRbYS16XzAtOV=rXHMqPXxlY2hvW1xzXCgnIl=rKVteO1=rO1xzKikqKSsoXEB8aWZbXChcc1=rKSoobW92ZV91cGxvYWRlZF9maWxlXChbXjtdK3woZndyaXRlXChbXjtdKztccyopK2ZjbG9zZVwoW147XSspKFs7XHNcfVxAXSsoY2htb2R8ZWNobylbXHNcKCciXStbXjtdKykqWztcc1x9XSsoZWxzZVtce1xzXSt8KGVjaG98ZXhpdHxoZWFkZXIpW147XSpbO1xzXH1dKykqKSsoZnVuY3Rpb25ccytcNFwoW147XStbO1xzXH1dKyhcJFthLXpfMC=5XStccyo9W147XStbO1xzXH1dKykqaWZbXChcc1=rW15ce1=rW1xzXHtdKyhcQHxpZltcKFxzXSspKm1rZGlyXChbXjtdK1s7XHNcfV=rcmV=dXJuW147XStbO1xzXH1dKyk_KCR8XD8-KS9pIjt9czo1NToiaHRtbCBib2R5IHBocCBvcGVuZGlyIHJlYWRkaXIgIWZpbGVfZXhpc3RzIGZvcGVuIGZ3cml=ZSI7YToyOntpOjA7czo1OiJJMU1GZSI7aToxO3M6MjIwOiIvKDwoXCF8XC8pPyhkb2N=eXBlfGh=bWx8aGVhZHxtZXRhfHRpdGxlfGJvZHkpW14-XSo-W2Etel8wLTlcc1=qKXsyLH=8XD9bcGhcc1=rXCRbYS16XzAtOV=rXHMqPVxzKic8XD9bcGhcc1=rLis_b3BlbmRpclwoLis_cmVhZGRpclwoLis_KFwhZmlsZV9leGlzdHNcKC4rP2ZvcGVuXCguKz9md3JpdGVcKC4rPyl7Myx9XD8-XHMqKDxcLyhodG1sfGJvZHkpW14-XSo-XHMqKXsyLH=kL2lzIjt9czo2MToiZnVuY3Rpb24gWF9pcCBYX21hY3JvcyBlcnJvcl8=MDQgaHR=cF9yZXF1ZXN=IGZ3cml=ZSBGVU5DVElPTiI7YToyOntpOjA7czo1OiJJMU1GbCI7aToxO3M6MTE2OiIvXDxcPy4rP19pcFwoKC4rP2Z1bmN=aW9uIFthLXowLTldK19tYWNyb3NcKCl7NH=uKz9mdW5jdGlvbiBlcnJvcl8=MDRcKC4rP2h=dHBfcmVxdWVzdC4rP2Z3cml=ZVwoLis_X19GVU5DVElPTl9fLisvcyI7fXM6NDY6InBlcmwgdXNlIElPOjpTb2NrZXQgc2Nhbl9kaXIgdW5hbWUgc3lzdGVtIGV4ZWMiO2E6Mjp7aTowO3M6NToiSTFQQ2kiO2k6MTtzOjE5ODoiL1wjXCEoXC91c3IpP1wvYmluXC8ocGVybC4rP3NjYW5fZGlyXCguKz91bmFtZVwoLis_c3lzdGVtXCguKz9maWxlbWFuYWdlci4rfFtiYV=qc2hccyt3Z2V=XHMrXC1vXHMrKFxTKylccysoXFMrKVteO1=qO1xzKigoY2htb2R8Y2hvd258Y3VybClccysoXFMrXHMrXDMoXHMrXDQpP1s7XHNdKikrKStybVxzK1wtW3JmXStccytcM1s7XHNdKiQpL2lzIjt9czo2MDoicGF=aCBpZiBmaWxlX2V4aXN=cyBpc193cml=YWJsZSBpZiBmdW5jdGlvbl9leGlzdHMgV3JpdGVEYXRhIjthOjI6e2k6MDtzOjU6IkkxUENqIjtpOjE7czoxMzk6Ii9cJHBhdGhbPVxzXSsuK1tcc1=qaWZbXHNdKlwoXCFmaWxlX2V4aXN=c1woLis_aXNfd3JpdGFibGVcKFteXCldKltcKVxzXHtdK2lmW1xzXSpcKGZ1bmN=aW9uX2V4aXN=c1woLis_V3JpdGVEYXRhLis_V3JpdGVEYXRhXChcKTtbXHNcfV=rL2kiO31zOjUxOiJkaXNwbGF5X2Vycm9ycyBjcmVhdGVfd3BfdXNlciBSRVFVRVNUIGZ3cml=ZSB1bmxpbmsiO2E6Mjp7aTowO3M6NToiSjRGSlciO2k6MTtzOjE1NzoiL14uKz9kaXNwbGF5X2Vycm9ycy4rP2NyZWF=ZShffFxzK1RBQkxFXHMrXGApd3BfdXNlcihcYC4rPyhcJFthLXpfMC=5XStccyo9KFxzKlwkW2Etel8wLTldK1xzKlwoKXsyfVteO1=rO1xzKil7Mn18XChcJF9SRVFVRVNUXFsuKz9md3JpdGVcKC4rP3VubGlua1woKS4rJC9pcyI7fXM6NDg6InBocCBhcnJheSBmb3JlYWNoIGFycmF5IGV2YWwgQXJyYXkgRnVuY3Rpb24gUE9TVCI7YToyOntpOjA7czo1OiJJMjFEYSI7aToxO3M6MTI=OiIvPFw_W3BoXSpccysoXCRbYS16XzAtOVwtXSspWz1cc1=rYXJyYXlcKFteO1=rO1xzKmZvcmVhY2hbXHNcKF=rXDEuKz9ldmFsW1xzXChdK1wxXFtbXlxdXStcXStbXChcc1=rXCRfUE9TVFxbXDEuKz8oJHxcPz4pL2lzIjt9czoyNDoid2ViIHNoZWxsIGZvcGVuIHBhc3N=aHJ1IjthOjI6e2k6MDtzOjU6IkkyMURjIjtpOjE7czo2OToiL14uKz9lcnJvcl9yZXBvcnRpbmdcKC4rP3dlYlsgXHRdKnNoZWxsLis_Zm9wZW5cKC4rP3Bhc3N=aHJ1XCguKz8kL2lzIjt9czoyMjoiZXZhbCBhcnJheV9wb3AgUkVRVUVTVCI7YToyOntpOjA7czo1OiJJOUVIMiI7aToxO3M6OTI6Ii9ldmFsXChbXHNhLXpfMC=5XC5cKF=qKGZyb21DaGFyQ29kZVwoWzAtOSxcc1=rfGFycmF5X3BvcFwoXCRfKEdFfFBPU3xSRVFVRVMpVClbXClcc1=rO1xzKi9pIjt9czozMzoiL2F1dGhfcGFzcyBsb3ZlIHNldF9lcnJvcl9oYW5kbGVyIjthOjI6e2k6MDtzOjU6IkkyNTk5IjtpOjE7czoxNTY6Ii88XD8oPz=uKnVubGlua1woUEFTU1dPUkRfRklMRXwuKlwkYXV=aF9wYXNzKSg_PS4qbG92ZUxvZ2lufC4qc2V=X3RpbWVfbGltaXQpKD89LipzZXRjb29raWUpKD89LipzZXRfZXJyb3JfaGFuZGxlclwofC4qZnVuY3Rpb24gYXJyYXlfdG9fanNvblwoKS4rKCR8XD8-KS9pcyI7fXM6MjY6IkdFVGRvX3JlbW92ZSBzYWZlX21vZGUgZW5kIjthOjI6e2k6MDtzOjU6IkkyNTlBIjtpOjE7czoxMTQ6Ii9pZlwoXCRfR=VUXFsnZG8nXF=9PSJyZW1vdmUiXClce1xudW5saW5rXChnZXRjd2RcKFwpXC5cJF9TRVJWRVJcWyJTQ1JJUFRfTkFNRSJcXVwpOy4rc2FmZV9tb2RlLitlbHNlLisnXC5cJGVuZDsvcyI7fXM6NTY6InNldF9=aW1lX2xpbWl=IHVubGluayBiYXNlNjRfZGVjb2RlIGZ3cml=ZSBleGVjIHBhc3N=aHJ1IjthOjI6e2k6MDtzOjU6IkkyNTlDIjtpOjE7czo5OToiLzxcPyhwaHApPy4rP3NldF9=aW1lX2xpbWl=XCgwXCkuKz91bmxpbmtcKC4rP2Jhc2U2NF9kZWNvZGVcKC4rP2Z3cml=ZVwoLis_ZXhlY1woLis_cGFzc3RocnVcKC4rL2lzIjt9czozMjoiZnVuY3Rpb24gY2xhc3MgdmFyaWFibGUgZnVuY3Rpb24iO2E6Mjp7aTowO3M6NToiSTNRSDYiO2k6MTtzOjIyNzoiLzxcP1twaFxzXSpmdW5jdGlvblxzKyhbYS16XzAtOV=rKVwoLis_cmV=dXJuW147XSo7XHMqXH1ccypjbGFzc1teXHtdK1x7Lio_ZnVuY3Rpb25bXlx7XStce1xzKihcJFtcJFx7XSpbYS16XzAtOV=rXH=qKFxzKlxbW15cXV=rXF=pKlxzKj1ccyopKlwxXCgoLio_XCRbXCRce1=qW2Etel8wLTldK1tcfVxzXSooXFtbXlxdXStcXVxzKikqXChbXjtdKztccyopezUwLH1bXH1cc1=qKCR8XD8-KSovaXMiO31zOjI4OiJwaHAgU3RhcnRpbmcgY2FsbHMgYzk5c2hleGl=IjthOjI6e2k6MDtzOjU6Ikk1QUJRIjtpOjE7czo4ODoiLzxcP1twaFxzXStcL1wvU3RhcnRpbmcgY2FsbHMuK2NoZGlyXChcJGxhc3RkaXJcKVs7XHNdK1thLXowLTldK2V4aXRcKFwpWztcc1=qKCR8XD8-KS9pcyI7fXM6MjA6InBocCBwYXNzd29yZCBoZ19leGl=IjthOjI6e2k6MDtzOjU6Iko5ODEwIjtpOjE7czoyMDM6Ii88XD9bcGhcc1=qKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvKVxzKlwkcGFzc3dvcmQuKyhsZWFmTWFpbENoZWNrW1woXHNdKy4rcHJpbnRbXHNcKF=qKFsnIl=pLis_XDQ7XHMqKCR8XD8-KXxvYl9zdGFydFtcKFxzXSthcnJheVtcKFxzXStcJFteO1=rO1tcc1x9XSptdF9zcmFuZFwoXCk7W1xzXH1dKigkfFw_Pil8aGdfZXhpdFwoXCk7LispL2lzIjt9czoyMToic2hlbGwgc3lzdGVtIHBhc3N=aHJ1IjthOjI6e2k6MDtzOjU6Ikk2S=QyIjtpOjE7czo5MjoiL1w8XD8uKz8oc2hlbGx8YXV=aHApLis_ZXJyb3JfcmVwb3J=aW5nXCgwXCkuKz9zZXRfdGltZV9saW1pdFwoMFwpLis_aW5pX3NldFwoLitmb3BlblwoLisvaXMiO31zOjE4OiJmdW5jdGlvbiBCU1NWIGV2YWwiO2E6Mjp7aTowO3M6NToiSTcxRWciO2k6MTtzOjQ1OiIvZnVuY3Rpb24gQlNTVlwoLitldmFsXChCU1NWXCguKz9cKStbO1xzXSovaXMiO31zOjMyOiJlcnJvcl9yZXBvcnRpbmcgcGFzc3dvcmQgZXhpdCBtZSI7YToyOntpOjA7czo1OiJJNzdHSyI7aToxO3M6MTMyOiIvPFw_W3BoXHNdKmVycm9yX3JlcG9ydGluZ1woMFwpO1xzKlwvXC9JZiB=aGVyZSBpcyBhbiBlcnJvciwgd2UnbGwgc2hvdyBpdCwga1w_XHMqXCRwYXNzd29yZFxzKj=uKyA6LVwpXHMqZXhpdFwoXCk7XHMqXD8-XC5cJG1lXC4vaXMiO31zOjUzOiJ2YXIgZnVuY3Rpb25zIHJldHVybiBuZXcgUmVjdXJzaXZlQXJyYXlJdGVyYXRvciBhcnJheSI7YToyOntpOjA7czo1OiJJNzlNbiI7aToxO3M6MTYwOiIvKFwkW2Etel8wLTldK1tccz1dKyJbYS16X1wtXDAtOV=qIjtccyopKygoXCRbYS16XzAtOV=rW1xzPV=rKT9cJFthLXpfMC=5XStcKCsuKz9bXCldKztccyopKy4rcmV=dXJuXHMrbmV3XHMrUmVjdXJzaXZlQXJyYXlJdGVyYXRvcltcKFxzXSthcnJheS4rP1tcKVxzXSs7XH=rL2lzIjt9czo1NDoiUEhQIERFRklORSBmaWxlX2dldF9jb25=ZW5=cyBiYXNlNjRfZGVjb2RlIGpzb25fZW5jb2RlIjthOjI6e2k6MDtzOjU6Iko4Qk1uIjtpOjE7czozNTM6Ii88XD9bcGhcc1=rKFxAKigoXCRbYS16XzAtOV=rKVxzKihcW1teXF1dKlxdXHMqKSo9XHMqKFsnIl=pKC4qPylcNXwoXCQuLi4pW2Etel8wLTldK1xzKihcW1teXF1dKlxdXHMqKSo9XHMqKEFycmF5fGV4cGxvZGUpXCh8W2lmXHNcKFwhXSpERUZJTkVbZF=qXCgoWyciXSkoLio_KVwxMHxlcnJvcl9yZXBvcnRpbmdcKClbXjtdKjtbXHNcfV=qKSsuK2ZpbGVfZ2V=X2NvbnRlbnRzXChbXjtdKihcMTF8O1xzKlwkW3N=b3JlZF=qY3JjKS4rYmFzZTY=X2RlY29kZVtcKFxzXSsoXDN8XDcpLisoKFwkW2Etel8wLTldKylcLT5ydW5cKFwpO1xzKnVuc2V=XChcMTVcKTtccyokfGpzb25fZW5jb2RlXChbXjtdKztccypcPz4pL2lzIjt9czo=MToiaWYgYXJyYXlfa2V5cyBHRVQgZXZhbCBiYXNlNjRfZGVjb2RlIGV4aXQiO2E6Mjp7aTowO3M6NToiSjFVN2siO2k6MTtzOjIxNjoiLzxcP1twaFxzXSooXEA_ZXJyb3JfcmVwb3J=aW5nXCgwXCk7XHMqKT9pZltcKFxzXSthcnJheV9rZXlzXChcJF9HRVQuK1xzKygoPFw_W3BoXHNdKik_XCRbYS16XzAtOV=rW1xzXHtcJF=rXEAqZXZhbFwoYmFzZTY=X2RlY29kZVwoWyciXVthLXpfXC9cK1w9MC=5XStbJyJdW1wpXH1ce1wkXHNdK2V4aXRcKFtcKVx9XHNdK1wmXHMqXCRbYS16XzAtOV=rWztcc1x9XStcPz4pKy9pIjt9czo4NToicGhwIGVycm9yX3JlcG9ydGluZyBzZXRfdGltZV9saW1pdCBpbmlfc2V=IF94Y29va2llIGJhc2U2NF9kZWNvZGUgc3RyX3JvdDEzIGd6aW5mbGF=ZSI7YToyOntpOjA7czo1OiJKMktLZiI7aToxO3M6MjI1OiIvPFw_W3BoXHNdKyhcQD8oZXJyb3JfcmVwb3J=aW5nfHNldF9=aW1lX2xpbWl=fGluaV9zZXQpXCguKj8wXCk7XHMqKXszLH=oLis_X3hjb29raWUpezl9KC4rPyhcJFthLXpfMC=5XStccyo9fHJldHVybikoW1xzXEBdKihiYXNlNjRfW2Rlbl=rY29kZXxzdHJfcm9=MTN8Z3pbZGVpbl=rZmxhdGV8c3RycmV2KVwoKXszLH1bXjtdKzspezJ9LityZXR1cm4gZmFsc2VbO1xzXH1dKygkfFw_PikvaXMiO31zOjQ=OiJleGNlc3NpdmUgc3BhY2VzIHNjcmlwdCBldmFsIGZ1bmN=aW9uIHBhY2tlZCI7YToyOntpOjA7czo1OiJKMzZIMyI7aToxO3M6MjQwOiIvPHNjcmlwdFtePl=qPltePF=qZXZhbFwoZnVuY3Rpb25cKHAsYSxjLGssZSxkXClcey4rP1xzKjxcL3NjcmlwdD5ccyo8c2NyaXB=W14-XSo-W148XSpcW1snIl1IaXN=YXRzXC5zdGFydFsnIlxzLF=rMVtccyxdKzQyMTQzOTNbXHMsXStbXjxdKjxcL3NjcmlwdD5ccyooPG5vc2NyaXB=PlxzKig8YVtePl=qPlxzKikqPGltZ1tePl=qW1w_fFwmXTQyMTQzOTNbXj5dKj5ccyooPFwvYT5ccyopKjxcL25vc2NyaXB=PikqL2kiO31zOjUwOiJwaHAgZXJyb3JfcmVwb3J=aW5nIHVubGluayBfX=ZJTEVfXyBjYWxsX3VzZXJfZnVuYyI7YToyOntpOjA7czo1OiJLOTNISCI7aToxO3M6MjY2OiIvPFw_W3BoXHNdKihcJFthLXpfMC=5XStccyo9W147XSs7XHMqfFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC9bXlxuXSpccyopKihcQD8oZXJyb3JfcmVwb3J=aW5nfGluaV9zZXR8c2V=X3RpbWVfbGltaXQpXHMqXChbXjtdKztccyopezN9LitcQD91bmxpbmtcKF9fRklMRV9fW147XSs7XHMqLisobXlzcWxpX2Nsb3NlfGNhbGxfdXNlcl9mdW5jKVtcc1woXStcJFteO1=rO1xzKigocmV=dXJufGVjaG8pW147XSs7W1xzXH1dKikqKCR8XD8-KS9pcyI7fXM6ODg6InBocCBlcnJvcl9yZXBvcnRpbmcgc3lzdGVtIHJlYWRkaXIgZmlsZV9wdXRfY29udGVudHMgbW92ZV91cGxvYWRlZF9maWxlIHVubGluayBmb3JtIGh=bWwiO2E6Mjp7aTowO3M6NToiSjk5NGUiO2k6MTtzOjU5MDoiLzxcP1twaFxzXSsoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyp8XC9cL1teXG5dKlxzKnxbXEBpZlxzXChdKihcJFthLXpfMC=5XStccyo9W147XSs7XHMqKSkqKChkZWZpbmVcKHxzZXNzaW9uX3N=YXJ=XCh8ZXJyb3JfcmVwb3J=aW5nXCh8aW5pX3NldFwofHNldF9=aW1lX2xpbWl=XCh8W3NnXWV=X21hZ2ljX3F1b3Rlc19bYS11XStcKClbXjtdK1s7XH1cc1=rKSsoKGVjaG9bXHNcKF=qKFsnIl=pLis_XDY7XHMqfFw_PlxzKjxcP1twaFxzXSp8KFwkW2Etel8wLTldK1xzKj1ccyopP=A_KGlmfGZ3cml=ZXxmY2xvc2V8Zm9wZW58ZmlsZSlbXHNcKF=rW147XSs7XHMqfFtcfVxzXSplbHNlW1xzXHtdKnxcJFtpMWxdKls9XHNdK1teO1=rO1xzKikrW1x9O1xzXSpcPz4oXHMqPFwvW2Etel=rPikrfHN5c3RlbVxzKlwoLis_c2V=Y29va2llXHMqXCguKz9yZWFkZGlyXHMqXCguKz9maWxlX3B1dF9jb25=ZW5=c1woLis_bW92ZV91cGxvYWRlZF9maWxlXHMqXCguKz8ocG9zaXhfZ2V=W3B3dWdyXStpZFxzKlwoLis_KXsyLH11bmxpbmtccypcKC4rPzxmb3JtLis_PFwvZm9ybT4pXHMqPFwvYm9keT5ccyo8XC9odG1sPlxzKiQvaXMiO31zOjMyOiJwaHAgZGlyIHJlY3Vyc2l2ZSBmdW5jdGlvbiAgbG9vcCI7YToyOntpOjA7czo1OiJKNVJCQyI7aToxO3M6Mzk=OiIvPFw_W3BoXHNdKyguKihkaXJ8cmFuZHxtZDV8aW5jbHVkZXxyZXF1aXJlfF9vbmNlfGdldGN3ZClccypcKFteO1=rO1xzKnxcfVtcfVxzXSp8ZWxzZVtce1xzXSp8KHdoaWxlfGlmfGZvcihlYWNoKT8pXHMqXCguK1tce1xzXSp8XC9cLy4qXHMrKSs_ZnVuY3Rpb24gKFthLXpfMC=5XSspXChbXlx7XStce1xzKiguK2RpclxzKlwoW147XSs7XHMqfFtcfVxzXSplbHNlW1x7XHNdKnwod2hpbGV8aWZ8Zm9yKGVhY2gpPylccypcKC4rW1x7XHNdKikrLipcNVxzKlwoKFwkW2Etel8wLTldKylbXjtdKztccyooKFx9W1x9XHNdKnxlbHNlW1x7XHNdKikqLiooY29weXxkaXJ8dW5saW5rfGVjaG98aGVhZGVyfHByaW5=fFwkW2Etel8wLTldK1xzKj=pXHMqW1woJyJdK1teO1=rO1xzKikrKCR8XD8-KS9pIjt9czo=MToicGhwIGVycm9yX3JlcG9ydGluZyBpZiBpc3NldCBSRVFVRVNUIG1haWwiO2E6Mjp7aTowO3M6NToiSkJISWQiO2k6MTtzOjQyNToiLzxcP1twaFxzXSooaWZbXHNcKFwhXSsoZW1wdHl8c3RybGVufGlzc2V=KVtcc1woXStcJF8oUkVRVUVTfEdFfFBPUylUW15cKV=rW1wpXHNce1=rW147XSs7W1xzXH1dKnxlcnJvcl9yZXBvcnRpbmdcKFteO1=rO1xzKikrLio_KGlmW1xzXChcIV=rKGVtcHR5fHN=cmxlbnxpc3NldClbXHNcKF=rXCRfKFJFUVVFU3xHRXxQT1MpVFteXCldK1tcKVxzXHtdKyhcJFswLTlfYS16XSspXHMqPVxzKihyYW5kXCh8XCRfKFJFUVVFU3xHRXxQT1MpVCkpLisoKFwkW2Etel8wLTldK1xzKj1ccyp8aWZbXHNcKF=rfGVsc2VbXlx7XSpbXHtcc1=rKSptYWlsW1xzXChdK1teO1=qXDdbXjtdK1tcKTtcc1x9XSopKygoKGlmW1woXHNdK3xlbHNlKVteXHtdKltce1xzXSspPygoaGVhZGVyfGVjaG98cHJpbnR8ZXhpdClbXjtdKls7XHNcfV=rKSspKigkfFw_PikvaXMiO31zOjMwOiJwaHAgb18wIHZhcmlhYmxlIGZ1bmN=aW9ucyBlbmQiO2E6Mjp7aTowO3M6NToiS=IyOTAiO2k6MTtzOjQwOToiLzxcP1twaFxzXSooKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC9bXlxuXSpccyp8ZXJyb3JfcmVwb3J=aW5nXChbXjtdKztccyopKigoKFteO1=qXCRbb18wXSt8LipmdW5jdGlvblxzKyhbb18wXSspKXwoZXhpdHxicmVha3x1bnNldHxoZWFkZXJ8cmV=dXJuKVteXCldKilbXjtdK1snIlwpO1x9XHNdKykrPygoW1wkXHsiJ1=rKFxceFthLWYwLTldezJ9fFtsaTFfXStbXHM9XStcNykrW1x9JyJcc1=qKShcW1teXF1dK1xdXHMqKSpcKFteO1=rWztcfVxzXSspKykrPy4qKFtcJFx7IiddKyhcXHhbYS1mMC=5XXsyfXxbbGkxX1=pK1tcfSciXHNdKihcW1teXF1dK1xdXHMqKSpcKFteO1=rO1xzKikrKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqfFwvXC9bXlxuXSpccyopKigkfFw_PikvaSI7fXM6NDA6InBocCBmdW5jdGlvbiBjdXJsIGZpbGVfcHV=X2NvbnRlbnRzIGNhbGwiO2E6Mjp7aTowO3M6NToiS=FKSlgiO2k6MTtzOjQzNjoiLzxcP1twaFxzXSsoKGluaV9zZXR8ZWNob3xcJFthLXpfMC=5XStccyo9KVteO1=rO1xzKikqZnVuY3Rpb25ccysoW2Etel8wLTldKylbXlx7XStbXHNce1=rKFwkW2Etel8wLTldK1xzKj1bXjtdKztbXH1cc1=qKSooKFwkW2Etel8wLTldK1xzKihcW1teXF1dK1xdK1xzKikqPVxzKik_Y3VybF8uKztbXH1cc1=qKSsoKChpZltcc1woXStbXjtdK3xlbHNlW1xzXHtdK1teO1=rfFwkW2Etel8wLTldK1xzKj1ccyopPyhyZXR1cm58ZmlsZV9wdXRfY29udGVudHNcKHxcJF8oU=VSVkVSfEdFVHxQT1NUfFJFUVVFU1QpfGN1cmxffGV4ZWNcKHxlY2hvfHByaW5=KVteO1=rO1tcfVxzXSopKyhcJFthLXpfMC=5XStccyooXFtbXlxdXStcXStccyopKj1ccyopP1wzXChbXjtdKztbXH1cc1=qKCguKmZvcGVufGZ3cml=ZXxmY2xvc2V8ZXZhbClcKC4rXHMqKSopKygkfFw_PikvaSI7fXM6NTc6InBocCBfQ=9PS=lFIGZpbGVfZ2V=X2NvbnRlbnRzX1ggZnVuY3Rpb24gY3VybCByZXR1cm4gRk9STSI7YToyOntpOjA7czo1OiJLM=lFRyI7aToxO3M6NDg2OiIvPFw_W3BoXHNdKygoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC98W1x7XHNdKykqKChpc3NldHxtZDV8aWZ8W1x9XHNdKmVsc2Vccypce1teXH1dK1x9K1xzKnxmaWxlX2V4aXN=c1tcc1woJyJdK1wuaHRhY2Nlc3NbJyJdW15cfV=rXH=rXHMqfFwkW2Etel8wLTldKylbXHNcKD1cIV=rKStcJChfUkVRVUVTVHxfUE9TVHxfR=VUfF9DT=9LSUV8XHtbXlx9XStcfSt8fFxbW15cXV=rXF=rKSsuKig7fFxzKlx7KShccyooZWNob3xleGl=KVteO1=qOykqW1x9XHNdKikrKFwkW2EtejAtOV=rKVs9XHNdKihmaWxlX2dldF9jb25=ZW5=c19bYS16XzAtOV=rKVteXH1dK1x9XHMqZnVuY3Rpb24gXDExW15ce1=rXHtccyooW147XSpjdXJsX1teO1=qO1xzKnxyZXR1cm5bXjtdKjtccyp8KFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSp8XH1ccyopKygkfFw_Pihccyo8Zm9ybVtePl=qKD5ccyo8aW5wdXRbXj5dKikrPlxzKjxcL2Zvcm=-KT8pL2kiO31zOjU3OiJwaHAgZXJyb3JfcmVwb3J=aW5nIGRlZmluZSBmdW5jdGlvbiBnZXRfcmVhbF9pcCByZXR1cm4gaXAiO2E6Mjp7aTowO3M6NToiSzRBMGgiO2k6MTtzOjI5NzoiLzxcP1twaFxzXSsoXC9cL1teXG5dKlxuXHMqfFwvXCpbXlwqXSooXCpbXlwqXC9dKikrXC9ccyp8XEA_KGlnbm9yZV91c2VyX2Fib3J=fGluaV9zZXR8c2V=X3RpbWVfbGltaXR8ZXJyb3JfcmVwb3J=aW5nKVwoLio_XCk7XHMqfGRlZmluZVwoW15cKV=rW1wpO1xzXSt8XCQrW2Etel8wLTldKyhccypcW1teXF1dKlxdKSpccyo9W147XSs7XHMqKSsuK2Z1bmN=aW9uIGdldF9yZWFsX2lwXCguK3JldHVybiBcJGlwWztcc1x9XSsoXC9cL1teXG5dKlxzKnxcL1wqW15cKl=qKFwqW15cKlwvXSopK1wvXHMqKSsoJHxcPz4pL2lzIjt9czoxMDE6InBocCBlcnJvcl9yZXBvcnRpbmcgYWRkX2ZpbHRlciBmdW5jdGlvbiBzY3JpcHQgem9uZWlkIGZpbGVfZ2V=X2NvbnRlbnRzX2N1cmwgZnVuY3Rpb24gaGlkZSBhZGRfYWN=aW9uIjthOjI6e2k6MDtzOjU6Iks3VEVUIjtpOjE7czo1OTE6Ii88XD9bcGhcc1=rKFwvXCooW14qXSpcKig_IVwvKSkqW14qXSpcKlwvXHMqKSsoKFwkW2Etel8wLTldKylccyo9W147XSs7XHMqfCh8aW5pX3NldHxlcnJvcl9yZXBvcnRpbmd8c2V=X3RpbWVfbGltaXQpXChbXlwpXSpcKTtccyopKyhhZGRfKGZpbHRlcnxhY3Rpb24pW1xzXChdK1snIl1bXixdK1ssXHNdKygoWyciXSkoLis_KVw5W1wpO1xzXStmdW5jdGlvblxzK1wxMFxzKlwoW15ce1=rXHt8ZnVuY3Rpb25ccypcKFteXHtdK1x7KVteXH1dK1tcfVwpO1xzXSspKyhcLypcJFthLXpfMC=5XStccyo9W1xzJyI7XSspKzxzY3JpcHQuK2Z1bmN=aW9uXHMrZmlsZV9nZXRfY29udGVudHNfW2Etel8wLTldK1teXHtdK1x7XHMqKFteO1=qY3VybF9bXjtdKjtccyp8cmV=dXJuW147XSo7XHMqfChcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKikqfFx9XHMqKSsoZnVuY3Rpb25ccysoaGlkZVthLXpfMC=5XSspXChbXlx7XStcey4rYWRkX2FjdGlvbltcc1woXStbJyJdW14sXStbLFxzXSsoWyciXSlcMTZcMTdbXCk7XHNdKyk_KGZ1bmN=aW9uW15ce1=rXHsuK3JldHVyblxzK1wkX1NFUlZFUlxbW147XStbXH=7XHNdKykqKCR8XD8-KS9pcyI7fXM6NDY6InBocCBpZiBjbGFzc19leGlzdHMgY2xhc3MgbmV3IGNhbHNzIGVsc2UgY2F=Y2giO2E6Mjp7aTowO3M6NToiSzVJR1oiO2k6MTtzOjI=NToiLzxcP1twaFxzXSooXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC9ccyp8XC9cL1teXG5dKlxzKnxpZltcc1woXCFdK2NsYXNzX2V4aXN=c1teXHtdK1x7XHMqKSpjbGFzc1xzKyhbYS16XzAtOV=rKVxzKlx7LisoXCRbYS16XzAtOV=rKVtcPVxzXStuZXdccytcM1teO1=qO1xzKihcJFthLXpfMC=5XSspW1w9XHNdK1w=W147XSo7XHMqKFteXG5dKihcM3xcNHxcNXxlbHNlfGNhdGNoKVteXG5dKltcc1x9XSspKygkfFw_PikvaXMiO31zOjYwOiJtZXRhIHByb3BlbGxlciBzY3JpcHQgZnVuY3Rpb24gZG9jdW1lbnQuY3JlYXRlRWxlbWVudCBzY3JpcHQiO2E6Mjp7aTowO3M6NToiSzVSTUoiO2k6MTtzOjI=NToiLyg8bWV=YShccysobmFtZXxjb25=ZW5=KT1bJyJdKHByb3BlbGxlcnxbMC=5YS1mXXszMn=pWyciXSl7Mn1bXj5dKj5ccyopPzwoc2NyaXB=KVtePl=qPltcc1woXSpmdW5jdGlvblxzKlwoW15cfV=rXH1bXCk7XHNdKlwoZG9jdW1lbnRcLmNyZWF=ZUVsZW1lbnRbXChcc1=rKFN=cmluZ1wuZnJvbUNoYXJDb2RlXCh8WyciXXNjcmlwdFsnIl=pLitcKVs7XHNdKihcL1wqXHMqWzAtOWEtel=rXHMqXCpcL1xzKnwkfDxcL1w1PikrL2kiO31zOjg2OiJ2YXIgZG9jdW1lbnQgY3JlYXRlRWxlbWVudCBzY3JpcHQgU3RyaW5nLmZyb21DaGFyQ29kZSBnZXRFbGVtZW5=c=J5VGFnTmFtZSBhcHBlbmRDaGlsZCI7YToyOntpOjA7czo1OiJLNjJEZiI7aToxO3M6MzE2OiIvKHZhclxzKyhbYS16XzAtOV=rKVxzKj1ccyooZG9jdW1lbnR8XGQrKVs7XHNdKykrKHZhclxzKyhbYS16XzAtOV=rKVxzKj1ccypcMlwuY3JlYXRlRWxlbWVudFtcKFxzJyJdK3xzY3JpcHRbXjtdKztccyp8KHZhclxzK1thLXpfMC=5XStccyo9XHMqKT9TdHJpbmdcLmZyb21DaGFyQ29kZVteO1=rO1xzKnxcNVwuW2Etel8wLTldK1xzKj1bXjtdKztccyopK2lmW1woXHNdK2RvY3VtZW5=XC5bXlx9XStbXH1cc1=rZWxzZVxzKlx7XHMqXDJcLmdldEVsZW1lbnRzQnlUYWdOYW1lW15cLl=rXC5hcHBlbmRDaGlsZFtcc1woXStcNVteXH1dK1x9W1x9XHNdKi9pIjt9czo1MToicGhwIGlmIGZ1bmN=aW9uX2V4aXN=cyBkZWZpbmUgRU9GIGZpbGVfcHV=X2NvbnRlbnRzIjthOjI6e2k6MDtzOjU6Iks2UjBKIjtpOjE7czoyNzM6Ii88XD9bcGhcc1=rXCRbYS16XzAtOV=rXHMqPVxzKl9fRklMRV9fO1xzKigoXCRbYS16XzAtOV=rKVxzKj1ccypmdW5jdGlvbl9leGlzdHNcKFteO1=rO1xzKikraWZbXHNcKF=rW15ce1=rXDJbXlx7XStce1xzKihkZWZpbmVbXCgnIlxzXSsoW2Etel8wLTldKylbIiddW147XSs7XHMqfFwvXC9bXlxuXSpcblxzKikrXCRbYS16XzAtOV=rXHMqPVxzKjw8PFsnIl=qKFthLXpfMC=5XSspWyciXHNdKy4rXDUuK2ZpbGVfcHV=X2NvbnRlbnRzXChbXjtdKztbXHNcfV=rKCR8XD8-KS9pcyI7fXM6Mzc6InBocCBjdXJsX2luaXQgX1JFUVVFU1QgY3VybF9leGVjIGV2YWwiO2E6Mjp7aTowO3M6NToiSzdBSTAiO2k6MTtzOjIxOToiLzxcP1twaFxzXSsoXC9cKihbXipdKlwqKD8hXC8pKSpbXipdKlwqXC98XC9cL1teXG5dKlxuXHMqKSooXCRbYS16XzAtOV=rKT9bXHM9XSpjdXJsX2luaXRcKFwkXyhSRVFVRVN8UE9TfEdFKVRbXjtdKztccyooKFwkW2Etel8wLTldKyk_W1xzPV=qY3VybF9bXjtdKztccyopKyhwcmludHxkaWV8ZWNob3xldmFsKVsnIlxzXChcP1w-XC5dK1w2WyciXHNcKTtcfV=rXHMqKCR8XD8-KS9pIjt9czozNjoicGhwIGRlZmluZSBjcmVhdGVfZnVuY3Rpb24gZWNobyBmb3JtIjthOjI6e2k6MDtzOjU6Iks3Q=VrIjtpOjE7czo=NTM6Ii88XD9bcGhcc1=rKChcL1wqKFteKl=qXCooPyFcLykpKlteKl=qXCpcL1xzKnxcL1wvW15cbl=qXHMqfGlmXHMqXChcJFthLXpfMC=5XStbXlx9XStcfVxzKikqKGRlZmluZVtkXCgnIlxzXSsoW2Etel8wLTldKylbIiddW147XStbO1x9XHNdK3xmdW5jdGlvblxzKyhbYS16XzAtOV=rKVwoLis_cmV=dXJuW147XSs7W1x9XHNdKykrKSsoXCRbYS16XzAtOV=rKVxzKj1ccypbXjtdKlwkKF9SRVFVRVNUfF9QT1NUfF9HRVR8X=NPT=tJRSlbXjtdKjtccyooXCRbYS16XzAtOV=rKVxzKj1ccypcNlwoW147XSpcNVteLF=rLFxzKlw3Ki4rPyhcJFthLXpfMC=5XSspXHMqPVxzKmNyZWF=ZV9mdW5jdGlvblwoW14sXSssXHMqXDkuKz9cMTBcKFteO1=qO1tcfVxzXSooZWNob3xleGl=KVtcc1woJyJdKzxmb3JtW14-XSooPlxzKjxpbnB1dFtePl=qKSs-XHMqPFwvZm9ybT5bJyI7XH1cc1=rKCR8XD8-KS9pcyI7fXM6NzM6InBocCBuZXcgd3BfaHR=cF9jdXJsIGZ1bmN=aW9uIHJtcyBhZGRfYWN=aW9uIGFkbWluX2Zvb3RlciBmdW5jdGlvbiBzY3JpcHQiO2E6Mjp7aTowO3M6NToiSzhPSmwiO2k6MTtzOjIxMzoiLzxcPy4rP25ldyBXcF9IdHRwX=N1cmxcKFwpOyguKz9cL1wqLio_XCpcL1xzKmZ1bmN=aW9uXHMrW2Etel8wLTldKnJtc19bYS16XzAtOV=rKXs1LH=uKz9cL1wqLio_XCpcL1xzKmFkZF9hY3Rpb25cKFsiJ11hZG1pbl9mb29=ZXJbJyJdLFxzKmZ1bmN=aW9uXChcKVxzKlx7XHMqXD8-XHMqPHNjcmlwdC4rPzxcL3NjcmlwdD5ccyo8XD9bcGhcc1x9XCk7XSooJHxcPz4pL2lzIjt9czo=NjoidHJ5IHBhc3N3b3JkIGZpbGVfZ2V=X2NvbnRlbnRzIGNhdGNoIEV4Y2VwdGlvbiI7YToyOntpOjA7czo1OiJLQTNFOSI7aToxO3M6MTYwOiIvKHRyeVxzKlx7XHMqKC4rcGFzc3dvcmQuK1tcclxuXStccyopKihmaWxlX2dldF9jb25=ZW5=c1xzKlwoW147XSo7W1xzXH1dKikrY2F=Y2hbXChcc1=qRXhjZXB=aW9uXHMqXCRbYS16XzAtOV=rW1wpXHNdKlx7XHMqKGlmW1xzXChdK1teXHtdK1x7XHMqfFx9KSkrW1xzXH1dKi9pIjt9czo4NToiZXJyb3JfcmVwb3J=aW5nIGdsb2JhbCB6ZWV=YSBpZiBpc3NldCBmdW5jdGlvbiBjdXJsXyBwcmVnX21hdGNoIGZ3cml=ZSBpbmNsdWRlIHVubGluayI7YToyOntpOjA7czo1OiJLQUJISiI7aToxO3M6NTQ5OiIvKFxAPyhpZ25vcmVfdXNlcl9hYm9ydHxzZXRfdGltZV9saW1pdHxpbmlfc2V=fGVycm9yX3JlcG9ydGluZylcKFteXCldKlwpW1xzXCldKjtccyp8XC9cL1teXG5dKlxuXHMqKSpnbG9iYWwgKFwkW2Etel8wLTldKylbXjtdKjtccyppZltcc1woXCFdKygoZW1wdHlcKHxzdHJsZW5cKHxpc3NldFwoKSooXCRbYS16XzAtOV=rKVtcKVxzXCZcPVwhXSppc3NldFtcKFxzXStcMylbXlx7XStceyg_PS4rP2Z1bmN=aW9uXHMrKFthLXpfMC=5XSspXChbXlx7XStce1xzKlteXG5dKihjdXJsX3xmaWxlX2dldF9jb25=ZW5=cykpKD89Lio_KFwkW2Etel8wLTldKylccyo9XHMqKFsnIl=pXDcpLis_KFwkW2Etel8wLTldKylccyo9XHMqXDlcKFteO1=rO1xzKnByZWdfbWF=Y2hcKFteXG5dK1wxMVssXHNdKyhcJFthLXpfMC=5XSspLis_ZndyaXRlXChbXlxuXStcMTJbXlxuXSs7XHMqZmNsb3NlXChbXlxuXSs7XHMqaW5jbHVkZShfb25jZSk_W1woXHNdKyhbXlwpXSspW1wpO1xzXSsoKHVubGlua1tcKFxzXStcMTR8XDNccyo9fFw2XHMqPSlbXjtdKjtbXH1cc1=rKXszLH=vaXMiO31zOjU5OiJwaHAgc2Vzc2lvbl9zdGFydCBoZWFkZXIgX1JFUVVFU1QgZnVuY3Rpb24gbWFpbCBjdXJsIHJldHVybiI7YToyOntpOjA7czo1OiJLQVRHSyI7aToxO3M6NTEyOiIvPFw_W3BoXHNdKig_PSguKlxzKikrP2Z1bmN=aW9uIChbYS16XzAtOV=rKVwoKSgoKGluaV9zZXR8c2Vzc2lvbl9zdGFydHxoZWFkZXJ8XDIpXChbXjtdKztccyp8KChbZWxzXHNdKmlmfGlzc2V=fGZvcmVhY2gpW1xzXChdKykrXCRfKFJFUVVFU1R8R=VUfFBPU1R8U=VSVkVSKS5bXlx7XStce1xzKik_KChcJFthLXpfMC=5XSspW1xzXC5dKj1bXjtdKls7XHNdKyhccypleGl=Oyk_fFwvXC8uK1xuKykqW1x9XHNdKikrKGZ1bmN=aW9uIFthLXpfMC=5XStcKFteXHtdK1x7XHMqKChcJFswLTlfYS16XSspW1xzXC5dKj1bXjtdKztccyp8KGlmW1xzXChdK3xlbHNlKStbXlx7XSpbXHtcc1=rfFx9XHMqKSooKChcJFthLXpfMC=5XSspXHMqPVxzKikqKG1haWx8Y3VybF9bYS16XSspXHMqXChbXjtdK1tcKTtcc1x9XSooKFwkW2Etel8wLTldKylbXHNcLl=qPS4rO1xzKnxyZXR1cm5bXjtdKjtccyp8KGlmW1xzXChdK3xlbHNlKStbXlx7XSpbXHtcc1=rfFx9XHMqfFwvXC8uKlxzKikqKSspKygkfFw_PikvaSI7fXM6MzU6InBocCBnb3RvIFZhcmlhYmxlIEZ1bmN=aW9uIF9SRVFVRVNUIjthOjI6e2k6MDtzOjU6IktCNktKIjtpOjE7czoxOTQ6Ii88XD9bcGhcc1=qKGdvdG8gW2Etel8wLTldKztccyp8W2Etel8wLTldKzpbXjtdKztbXHNcfV=qKStbYS16XzAtOV=rOlxzKnJlZ2lzdGVyX3NodXRkb3duX2Z1bmN=aW9uXCgoXCRbYS16XzAtOV=rXHMqXChbJ1xzLCJdKnxcJF8oUkVRVUVTfEdFfFBPUylUKXsyLH1cWyhbJyJdKShcXFt4MC=5XSspK1w=XF1bXClccztcfV=rKCR8XD8-KS9pIjt9czozMToicGhwIGlmIGZ1bmN=aW9uIG9fMCB2YXIgb18wIDY2KyI7YToyOntpOjA7czo1OiJMMUNNUCI7aToxO3M6MTM=OiIvPFw_W3BoXHNdKigoXCRbYS16X1wtMC=5XSspXHMqPVteO1=rO1xzKnxpZlxzKlwoW15ce1=rXHtccyopKmZ1bmN=aW9uXHMrKFtvXzBdKylccypcKCguKj9cJFtvXzBdezMsfT=pezY2LH1bXjtdK1snIlwpO1x9XHNdKygkfFw_PikvaSI7fX1zOjg6InRpbXRodW1iIjthOjE6e3M6Mjk6Im91dGRhdGVkIHZlcnNpb25zIG9mIFRpbVRodW1iIjthOjI6e2k6MDtzOjU6IkgxUUpFIjtpOjE7czo2MDoiLy4rVGltVGh1bWIuK2RlZmluZVxzKlwoW1xzJyJdK1ZFUlNJT=5bXHMnIl=rLFtccyciXSsxXC4uKy9zIjt9fXM6OToid2hpdGVsaXN=IjthOjI6e3M6MzoicGhwIjthOjI4OntpOjA7czo1OiJGQThIZCI7czozODoiNTg3M2NkMWNlYTYxMDgyMDJkMjEzNDdmMDFmMDRkY2ZPODE3MjgiO3M6NToiRDc1OXAiO3M6Mzk6IjAxMzYzNzI4Yzg=M2ZmOTNlOTZiNjk4M2NlMzhlYmE2TzE5NTYxOCI7czo1OiJENUE4MyI7czozODoiZDVmM2M5Y2FmZjE=ZDU3Yzg2MDhkNzhkYjAwOTRiZTBPNzM2NDMiO3M6NToiRDc1RDkiO3M6Mzg6IjU3YWY=OTgxOGJiYjk=OWRjMGFjNjM4NjczODY1NWJiTzI1ODUyIjtzOjU6IkQ3SkQ5IjtzOjM4OiJkNDk=MDQyNjBkNzlhNGNjMzc1NWMwMGY1NWRlMjA4OU8yNTY2MiI7czo1OiJEOFY4QSI7czozNzoiODY2MWZlMmJmYTU5OTVmNTQ2YTMzMDQ3ZTkwMzg1NmNPMTEzNiI7czo1OiJESUNGQyI7czozODoiODEyNWQ=MmM=YmU1NDNmODc=ZWE1ZjZhMWI1YmRlNTVPMjU4OTQiO3M6NToiRElDRkQiO3M6Mzk6ImVkZGI1ZmRhNzRkNDFkYmRhYzAxODE2NzUzNmQ4ZDUzTzIzMTMzOCI7czo1OiJESUNGRSI7czozODoiYzE1YTRkNWMzODM=NDRiOTVkMjg1NTlmODM=ODExMWRPMjI1ODgiO3M6NToiRTFSMnYiO3M6Mzg6ImUyMDgzOWM1NTlhNjZjN2NmNjI4NjUzYmEyNDg=ZWFlTzI2Mzk1IjtzOjU6IkUxUjJ4IjtzOjM4OiJmMzM4MmVjMTVjMDMwYmQzMmUyOTNmYWYzNDk3ZTI1M=8xMTIyNiI7czo1OiJFMjMwQyI7czozNzoiMjhhOTJmNDY=OThkMzJiOWE3NGM1ODQ3Zjc1YzkxMmVPNzM5OSI7czo1OiJFMjMwQyI7czozNzoiZjAwYWFmMDFmZjAyZDU3NTZjMjY3YmNmOTIwZTRjMjhPMTU=MCI7czo1OiJFMkFNZiI7czozODoiNTdjNjQ3ZDkzZmJkNDc4NjhiODdiOTIxYmVlNjNhZjhPMjYzNzYiO3M6NToiRTVFRG8iO3M6Mzk6IjhlMmFmNDg4NmRjODFhNWQ5Mjg5ODY1YmJiODEzZWQxTzE5NTYxNyI7czo1OiJFNUlOUCI7czozNzoiZjgwZDllZjRiN2JmZDllZjU=MmQ5MDg3YTFkYjJhZTlPMjAxMCI7czo1OiJFN=VNdiI7czozODoiNWY5MjdmM2E5NzMyMThkMDdlNDNlYTFjNjlmYzAzMzFPMjY3NzYiO3M6NToiRUE2NmwiO3M6Mzg6ImE1YjFhNzNlMGM=Mjk4OTUwNzUwYThiY2Q5NjI3ZWFmTzI2ODExIjtzOjU6IkVDQ=UwIjtzOjM3OiI2NDk=NGUyMjUxMTNiZTE4Mzk=ZDViYzAxZmIzYjUzN=83NTMwIjtzOjU6IkVDQ=UzIjtzOjM4OiI5N2U=MzhkNmM5YzY=YTIwMmI5MzA3ODZkMjc2MjA1Yk82MjQ1OCI7czo1OiJFQ=NFMyI7czozODoiNjdlYzFiMTUzY2MzZjNlMzZmYmVlNTkwMjlhOTNkNGFPMjU5MTQiO3M6NToiRUNKS=YiO3M6Mzc6IjgzNjY1N2RiYTVjYjIyOTAwMDAyNDQ3NzY2MGU5ZGRmTzgzNjkiO3M6NToiRjQzNzMiO3M6Mzg6ImY2MDA3OWZlYzBlNWQ=ZDY3ZTQ5YWRhMzM2ZGFhZjkyTzI2ODEwIjtzOjU6IkY=Mzc=IjtzOjM5OiIwM2IyMWZmYzljNzljZmI2MjQ3OTBiMGJhNDg=NjkxY=8zMjAzMzIiO3M6NToiRjVMTWIiO3M6Mzg6IjVlNjg1NWNmMDJjNGFhMGFjYzg3MDBmN2Y2MTNkZjAwTzYwMTYzIjtzOjU6IkY2RkplIjtzOjM3OiI3MWNkMTY=ODBhZGQyMGY1MTZmNDFjZjA=NTc1ZmIxOE8xODg=IjtzOjU6IkY5QTl=IjtzOjM5OiI4MzRkMjJmOGI2OGEyYzVjMDE4NjZhNDNlYjI=ZWZjNE8xOTU3MDIiO3M6NToiRkE4SGQiO31zOjI6ImpzIjthOjM=OntpOjA7czo1OiJGOUFBQiI7czozNzoiNTU=YmM3NmM3MDM1MTE4N2Y=Y2UwNWRkYzAxMmFhZWRPNDc3NiI7czo1OiJENjY3WCI7czozNzoiOWE5YzEyNTgxNGI5NzE1OTgyZDI=NmExZWU3ODA4NGZPNTM=NSI7czo1OiJENjY3WCI7czozODoiZTM2YTA4NjEyMzc1NjQxMjI5MzIzMWFlYWQxN2YyNGZPMzc2MjkiO3M6NToiRDc1QUgiO3M6Mzc6ImEzOGFjNTI2NjkyNDkzOGE=ZmY1NTE=MzY5YzZiNDBkTzQ2NzQiO3M6NToiRDc1QUoiO3M6Mzc6IjEwNDNhMWQ3ZDg=ZWU1NmY4ODMxYTYwY2RmYzVkYzI4TzcwNzciO3M6NToiRDc1RFMiO3M6Mzg6IjZlYzE1MGI3OTg3Y2FhZWY5OGI1OWM4N2I5ZjQ3MWJlTzExODQyIjtzOjU6IkUxUjJuIjtzOjM4OiI2MTQ3Y2NlZTdhZWY5ZGMwYzZlYjEwZDhkN2IzMTFmOU83MDg4MyI7czo1OiJFMVIydyI7czozNzoiYmEzMjkzOTcwZTEzYjAzYTJlYTkyZjViNmI1YmY1NDRPMzM3NyI7czo1OiJFMjJOcSI7czozNzoiNjNiMGFlZDliMDJmODc5YTZlMDI5NWZiZWE3ZGI4NTRPNDcwMiI7czo1OiJFMjMwRCI7czozNzoiZWY=MTg4Y2IwYjYwYTcyMDE3ZjRjOGExZTg=MGFiMWVPMjk1MCI7czo1OiJFMjQ5TCI7czozNzoiZmI4YmY2Nzg1ZTU1ZTllMzliZWE1NTI2MzVjNDJhNjRPMzI3MCI7czo1OiJFMjYwQyI7czozOToiYWNiMzMzMjliOWVmOGFhYmQ4YmQ3MzE=MjY4MDNlNGVPMjMyNDgyIjtzOjU6IkUyNjBFIjtzOjM4OiI2Y2ViNjQ3NTkyNTg4YmNmNDYzYmVmZDk=MDhlMjdhZE8xMjAyNSI7czo1OiJFMjYwSCI7czozNzoiNWEzMTgyNzdmZWRmNDkxYTAzMDFlMTc3YTllZjEwYjNPNDkwOCI7czo1OiJFMjYwSiI7czozODoiZGJjMzgwODQ3M2RlZjAwZmNlNDVmZTU2NGRjNzJkY2JPMTQ3MjAiO3M6NToiRTI2MEsiO3M6Mzc6ImI5ODlhNWJkODRmNmViY2JjMTM5M2VjMDAzZTZlOTkxTzQ5NjkiO3M6NToiRTI3RUciO3M6Mzg6IjAzMGI4Mzg5Mzc2YTQyZmYzZGExODZiZjY1ODA2MjE3TzE2NTMxIjtzOjU6IkUyOUQyIjtzOjM3OiJkZWYyNTdkYmIwYWI4MDVjNDk5NmZkOGFiYjFhNmI=OU82NzE3IjtzOjU6IkUySDVuIjtzOjM4OiI3NGQ5MDMwNDk2ODNlNWJiZWE5Y2NiNzU=NGE=MmJjYU8xNzQxMyI7czo1OiJFNUVEcSI7czozODoiNjAzYmQxNDI5OWY2MWE3MzI5YjJkMzUzYjJiNTZjMmZPMzc2ODkiO3M6NToiRTVFRHAiO3M6Mzc6IjA=MjZiMzk3NTRhYTZiYzc2NmQ4OWVhNGM=MWJiZDA2TzM=NTciO3M6NToiRTVFRHgiO3M6Mzg6ImVhZGM1ODMyNTEzZDU2NzA4ODRhOTc1YzZkZTEwZjAxTzE5NjE1IjtzOjU6IkU3VU1BIjtzOjM4OiIzOGRiY2M5MjU1MjkzNjg4MTJmNWMyZmJjYjM4OTYxNk8xNDk2NSI7czo1OiJFN1VNQiI7czozNzoiYTFjMTgyMjdlNmU5Mzc5OGM=OTNhZWQ5NmVlNmNjODRPMzI2NyI7czo1OiJFN1VNQiI7czozNzoiMDc4Mzg4YTY=MzFhYTViMDgzOGE4NzMyZDE4N2ZlMjlPODkxMyI7czo1OiJFOEFBcCI7czozNzoiZjNiMWIyODQyNDM2ZjdhMzExYjM5ZTRlZjRiNDdmNTlPNDM1MiI7czo1OiJFOEJCVSI7czozNzoiZDcwOTQwNjE5YTk5ZDU1NTExNjE2N2Q=ZmIzOWNhMTVPNDM5NyI7czo1OiJFOUNMeCI7czozODoiY2JkYmZjOTE4NGQyOGFjNTVmODNjMGIwZGY=MGZkNDNPNzk=MTQiO3M6NToiRTlHOGoiO3M6Mzg6ImVmM2FlOTAxNDUyNWNmODExODdhZmFhNjFiY2E3MzdlTzM3NjkxIjtzOjU6IkVDQ=UxIjtzOjM4OiJmNDQ4YzU5M2MyNDJkMTM=ZTk3MzNhODRjN2E=ZDI2Y=8xNTI=OCI7czo1OiJFQ=g5WCI7czozOToiNTFiYmEwZDUzMzNkZTRmZGEwOTU=ZjUxZWEzNTVhNTBPMTA2Nzk3IjtzOjU6IkYyQThVIjtzOjM4OiI2OTJmOGU4NjFiYWZhMzFmYmYxYjM4MDViNGIwZDdkM=8xNTAxNiI7czo1OiJGNDZJaCI7czozODoiZDg=MjMzZGQyOTM3MTdmMGEwN2I1NThiMmZlMzhmNTZPMTUwNTMiO3M6NToiRjlBQUIiO319czo4OiJ3cF9sb2dpbiI7YToxOntzOjM2OiJicnV=ZSBmb3JjZSBwb3NzaWJsZSBvbiB3cC1sb2dpbi5waHAiO2E6Mjp7aTowO3M6NToiRDRPQUIiO2k6MTtzOjE3NToiLy4qP3JlcXVpcmVcKFsgXHRdKmRpcm5hbWVcKF9fRklMRV9fXClbIFx=XSpcLlsgXHRdKlsiJ11cL3dwXC1sb2FkXC5waHBbIiddWyBcdF=qXCk7KD8hXC9cLzIwMTMtMDQtMjQgRE8gTk9UIFJFTU9WRSBUSElTIFJFUVVJUkVEIExJTkUpW15cbl=qKFtcclxuIFx=XSpcJF9TRVNTSU9OXFtbXjtdKzspKi9pcyI7fX1zOjM6InlvdSI7YTo=OntzOjE=OiJ1c2VyX2RvbmF=aW9ucyI7aTowO3M6MTk6InVzZXJfZG9uYXRpb25fdG9=YWwiO2k6MDtzOjIzOiJ1c2VyX2RvbmF=aW9uX2ZyZXNobmVzcyI7aTowO3M6MTA6InVzZXJfZW1haWwiO3M6MzI6IjE=NTM=MDdlYjYzNTI1OGI1MGU1MjljODBmMjJiMDE1Ijt9fQ3','yes'),(9545,'recovery_mode_email_last_sent','1614449392','yes'),(9771,'rewrite_rules','a:111:{s:19:\"sitemap_index\\.xml$\";s:19:\"index.php?sitemap=1\";s:31:\"([^/]+?)-sitemap([0-9]+)?\\.xml$\";s:51:\"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]\";s:24:\"([a-z]+)?-?sitemap\\.xsl$\";s:39:\"index.php?yoast-sitemap-xsl=$matches[1]\";s:11:\"^wp-json/?$\";s:22:\"index.php?rest_route=/\";s:14:\"^wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:21:\"^index.php/wp-json/?$\";s:22:\"index.php?rest_route=/\";s:24:\"^index.php/wp-json/(.*)?\";s:33:\"index.php?rest_route=/$matches[1]\";s:17:\"^wp-sitemap\\.xml$\";s:23:\"index.php?sitemap=index\";s:17:\"^wp-sitemap\\.xsl$\";s:36:\"index.php?sitemap-stylesheet=sitemap\";s:23:\"^wp-sitemap-index\\.xsl$\";s:34:\"index.php?sitemap-stylesheet=index\";s:48:\"^wp-sitemap-([a-z]+?)-([a-z\\d_-]+?)-(\\d+?)\\.xml$\";s:75:\"index.php?sitemap=$matches[1]&sitemap-subtype=$matches[2]&paged=$matches[3]\";s:34:\"^wp-sitemap-([a-z]+?)-(\\d+?)\\.xml$\";s:47:\"index.php?sitemap=$matches[1]&paged=$matches[2]\";s:47:\"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:42:\"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:52:\"index.php?category_name=$matches[1]&feed=$matches[2]\";s:23:\"category/(.+?)/embed/?$\";s:46:\"index.php?category_name=$matches[1]&embed=true\";s:35:\"category/(.+?)/page/?([0-9]{1,})/?$\";s:53:\"index.php?category_name=$matches[1]&paged=$matches[2]\";s:17:\"category/(.+?)/?$\";s:35:\"index.php?category_name=$matches[1]\";s:44:\"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:39:\"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?tag=$matches[1]&feed=$matches[2]\";s:20:\"tag/([^/]+)/embed/?$\";s:36:\"index.php?tag=$matches[1]&embed=true\";s:32:\"tag/([^/]+)/page/?([0-9]{1,})/?$\";s:43:\"index.php?tag=$matches[1]&paged=$matches[2]\";s:14:\"tag/([^/]+)/?$\";s:25:\"index.php?tag=$matches[1]\";s:45:\"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:40:\"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?post_format=$matches[1]&feed=$matches[2]\";s:21:\"type/([^/]+)/embed/?$\";s:44:\"index.php?post_format=$matches[1]&embed=true\";s:33:\"type/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?post_format=$matches[1]&paged=$matches[2]\";s:15:\"type/([^/]+)/?$\";s:33:\"index.php?post_format=$matches[1]\";s:35:\"block_lab/.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:45:\"block_lab/.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:65:\"block_lab/.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"block_lab/.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:60:\"block_lab/.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:41:\"block_lab/.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:24:\"block_lab/(.+?)/embed/?$\";s:42:\"index.php?block_lab=$matches[1]&embed=true\";s:28:\"block_lab/(.+?)/trackback/?$\";s:36:\"index.php?block_lab=$matches[1]&tb=1\";s:36:\"block_lab/(.+?)/page/?([0-9]{1,})/?$\";s:49:\"index.php?block_lab=$matches[1]&paged=$matches[2]\";s:43:\"block_lab/(.+?)/comment-page-([0-9]{1,})/?$\";s:49:\"index.php?block_lab=$matches[1]&cpage=$matches[2]\";s:32:\"block_lab/(.+?)(?:/([0-9]+))?/?$\";s:48:\"index.php?block_lab=$matches[1]&page=$matches[2]\";s:12:\"robots\\.txt$\";s:18:\"index.php?robots=1\";s:13:\"favicon\\.ico$\";s:19:\"index.php?favicon=1\";s:48:\".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$\";s:18:\"index.php?feed=old\";s:20:\".*wp-app\\.php(/.*)?$\";s:19:\"index.php?error=403\";s:18:\".*wp-register.php$\";s:23:\"index.php?register=true\";s:32:\"feed/(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:27:\"(feed|rdf|rss|rss2|atom)/?$\";s:27:\"index.php?&feed=$matches[1]\";s:8:\"embed/?$\";s:21:\"index.php?&embed=true\";s:20:\"page/?([0-9]{1,})/?$\";s:28:\"index.php?&paged=$matches[1]\";s:27:\"comment-page-([0-9]{1,})/?$\";s:38:\"index.php?&page_id=6&cpage=$matches[1]\";s:41:\"comments/feed/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:36:\"comments/(feed|rdf|rss|rss2|atom)/?$\";s:42:\"index.php?&feed=$matches[1]&withcomments=1\";s:17:\"comments/embed/?$\";s:21:\"index.php?&embed=true\";s:44:\"search/(.+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:39:\"search/(.+)/(feed|rdf|rss|rss2|atom)/?$\";s:40:\"index.php?s=$matches[1]&feed=$matches[2]\";s:20:\"search/(.+)/embed/?$\";s:34:\"index.php?s=$matches[1]&embed=true\";s:32:\"search/(.+)/page/?([0-9]{1,})/?$\";s:41:\"index.php?s=$matches[1]&paged=$matches[2]\";s:14:\"search/(.+)/?$\";s:23:\"index.php?s=$matches[1]\";s:47:\"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:42:\"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:50:\"index.php?author_name=$matches[1]&feed=$matches[2]\";s:23:\"author/([^/]+)/embed/?$\";s:44:\"index.php?author_name=$matches[1]&embed=true\";s:35:\"author/([^/]+)/page/?([0-9]{1,})/?$\";s:51:\"index.php?author_name=$matches[1]&paged=$matches[2]\";s:17:\"author/([^/]+)/?$\";s:33:\"index.php?author_name=$matches[1]\";s:69:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:80:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]\";s:45:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$\";s:74:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]\";s:39:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$\";s:63:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]\";s:56:\"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:51:\"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$\";s:64:\"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]\";s:32:\"([0-9]{4})/([0-9]{1,2})/embed/?$\";s:58:\"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true\";s:44:\"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]\";s:26:\"([0-9]{4})/([0-9]{1,2})/?$\";s:47:\"index.php?year=$matches[1]&monthnum=$matches[2]\";s:43:\"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:38:\"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$\";s:43:\"index.php?year=$matches[1]&feed=$matches[2]\";s:19:\"([0-9]{4})/embed/?$\";s:37:\"index.php?year=$matches[1]&embed=true\";s:31:\"([0-9]{4})/page/?([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&paged=$matches[2]\";s:13:\"([0-9]{4})/?$\";s:26:\"index.php?year=$matches[1]\";s:58:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:68:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:88:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:83:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:64:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:53:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/embed/?$\";s:91:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&embed=true\";s:57:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/trackback/?$\";s:85:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&tb=1\";s:77:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&feed=$matches[5]\";s:65:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/page/?([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&paged=$matches[5]\";s:72:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)/comment-page-([0-9]{1,})/?$\";s:98:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&cpage=$matches[5]\";s:61:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/([^/]+)(?:/([0-9]+))?/?$\";s:97:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&name=$matches[4]&page=$matches[5]\";s:47:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:57:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:77:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:72:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:53:\"[0-9]{4}/[0-9]{1,2}/[0-9]{1,2}/[^/]+/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:64:\"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:81:\"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&cpage=$matches[4]\";s:51:\"([0-9]{4})/([0-9]{1,2})/comment-page-([0-9]{1,})/?$\";s:65:\"index.php?year=$matches[1]&monthnum=$matches[2]&cpage=$matches[3]\";s:38:\"([0-9]{4})/comment-page-([0-9]{1,})/?$\";s:44:\"index.php?year=$matches[1]&cpage=$matches[2]\";s:27:\".?.+?/attachment/([^/]+)/?$\";s:32:\"index.php?attachment=$matches[1]\";s:37:\".?.+?/attachment/([^/]+)/trackback/?$\";s:37:\"index.php?attachment=$matches[1]&tb=1\";s:57:\".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$\";s:49:\"index.php?attachment=$matches[1]&feed=$matches[2]\";s:52:\".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$\";s:50:\"index.php?attachment=$matches[1]&cpage=$matches[2]\";s:33:\".?.+?/attachment/([^/]+)/embed/?$\";s:43:\"index.php?attachment=$matches[1]&embed=true\";s:16:\"(.?.+?)/embed/?$\";s:41:\"index.php?pagename=$matches[1]&embed=true\";s:20:\"(.?.+?)/trackback/?$\";s:35:\"index.php?pagename=$matches[1]&tb=1\";s:40:\"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:35:\"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$\";s:47:\"index.php?pagename=$matches[1]&feed=$matches[2]\";s:28:\"(.?.+?)/page/?([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&paged=$matches[2]\";s:35:\"(.?.+?)/comment-page-([0-9]{1,})/?$\";s:48:\"index.php?pagename=$matches[1]&cpage=$matches[2]\";s:24:\"(.?.+?)(?:/([0-9]+))?/?$\";s:47:\"index.php?pagename=$matches[1]&page=$matches[2]\";}','yes'),(9772,'GOTMLS_scan_log/91.126.97.162/1614447650.4185','a:2:{s:8:\"settings\";a:11:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:16:\"activate_plugins\";s:10:\"scan_level\";i:3;s:5:\"check\";a:4:{i:0;s:7:\"db_scan\";i:1;s:8:\"htaccess\";i:2;s:8:\"timthumb\";i:3;s:5:\"known\";}s:10:\"dont_check\";a:0:{}s:15:\"skip_quarantine\";i:0;}s:4:\"scan\";a:7:{s:3:\"dir\";s:28:\"/usr/home/ingivision.com/web\";s:5:\"start\";i:1614447650;s:4:\"type\";s:13:\"Complete Scan\";s:9:\"microtime\";d:457;s:7:\"percent\";i:-1;s:11:\"last_threat\";d:1614448107.039392;s:6:\"finish\";i:1614448107;}}','yes'),(9776,'GOTMLS_scan_log/91.126.97.162/1614449340.7759','a:2:{s:8:\"settings\";a:11:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:16:\"activate_plugins\";s:10:\"scan_level\";i:3;s:5:\"check\";a:5:{i:0;s:7:\"db_scan\";i:1;s:8:\"htaccess\";i:2;s:8:\"timthumb\";i:3;s:5:\"known\";i:4;s:7:\"wp_core\";}s:10:\"dont_check\";a:0:{}s:15:\"skip_quarantine\";i:0;}s:4:\"scan\";a:7:{s:3:\"dir\";s:28:\"/usr/home/ingivision.com/web\";s:5:\"start\";i:1614449340;s:4:\"type\";s:10:\"Quick Scan\";s:9:\"microtime\";d:21;s:7:\"percent\";i:100;s:11:\"last_threat\";d:1614449361.7671781;s:6:\"finish\";i:1614449361;}}','yes'),(9777,'GOTMLS_scan_log/91.126.97.162/1614449343.3244','a:2:{s:8:\"settings\";a:11:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:16:\"activate_plugins\";s:10:\"scan_level\";i:3;s:5:\"check\";a:5:{i:0;s:7:\"db_scan\";i:1;s:8:\"htaccess\";i:2;s:8:\"timthumb\";i:3;s:5:\"known\";i:4;s:7:\"wp_core\";}s:10:\"dont_check\";a:0:{}s:15:\"skip_quarantine\";i:0;}s:4:\"scan\";a:6:{s:3:\"dir\";s:28:\"/usr/home/ingivision.com/web\";s:5:\"start\";i:1614449343;s:4:\"type\";s:10:\"Quick Scan\";s:9:\"microtime\";d:29;s:7:\"percent\";d:58;s:11:\"last_threat\";d:1614449372.3992651;}}','yes'),(9778,'GOTMLS_scan_log/91.126.97.162/1614449361.8158','a:2:{s:8:\"settings\";a:11:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:16:\"activate_plugins\";s:10:\"scan_level\";i:3;s:5:\"check\";a:5:{i:0;s:7:\"db_scan\";i:1;s:8:\"htaccess\";i:2;s:8:\"timthumb\";i:3;s:5:\"known\";i:4;s:7:\"wp_core\";}s:10:\"dont_check\";a:0:{}s:15:\"skip_quarantine\";i:0;}s:4:\"scan\";a:6:{s:3:\"dir\";s:28:\"/usr/home/ingivision.com/web\";s:5:\"start\";i:1614449362;s:4:\"type\";s:10:\"Quick Scan\";s:9:\"microtime\";d:29;s:7:\"percent\";d:58;s:11:\"last_threat\";d:1614449391.5872059;}}','yes'),(9779,'GOTMLS_scan_log/91.126.97.162/1614449373.9219','a:2:{s:8:\"settings\";a:11:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:16:\"activate_plugins\";s:10:\"scan_level\";i:3;s:5:\"check\";a:5:{i:0;s:7:\"db_scan\";i:1;s:8:\"htaccess\";i:2;s:8:\"timthumb\";i:3;s:5:\"known\";i:4;s:7:\"wp_core\";}s:10:\"dont_check\";a:0:{}s:15:\"skip_quarantine\";i:0;}s:4:\"scan\";a:7:{s:3:\"dir\";s:28:\"/usr/home/ingivision.com/web\";s:5:\"start\";i:1614449374;s:4:\"type\";s:10:\"Quick Scan\";s:9:\"microtime\";d:19;s:7:\"percent\";i:100;s:11:\"last_threat\";d:1614449393.908323;s:6:\"finish\";i:1614449393;}}','yes'),(9780,'GOTMLS_scan_log/91.126.97.162/1614449524.0913','a:2:{s:8:\"settings\";a:11:{s:12:\"msg_position\";a:4:{i:0;s:4:\"80px\";i:1;s:4:\"40px\";i:2;s:5:\"400px\";i:3;s:5:\"600px\";}s:9:\"scan_what\";i:2;s:10:\"scan_depth\";i:-1;s:11:\"exclude_ext\";a:27:{i:0;s:3:\"png\";i:1;s:3:\"jpg\";i:2;s:4:\"jpeg\";i:3;s:3:\"gif\";i:4;s:3:\"bmp\";i:5;s:3:\"tif\";i:6;s:4:\"tiff\";i:7;s:3:\"psd\";i:8;s:3:\"svg\";i:9;s:3:\"doc\";i:10;s:4:\"docx\";i:11;s:3:\"ttf\";i:12;s:3:\"fla\";i:13;s:3:\"flv\";i:14;s:3:\"mov\";i:15;s:3:\"mp3\";i:16;s:3:\"pdf\";i:17;s:3:\"css\";i:18;s:3:\"pot\";i:19;s:2:\"po\";i:20;s:2:\"mo\";i:21;s:2:\"so\";i:22;s:3:\"exe\";i:23;s:3:\"zip\";i:24;s:2:\"7z\";i:25;s:2:\"gz\";i:26;s:3:\"rar\";}s:12:\"check_custom\";s:0:\"\";s:11:\"exclude_dir\";a:0:{}s:8:\"user_can\";s:16:\"activate_plugins\";s:10:\"scan_level\";i:3;s:5:\"check\";a:4:{i:0;s:7:\"db_scan\";i:1;s:8:\"htaccess\";i:2;s:8:\"timthumb\";i:3;s:5:\"known\";}s:10:\"dont_check\";a:0:{}s:15:\"skip_quarantine\";i:0;}s:4:\"scan\";a:7:{s:3:\"dir\";s:28:\"/usr/home/ingivision.com/web\";s:5:\"start\";i:1614449524;s:4:\"type\";s:13:\"Complete Scan\";s:9:\"microtime\";d:457;s:7:\"percent\";i:-1;s:11:\"last_threat\";d:1614449981.3687091;s:6:\"finish\";i:1614449981;}}','yes'),(9785,'_transient_dirsize_cache','a:742:{s:55:\"/usr/home/ingivision.com/web/wp-includes/block-patterns\";i:17482;s:59:\"/usr/home/ingivision.com/web/wp-includes/rest-api/endpoints\";i:478595;s:56:\"/usr/home/ingivision.com/web/wp-includes/rest-api/fields\";i:21950;s:56:\"/usr/home/ingivision.com/web/wp-includes/rest-api/search\";i:15130;s:49:\"/usr/home/ingivision.com/web/wp-includes/rest-api\";i:597587;s:53:\"/usr/home/ingivision.com/web/wp-includes/images/media\";i:2419;s:55:\"/usr/home/ingivision.com/web/wp-includes/images/crystal\";i:15541;s:55:\"/usr/home/ingivision.com/web/wp-includes/images/smilies\";i:10082;s:51:\"/usr/home/ingivision.com/web/wp-includes/images/wlw\";i:4413;s:47:\"/usr/home/ingivision.com/web/wp-includes/images\";i:103747;s:58:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/lib\";i:76084;s:79:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/namespaced/Core/Poly1305\";i:112;s:79:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/namespaced/Core/ChaCha20\";i:224;s:84:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/namespaced/Core/Curve25519/Ge\";i:602;s:81:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/namespaced/Core/Curve25519\";i:820;s:70:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/namespaced/Core\";i:2444;s:65:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/namespaced\";i:2698;s:74:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core32/Poly1305\";i:15980;s:74:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core32/ChaCha20\";i:6295;s:79:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core32/Curve25519/Ge\";i:8177;s:76:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core32/Curve25519\";i:122399;s:78:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core32/SecretStream\";i:3656;s:65:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core32\";i:437457;s:72:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core/Poly1305\";i:12912;s:72:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core/ChaCha20\";i:5152;s:77:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core/Curve25519/Ge\";i:7881;s:74:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core/Curve25519\";i:119831;s:76:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core/SecretStream\";i:3624;s:70:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core/Base64\";i:22135;s:63:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/Core\";i:388928;s:64:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src/PHP52\";i:4116;s:58:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat/src\";i:1128619;s:54:\"/usr/home/ingivision.com/web/wp-includes/sodium_compat\";i:1213152;s:55:\"/usr/home/ingivision.com/web/wp-includes/block-supports\";i:14899;s:59:\"/usr/home/ingivision.com/web/wp-includes/sitemaps/providers\";i:15133;s:49:\"/usr/home/ingivision.com/web/wp-includes/sitemaps\";i:45054;s:59:\"/usr/home/ingivision.com/web/wp-includes/Text/Diff/Renderer\";i:5535;s:57:\"/usr/home/ingivision.com/web/wp-includes/Text/Diff/Engine\";i:31662;s:50:\"/usr/home/ingivision.com/web/wp-includes/Text/Diff\";i:44010;s:45:\"/usr/home/ingivision.com/web/wp-includes/Text\";i:56925;s:46:\"/usr/home/ingivision.com/web/wp-includes/fonts\";i:289826;s:62:\"/usr/home/ingivision.com/web/wp-includes/css/dist/block-editor\";i:369605;s:59:\"/usr/home/ingivision.com/web/wp-includes/css/dist/edit-post\";i:179481;s:64:\"/usr/home/ingivision.com/web/wp-includes/css/dist/format-library\";i:9700;s:60:\"/usr/home/ingivision.com/web/wp-includes/css/dist/components\";i:491119;s:56:\"/usr/home/ingivision.com/web/wp-includes/css/dist/editor\";i:112923;s:65:\"/usr/home/ingivision.com/web/wp-includes/css/dist/block-directory\";i:18516;s:53:\"/usr/home/ingivision.com/web/wp-includes/css/dist/nux\";i:12720;s:70:\"/usr/home/ingivision.com/web/wp-includes/css/dist/list-reusable-blocks\";i:9088;s:63:\"/usr/home/ingivision.com/web/wp-includes/css/dist/block-library\";i:469973;s:49:\"/usr/home/ingivision.com/web/wp-includes/css/dist\";i:1673125;s:44:\"/usr/home/ingivision.com/web/wp-includes/css\";i:2309754;s:52:\"/usr/home/ingivision.com/web/wp-includes/blocks/code\";i:204;s:55:\"/usr/home/ingivision.com/web/wp-includes/blocks/missing\";i:387;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/group\";i:380;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/block\";i:209;s:57:\"/usr/home/ingivision.com/web/wp-includes/blocks/tag-cloud\";i:279;s:54:\"/usr/home/ingivision.com/web/wp-includes/blocks/column\";i:327;s:55:\"/usr/home/ingivision.com/web/wp-includes/blocks/subhead\";i:266;s:52:\"/usr/home/ingivision.com/web/wp-includes/blocks/html\";i:233;s:57:\"/usr/home/ingivision.com/web/wp-includes/blocks/paragraph\";i:618;s:56:\"/usr/home/ingivision.com/web/wp-includes/blocks/archives\";i:284;s:58:\"/usr/home/ingivision.com/web/wp-includes/blocks/media-text\";i:1582;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/video\";i:1340;s:52:\"/usr/home/ingivision.com/web/wp-includes/blocks/list\";i:574;s:57:\"/usr/home/ingivision.com/web/wp-includes/blocks/shortcode\";i:235;s:56:\"/usr/home/ingivision.com/web/wp-includes/blocks/nextpage\";i:191;s:54:\"/usr/home/ingivision.com/web/wp-includes/blocks/button\";i:1041;s:55:\"/usr/home/ingivision.com/web/wp-includes/blocks/heading\";i:747;s:54:\"/usr/home/ingivision.com/web/wp-includes/blocks/spacer\";i:182;s:55:\"/usr/home/ingivision.com/web/wp-includes/blocks/buttons\";i:144;s:63:\"/usr/home/ingivision.com/web/wp-includes/blocks/latest-comments\";i:450;s:56:\"/usr/home/ingivision.com/web/wp-includes/blocks/calendar\";i:203;s:51:\"/usr/home/ingivision.com/web/wp-includes/blocks/rss\";i:647;s:60:\"/usr/home/ingivision.com/web/wp-includes/blocks/social-links\";i:310;s:59:\"/usr/home/ingivision.com/web/wp-includes/blocks/social-link\";i:342;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/quote\";i:389;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/image\";i:1270;s:55:\"/usr/home/ingivision.com/web/wp-includes/blocks/gallery\";i:1454;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/embed\";i:639;s:55:\"/usr/home/ingivision.com/web/wp-includes/blocks/classic\";i:238;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/audio\";i:722;s:60:\"/usr/home/ingivision.com/web/wp-includes/blocks/preformatted\";i:270;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/table\";i:2381;s:52:\"/usr/home/ingivision.com/web/wp-includes/blocks/file\";i:748;s:60:\"/usr/home/ingivision.com/web/wp-includes/blocks/latest-posts\";i:1430;s:55:\"/usr/home/ingivision.com/web/wp-includes/blocks/columns\";i:287;s:52:\"/usr/home/ingivision.com/web/wp-includes/blocks/more\";i:298;s:53:\"/usr/home/ingivision.com/web/wp-includes/blocks/verse\";i:305;s:58:\"/usr/home/ingivision.com/web/wp-includes/blocks/categories\";i:354;s:57:\"/usr/home/ingivision.com/web/wp-includes/blocks/pullquote\";i:579;s:54:\"/usr/home/ingivision.com/web/wp-includes/blocks/search\";i:599;s:57:\"/usr/home/ingivision.com/web/wp-includes/blocks/separator\";i:246;s:60:\"/usr/home/ingivision.com/web/wp-includes/blocks/text-columns\";i:455;s:47:\"/usr/home/ingivision.com/web/wp-includes/blocks\";i:110820;s:44:\"/usr/home/ingivision.com/web/wp-includes/ID3\";i:1134311;s:50:\"/usr/home/ingivision.com/web/wp-includes/customize\";i:169905;s:44:\"/usr/home/ingivision.com/web/wp-includes/IXR\";i:33913;s:66:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/XML/Declaration\";i:7098;s:54:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/XML\";i:7098;s:54:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/Net\";i:7493;s:63:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/Content/Type\";i:8015;s:58:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/Content\";i:8015;s:56:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/Cache\";i:39593;s:55:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/HTTP\";i:11515;s:62:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/Decode/HTML\";i:17241;s:57:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/Decode\";i:17241;s:56:\"/usr/home/ingivision.com/web/wp-includes/SimplePie/Parse\";i:20551;s:50:\"/usr/home/ingivision.com/web/wp-includes/SimplePie\";i:455756;s:45:\"/usr/home/ingivision.com/web/wp-includes/pomo\";i:52025;s:47:\"/usr/home/ingivision.com/web/wp-includes/assets\";i:9245;s:59:\"/usr/home/ingivision.com/web/wp-includes/Requests/Transport\";i:27761;s:54:\"/usr/home/ingivision.com/web/wp-includes/Requests/Auth\";i:1941;s:69:\"/usr/home/ingivision.com/web/wp-includes/Requests/Exception/Transport\";i:918;s:64:\"/usr/home/ingivision.com/web/wp-includes/Requests/Exception/HTTP\";i:14334;s:59:\"/usr/home/ingivision.com/web/wp-includes/Requests/Exception\";i:16745;s:56:\"/usr/home/ingivision.com/web/wp-includes/Requests/Cookie\";i:3818;s:58:\"/usr/home/ingivision.com/web/wp-includes/Requests/Response\";i:2125;s:57:\"/usr/home/ingivision.com/web/wp-includes/Requests/Utility\";i:3393;s:55:\"/usr/home/ingivision.com/web/wp-includes/Requests/Proxy\";i:3471;s:49:\"/usr/home/ingivision.com/web/wp-includes/Requests\";i:136596;s:48:\"/usr/home/ingivision.com/web/wp-includes/widgets\";i:148347;s:53:\"/usr/home/ingivision.com/web/wp-includes/certificates\";i:234459;s:54:\"/usr/home/ingivision.com/web/wp-includes/random_compat\";i:40843;s:57:\"/usr/home/ingivision.com/web/wp-includes/js/imgareaselect\";i:48976;s:49:\"/usr/home/ingivision.com/web/wp-includes/js/jcrop\";i:18340;s:55:\"/usr/home/ingivision.com/web/wp-includes/js/dist/vendor\";i:2530995;s:48:\"/usr/home/ingivision.com/web/wp-includes/js/dist\";i:13731161;s:53:\"/usr/home/ingivision.com/web/wp-includes/js/jquery/ui\";i:793487;s:50:\"/usr/home/ingivision.com/web/wp-includes/js/jquery\";i:1307955;s:54:\"/usr/home/ingivision.com/web/wp-includes/js/codemirror\";i:1287141;s:48:\"/usr/home/ingivision.com/web/wp-includes/js/crop\";i:20004;s:66:\"/usr/home/ingivision.com/web/wp-includes/js/mediaelement/renderers\";i:18880;s:56:\"/usr/home/ingivision.com/web/wp-includes/js/mediaelement\";i:719405;s:52:\"/usr/home/ingivision.com/web/wp-includes/js/thickbox\";i:31154;s:57:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/utils\";i:18822;s:57:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/langs\";i:15529;s:65:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/themes/inlite\";i:452642;s:65:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/themes/modern\";i:446221;s:58:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/themes\";i:898863;s:65:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/paste\";i:113193;s:66:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wpview\";i:8994;s:74:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/directionality\";i:2749;s:62:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/hr\";i:1347;s:69:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wpgallery\";i:4806;s:73:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wptextpattern\";i:11927;s:67:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/charmap\";i:31811;s:72:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wpautoresize\";i:8332;s:65:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/media\";i:57914;s:69:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wordpress\";i:50610;s:71:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wpeditimage\";i:37720;s:72:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/compat3x/css\";i:8179;s:68:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/compat3x\";i:21758;s:69:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/textcolor\";i:16237;s:70:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/fullscreen\";i:7779;s:64:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/link\";i:32949;s:66:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wplink\";i:26476;s:71:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/colorpicker\";i:4910;s:65:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/image\";i:55874;s:65:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/lists\";i:97383;s:69:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wpdialogs\";i:3761;s:68:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/tabfocus\";i:5336;s:67:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins/wpemoji\";i:5099;s:59:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/plugins\";i:606965;s:74:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/skins/wordpress/images\";i:14207;s:67:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/skins/wordpress\";i:22831;s:73:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/skins/lightgray/fonts\";i:155760;s:71:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/skins/lightgray/img\";i:2856;s:67:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/skins/lightgray\";i:210254;s:57:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce/skins\";i:233085;s:51:\"/usr/home/ingivision.com/web/wp-includes/js/tinymce\";i:2853659;s:52:\"/usr/home/ingivision.com/web/wp-includes/js/plupload\";i:487979;s:53:\"/usr/home/ingivision.com/web/wp-includes/js/swfupload\";i:8715;s:43:\"/usr/home/ingivision.com/web/wp-includes/js\";i:22890215;s:53:\"/usr/home/ingivision.com/web/wp-includes/theme-compat\";i:15414;s:50:\"/usr/home/ingivision.com/web/wp-includes/PHPMailer\";i:215008;s:40:\"/usr/home/ingivision.com/web/wp-includes\";i:36345760;s:61:\"/usr/home/ingivision.com/web/wp-content/cache/autoptimize/css\";i:189;s:60:\"/usr/home/ingivision.com/web/wp-content/cache/autoptimize/js\";i:7890015;s:57:\"/usr/home/ingivision.com/web/wp-content/cache/autoptimize\";i:7891080;s:45:\"/usr/home/ingivision.com/web/wp-content/cache\";i:7891080;s:64:\"/usr/home/ingivision.com/web/wp-content/webp-express/webp-images\";i:0;s:59:\"/usr/home/ingivision.com/web/wp-content/webp-express/config\";i:130;s:52:\"/usr/home/ingivision.com/web/wp-content/webp-express\";i:130;s:47:\"/usr/home/ingivision.com/web/wp-content/upgrade\";i:0;s:65:\"/usr/home/ingivision.com/web/wp-content/maintenance/assets/images\";i:2548125;s:64:\"/usr/home/ingivision.com/web/wp-content/maintenance/assets/fonts\";i:319200;s:58:\"/usr/home/ingivision.com/web/wp-content/maintenance/assets\";i:2871490;s:51:\"/usr/home/ingivision.com/web/wp-content/maintenance\";i:2874106;s:56:\"/usr/home/ingivision.com/web/wp-content/languages/themes\";i:139325;s:57:\"/usr/home/ingivision.com/web/wp-content/languages/plugins\";i:1469760;s:49:\"/usr/home/ingivision.com/web/wp-content/languages\";i:4033500;s:39:\"/usr/home/ingivision.com/web/wp-content\";i:14803388;s:44:\"/usr/home/ingivision.com/web/wp-admin/images\";i:676556;s:55:\"/usr/home/ingivision.com/web/wp-admin/css/colors/coffee\";i:70750;s:55:\"/usr/home/ingivision.com/web/wp-admin/css/colors/modern\";i:73354;s:57:\"/usr/home/ingivision.com/web/wp-admin/css/colors/midnight\";i:73240;s:56:\"/usr/home/ingivision.com/web/wp-admin/css/colors/sunrise\";i:73300;s:54:\"/usr/home/ingivision.com/web/wp-admin/css/colors/ocean\";i:70772;s:54:\"/usr/home/ingivision.com/web/wp-admin/css/colors/light\";i:76431;s:53:\"/usr/home/ingivision.com/web/wp-admin/css/colors/blue\";i:73287;s:58:\"/usr/home/ingivision.com/web/wp-admin/css/colors/ectoplasm\";i:73281;s:48:\"/usr/home/ingivision.com/web/wp-admin/css/colors\";i:607005;s:41:\"/usr/home/ingivision.com/web/wp-admin/css\";i:2403482;s:46:\"/usr/home/ingivision.com/web/wp-admin/includes\";i:2833881;s:45:\"/usr/home/ingivision.com/web/wp-admin/network\";i:123593;s:42:\"/usr/home/ingivision.com/web/wp-admin/user\";i:3418;s:48:\"/usr/home/ingivision.com/web/wp-admin/js/widgets\";i:139161;s:40:\"/usr/home/ingivision.com/web/wp-admin/js\";i:1876280;s:43:\"/usr/home/ingivision.com/web/wp-admin/maint\";i:7241;s:37:\"/usr/home/ingivision.com/web/wp-admin\";i:8799966;s:28:\"/usr/home/ingivision.com/web\";i:60123208;s:70:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/classes\";i:78406;s:76:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/images\";i:2128437;s:73:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/css\";i:318076;s:72:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/js\";i:19239;s:88:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/06-components\";i:36419;s:83:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/02-tools\";i:6345;s:87:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/07-utilities\";i:8456;s:85:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/03-generic\";i:15865;s:86:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/04-elements\";i:12154;s:86:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/01-settings\";i:11553;s:95:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/navigation\";i:3141;s:89:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/code\";i:620;s:94:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/utilities\";i:7640;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/group\";i:3040;s:89:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/html\";i:223;s:91:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/legacy\";i:1192;s:95:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/tag-clould\";i:201;s:94:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/paragraph\";i:487;s:97:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/social-icons\";i:542;s:95:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/media-text\";i:1389;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/video\";i:324;s:89:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list\";i:989;s:91:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/button\";i:5786;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/cover\";i:4088;s:92:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/heading\";i:2972;s:91:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/spacer\";i:227;s:100:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-comments\";i:815;s:88:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/rss\";i:5502;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/quote\";i:5726;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/image\";i:1935;s:92:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/gallery\";i:801;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/audio\";i:113;s:97:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/preformatted\";i:189;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/table\";i:2937;s:89:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/file\";i:883;s:97:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/latest-posts\";i:8365;s:92:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/columns\";i:3506;s:90:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/verse\";i:127;s:94:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/pullquote\";i:4215;s:91:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/search\";i:9248;s:94:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks/separator\";i:2204;s:84:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass/05-blocks\";i:81892;s:74:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets/sass\";i:181052;s:69:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/assets\";i:2646804;s:66:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/inc\";i:62640;s:84:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/template-parts/header\";i:4248;s:85:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/template-parts/excerpt\";i:4682;s:84:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/template-parts/footer\";i:307;s:82:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/template-parts/post\";i:1121;s:85:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/template-parts/content\";i:6404;s:77:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone/template-parts\";i:16762;s:62:\"/usr/home/ingivision.com/web/wp-content/themes/twentytwentyone\";i:3594999;s:79:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/rev-slider/fonts/revicons\";i:45172;s:70:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/rev-slider/fonts\";i:45172;s:68:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/rev-slider/css\";i:210927;s:71:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/rev-slider/assets\";i:6466;s:78:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/rev-slider/js/extensions\";i:141832;s:67:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/rev-slider/js\";i:301277;s:64:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/rev-slider\";i:563842;s:59:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/fonts\";i:5376375;s:71:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/stylesheets/fonts\";i:267877;s:72:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/stylesheets/colors\";i:6374;s:65:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/stylesheets\";i:1117710;s:62:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/includes\";i:124616;s:67:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/facybox\";i:6231;s:64:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/page\";i:113432;s:71:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/home/_notes\";i:430;s:64:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/home\";i:2637462;s:71:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/blog/_notes\";i:177;s:64:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/blog\";i:990977;s:67:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/project\";i:72448;s:69:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/productos\";i:1482711;s:67:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/favicon\";i:307;s:64:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/team\";i:17272;s:68:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/services\";i:1029758;s:66:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/career\";i:977391;s:67:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image/contact\";i:22493;s:59:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/image\";i:7923538;s:64:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/javascript\";i:1913352;s:61:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi/contact\";i:2609;s:53:\"/usr/home/ingivision.com/web/wp-content/themes/ingivi\";i:17211732;s:46:\"/usr/home/ingivision.com/web/wp-content/themes\";i:20806759;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/css/src\";i:15254;s:61:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/css\";i:61850;s:71:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/assets/images\";i:1004;s:64:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/assets\";i:54970;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/php/post-types\";i:44698;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/php/blocks/controls\";i:50609;s:68:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/php/blocks\";i:78701;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/php/views\";i:5027;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/php/admin/migration\";i:38460;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/php/admin\";i:72377;s:61:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/php\";i:236854;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/language\";i:0;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/js/migration/components/test\";i:482;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/js/migration/components/steps/test\";i:4943;s:87:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/js/migration/components/steps\";i:31265;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/js/migration/components\";i:41561;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/js/migration\";i:41929;s:60:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab/js\";i:213449;s:57:\"/usr/home/ingivision.com/web/wp-content/plugins/block-lab\";i:603560;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/static\";i:12999;s:98:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/critcss-inc/css/ao-tablesorter\";i:1207;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/critcss-inc/css\";i:5175;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/critcss-inc/js\";i:20780;s:79:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/critcss-inc\";i:95565;s:112:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/external/php/persist-admin-notices-dismissal\";i:9505;s:103:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/external/php/yui-php-cssmin-bundled\";i:43065;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/external/php\";i:77897;s:79:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/external/js\";i:21500;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes/external\";i:109172;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/classes\";i:707463;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize/config\";i:5044;s:59:\"/usr/home/ingivision.com/web/wp-content/plugins/autoptimize\";i:775716;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view/images\";i:1299;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view/scripts/themes/wordpress\";i:27659;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view/scripts/themes\";i:27659;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view/scripts\";i:248273;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view/styles/images\";i:58071;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view/styles\";i:69822;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view/languages\";i:285237;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/cms-tree-page-view\";i:847203;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/wod2\";i:109;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/docs\";i:8080;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/assets\";i:212826;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/test\";i:538436;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/classes\";i:444412;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/migrate\";i:46873;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/dismissable-global-messages/0.19.0\";i:1496;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/dismissable-global-messages\";i:1496;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/dismissable-messages/0.15.0\";i:1443;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/dismissable-messages/0.15.1\";i:399;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/dismissable-messages/0.16.0\";i:922;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/dismissable-messages/0.14.0\";i:4260;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/dismissable-messages\";i:7024;s:79:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/images\";i:757;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/css/images\";i:767;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/css\";i:14951;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/js/0.19.0\";i:98957;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/js\";i:98957;s:117:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options/conversion-options/converter-options\";i:14165;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options/conversion-options\";i:38085;s:94:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options/serve-options\";i:2458;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options/alter-html\";i:16067;s:98:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options/redirection-rules\";i:11284;s:100:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options/web-service-options\";i:3778;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options/general\";i:18775;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options/options\";i:94661;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib/options\";i:279608;s:64:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/lib\";i:782812;s:68:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/.github\";i:32;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/web-service\";i:1295;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/js/0.16.0\";i:490;s:63:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/js\";i:12297;s:64:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/wod\";i:986;s:111:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/composer/installers/src/Composer/Installers\";i:72121;s:100:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/composer/installers/src/Composer\";i:72121;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/composer/installers/src\";i:72589;s:87:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/composer/installers\";i:76090;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/composer\";i:172944;s:115:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/image-mime-type-guesser/src/Detectors\";i:9847;s:105:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/image-mime-type-guesser/src\";i:17921;s:101:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/image-mime-type-guesser\";i:28055;s:115:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v1.3/webp-on-demand\";i:18766;s:111:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v1.3/converting\";i:59938;s:108:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v1.3/serving\";i:8248;s:100:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v1.3\";i:86952;s:115:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v2.0/webp-on-demand\";i:20393;s:122:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v2.0/converting/converters\";i:9592;s:111:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v2.0/converting\";i:480627;s:108:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v2.0/serving\";i:13479;s:100:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs/v2.0\";i:522915;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/docs\";i:611713;s:98:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/.github\";i:32;s:124:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Converters/BaseTraits\";i:25785;s:122:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Converters/Binaries\";i:12365808;s:129:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Converters/ConverterTraits\";i:9808;s:113:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Converters\";i:12532936;s:143:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/InvalidInput\";i:879;s:154:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/ConverterNotOperational\";i:685;s:149:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed/FileSystemProblems\";i:696;s:130:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Exceptions/ConversionFailed\";i:3283;s:113:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Exceptions\";i:4239;s:110:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert/Helpers\";i:8164;s:102:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Convert\";i:12549568;s:118:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Exceptions/InvalidInput\";i:497;s:105:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Exceptions\";i:2177;s:111:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Serve/Exceptions\";i:202;s:100:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Serve\";i:23577;s:102:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Helpers\";i:22249;s:102:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Loggers\";i:4810;s:113:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Options/Exceptions\";i:625;s:102:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src/Options\";i:17389;s:94:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert/src\";i:12623107;s:90:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert\";i:13247091;s:122:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/dom-util-for-webp/src-vendor/simple_html_dom\";i:92852;s:106:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/dom-util-for-webp/src-vendor\";i:92852;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/dom-util-for-webp/src\";i:16720;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/dom-util-for-webp\";i:120919;s:118:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/tests/Testers\";i:52110;s:110:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/tests\";i:62870;s:109:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/docs\";i:17266;s:112:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/.github\";i:32;s:124:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/src/Testers/Helpers\";i:5501;s:116:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/src/Testers\";i:55327;s:108:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester/src\";i:76869;s:104:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/htaccess-capability-tester\";i:219651;s:108:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert-cloud-service/src\";i:11330;s:104:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk/webp-convert-cloud-service\";i:17951;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/rosell-dk\";i:13633667;s:93:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/onnov/detect-encoding/src\";i:8663;s:93:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/onnov/detect-encoding/bin\";i:463;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/onnov/detect-encoding\";i:18279;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/onnov\";i:18279;s:71:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor/bin\";i:0;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express/vendor\";i:13825068;s:60:\"/usr/home/ingivision.com/web/wp-content/plugins/webp-express\";i:15621744;s:61:\"/usr/home/ingivision.com/web/wp-content/plugins/akismet/views\";i:30415;s:64:\"/usr/home/ingivision.com/web/wp-content/plugins/akismet/_inc/img\";i:5052;s:60:\"/usr/home/ingivision.com/web/wp-content/plugins/akismet/_inc\";i:29919;s:55:\"/usr/home/ingivision.com/web/wp-content/plugins/akismet\";i:238756;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/modules/recaptcha\";i:16713;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/modules/sendinblue\";i:19809;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/modules\";i:170532;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes/block-editor\";i:7134;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes/css\";i:2782;s:109:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness/images\";i:32598;s:102:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes/smoothness\";i:118302;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes/js/jquery-ui/themes\";i:118302;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes/js/jquery-ui\";i:118302;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes/js\";i:129891;s:71:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/includes\";i:303863;s:69:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/assets\";i:31340;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/admin/css\";i:9719;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/admin/includes\";i:32417;s:71:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/admin/js\";i:13993;s:68:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/admin\";i:82789;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7/languages\";i:128;s:62:\"/usr/home/ingivision.com/web/wp-content/plugins/contact-form-7\";i:618885;s:64:\"/usr/home/ingivision.com/web/wp-content/plugins/gotmls/safe-load\";i:14904;s:61:\"/usr/home/ingivision.com/web/wp-content/plugins/gotmls/images\";i:122263;s:64:\"/usr/home/ingivision.com/web/wp-content/plugins/gotmls/languages\";i:227861;s:54:\"/usr/home/ingivision.com/web/wp-content/plugins/gotmls\";i:523640;s:87:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/walkers\";i:3464;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/forms\";i:71968;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/legacy\";i:1701;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/admin/views\";i:29031;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/admin/tools\";i:16178;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/admin\";i:105204;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/fields\";i:247186;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/api\";i:124480;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/locations\";i:46210;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes/ajax\";i:21446;s:79:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/includes\";i:878652;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/images\";i:16909;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/css\";i:84743;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/inc/select2/3\";i:237201;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/inc/select2/4\";i:478235;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/inc/select2\";i:715436;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/inc/timepicker\";i:123600;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/inc/datepicker/images\";i:11397;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/inc/datepicker\";i:61315;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/inc\";i:900351;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets/js\";i:515588;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/assets\";i:1517591;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields/lang\";i:4993109;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/advanced-custom-fields\";i:7432249;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/images\";i:5548;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/actions\";i:5036;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/modules\";i:17077;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/matches\";i:21000;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/models/redirect\";i:41333;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/models/url\";i:22707;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/models/log\";i:18095;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/models\";i:151976;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/database/schema\";i:22599;s:68:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/database\";i:38862;s:71:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/locale/json\";i:1104153;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/locale\";i:4053561;s:63:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/api\";i:58261;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection/fileio\";i:15542;s:59:\"/usr/home/ingivision.com/web/wp-content/plugins/redirection\";i:5288877;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/flamingo/includes\";i:29636;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/flamingo/admin/css\";i:1241;s:71:\"/usr/home/ingivision.com/web/wp-content/plugins/flamingo/admin/includes\";i:39691;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/flamingo/admin/js\";i:205;s:62:\"/usr/home/ingivision.com/web/wp-content/plugins/flamingo/admin\";i:72778;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/flamingo/languages\";i:122;s:56:\"/usr/home/ingivision.com/web/wp-content/plugins/flamingo\";i:126037;s:68:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/images\";i:266389;s:119:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/ParameterBag\";i:18510;s:116:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Exception\";i:7089;s:115:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection/Argument\";i:945;s:106:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony/dependency-injection\";i:51009;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/symfony\";i:51009;s:108:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Token\";i:7954;s:107:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Tool\";i:15112;s:118:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant/Exception\";i:804;s:108:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Grant\";i:10346;s:117:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/OptionProvider\";i:3990;s:121:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider/Exception\";i:1225;s:111:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src/Provider\";i:33740;s:102:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client/src\";i:71142;s:98:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league/oauth2-client\";i:71142;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/league\";i:71142;s:97:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7/src\";i:143415;s:93:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/psr7\";i:143415;s:101:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises/src\";i:44572;s:97:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/promises\";i:44572;s:109:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Exception\";i:9318;s:106:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Cookie\";i:27297;s:107:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src/Handler\";i:57020;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle/src\";i:188187;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp/guzzle\";i:188187;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/guzzlehttp\";i:376174;s:98:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message/src\";i:46661;s:94:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/http-message\";i:46661;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container/src\";i:1680;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/container\";i:1680;s:93:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr/Log\";i:11844;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log/Psr\";i:11844;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr/log\";i:11844;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed/psr\";i:60185;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor_prefixed\";i:558510;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/css/dist/select2\";i:30405;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/css/dist\";i:412836;s:69:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/css/src\";i:128928;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/css\";i:546031;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/inc/sitemaps\";i:98258;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/inc/exceptions\";i:402;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/inc/options\";i:129873;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/inc\";i:517492;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/roles\";i:8038;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/ryte\";i:11283;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/formatter\";i:22435;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/network\";i:7386;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/dashboard\";i:9305;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/tool\";i:6910;s:93:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/metas/archives\";i:1702;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/metas/taxonomies\";i:819;s:108:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/metas/paper-content/post_type\";i:3550;s:106:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/metas/paper-content/general\";i:7205;s:98:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/metas/paper-content\";i:30393;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/metas\";i:42118;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs/social\";i:10166;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/tabs\";i:75885;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views/form\";i:1956;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/views\";i:147793;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/exceptions\";i:1090;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/menu\";i:24181;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/metabox\";i:59781;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/google_search_console/views\";i:3495;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/google_search_console\";i:5856;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/import/plugins\";i:50559;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/import\";i:58247;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/listeners\";i:304;s:87:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/config-ui/factories\";i:2151;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/config-ui/components\";i:6314;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/config-ui/fields\";i:34317;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/config-ui\";i:72550;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/notifiers\";i:8270;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/endpoints\";i:3824;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/tracking\";i:16428;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/statistics\";i:7966;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/services\";i:2475;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/capabilities\";i:14623;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/watchers\";i:6822;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/pages\";i:6493;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/taxonomy\";i:36322;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/ajax\";i:5803;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin/filters\";i:8540;s:67:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/admin\";i:906650;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/lib/dependency-injection\";i:2128;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/lib/migrations\";i:42114;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/lib\";i:133774;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/js/dist/select2/i18n\";i:49077;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/js/dist/select2\";i:123999;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/js/dist/yoast\";i:1235492;s:69:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/js/dist\";i:5891577;s:64:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/js\";i:5891577;s:71:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/languages\";i:2695440;s:79:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presentations\";i:49446;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/actions/semrush\";i:4568;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/actions/indexables\";i:3013;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/actions/indexing\";i:27007;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/actions\";i:39578;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/routes\";i:29201;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/commands\";i:8157;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/exceptions/semrush/tokens\";i:1297;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/exceptions/semrush\";i:1297;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/exceptions/indexable\";i:1954;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/exceptions/oauth\";i:723;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/exceptions\";i:4671;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/wordpress\";i:896;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/inc/sitemaps\";i:1183;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/inc\";i:3553;s:94:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/recalculate\";i:3905;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/links\";i:1800;s:103:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/config-ui/components\";i:2036;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/config-ui/fields\";i:2207;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/config-ui\";i:4243;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/notifiers\";i:860;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/onpage\";i:2639;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/endpoints\";i:1313;s:104:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/google-search-console\";i:18442;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/taxonomy\";i:1512;s:87:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin/ajax\";i:1862;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/admin\";i:60155;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/frontend/schema\";i:30704;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/frontend\";i:57793;s:97:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/actions/indexing\";i:358;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/actions/indexation\";i:3536;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/actions\";i:3894;s:97:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/presenters/admin\";i:5950;s:102:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/presenters/open-graph\";i:685;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/presenters\";i:6635;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations/admin\";i:9590;s:93:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src/integrations\";i:9590;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated/src\";i:20119;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/deprecated\";i:149205;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presenters/twitter\";i:6312;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presenters/webmaster\";i:3368;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presenters/admin\";i:21244;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presenters/slack\";i:1909;s:87:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presenters/open-graph\";i:11609;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presenters/debug\";i:2063;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/presenters\";i:69536;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/surfaces/values\";i:8903;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/surfaces\";i:26062;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/generated\";i:282587;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/models\";i:8880;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/repositories\";i:22906;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/context\";i:12829;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/wrappers\";i:2971;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/schema-templates\";i:3792;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/memoizers\";i:6289;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/generators/schema/third-party\";i:6660;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/generators/schema\";i:46528;s:76:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/generators\";i:81358;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/loggers\";i:1093;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/conditionals/admin\";i:2837;s:90:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/conditionals/third-party\";i:2998;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/conditionals\";i:18988;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/integrations/alerts\";i:933;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/integrations/blocks\";i:7275;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/integrations/front-end\";i:30314;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/integrations/admin\";i:45816;s:87:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/integrations/watchers\";i:58778;s:90:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/integrations/third-party\";i:50031;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/integrations\";i:216411;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/values/semrush\";i:2902;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/values/open-graph\";i:1158;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/values\";i:6644;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/initializers\";i:6976;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/builders\";i:68571;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/helpers/twitter\";i:1152;s:84:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/helpers/open-graph\";i:2913;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/helpers/schema\";i:11788;s:73:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/helpers\";i:102908;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/config/migrations\";i:32204;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src/config\";i:50285;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/src\";i:1278162;s:77:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor/composer\";i:241605;s:90:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module/src\";i:13505;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor/yoast/i18n-module\";i:14948;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor/yoast\";i:14948;s:68:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo/vendor\";i:256731;s:61:\"/usr/home/ingivision.com/web/wp-content/plugins/wordpress-seo\";i:13122880;s:107:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src/css\";i:1102;s:103:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices/src\";i:17806;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/notices\";i:18456;s:99:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log/src\";i:14493;s:95:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel/log\";i:14891;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/build/shortpixel\";i:36578;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/build\";i:36578;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/res/css\";i:76116;s:92:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/res/img/file-tree\";i:17853;s:82:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/res/img\";i:657198;s:88:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/res/scss/view\";i:6396;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/res/scss\";i:12894;s:81:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/res/js\";i:206960;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/res\";i:953168;s:94:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/view/settings\";i:82910;s:85:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/view\";i:268255;s:96:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/Controller/View\";i:38645;s:91:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/Controller\";i:126691;s:83:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/db\";i:123544;s:89:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/external\";i:54668;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/front\";i:21634;s:86:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class/Model\";i:78020;s:80:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser/class\";i:958644;s:74:\"/usr/home/ingivision.com/web/wp-content/plugins/shortpixel-image-optimiser\";i:2087001;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/css\";i:4672;s:69:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/compat\";i:6546;s:70:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/js/dist\";i:16460;s:65:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/js\";i:16460;s:69:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/src/ui\";i:51196;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/src/admin/views\";i:8772;s:72:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/src/admin\";i:35041;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/src/watchers\";i:16861;s:75:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/src/handlers\";i:19263;s:66:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/src\";i:165597;s:78:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/vendor/composer\";i:24448;s:69:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post/vendor\";i:24626;s:62:\"/usr/home/ingivision.com/web/wp-content/plugins/duplicate-post\";i:302864;s:47:\"/usr/home/ingivision.com/web/wp-content/plugins\";i:47589440;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2020/10\";i:311710;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2020/12\";i:321328;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2020/06\";i:0;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2020/08\";i:4543196;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2020/07\";i:0;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2020/09\";i:2550576;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2020/11\";i:17973562;s:52:\"/usr/home/ingivision.com/web/wp-content/uploads/2020\";i:25700372;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/ao_ccss\";i:0;s:59:\"/usr/home/ingivision.com/web/wp-content/uploads/js_composer\";i:0;s:61:\"/usr/home/ingivision.com/web/wp-content/uploads/wpcf7_uploads\";i:14;s:92:\"/usr/home/ingivision.com/web/wp-content/uploads/ShortpixelBackups/wp-content/uploads/2020/08\";i:11642663;s:89:\"/usr/home/ingivision.com/web/wp-content/uploads/ShortpixelBackups/wp-content/uploads/2020\";i:11642663;s:84:\"/usr/home/ingivision.com/web/wp-content/uploads/ShortpixelBackups/wp-content/uploads\";i:11642663;s:76:\"/usr/home/ingivision.com/web/wp-content/uploads/ShortpixelBackups/wp-content\";i:11642680;s:65:\"/usr/home/ingivision.com/web/wp-content/uploads/ShortpixelBackups\";i:11642697;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2018/06\";i:10611721;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2018/08\";i:758479;s:52:\"/usr/home/ingivision.com/web/wp-content/uploads/2018\";i:11370200;s:56:\"/usr/home/ingivision.com/web/wp-content/uploads/cws_demo\";i:1105986;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2021/02\";i:1458055;s:55:\"/usr/home/ingivision.com/web/wp-content/uploads/2021/01\";i:24641105;s:52:\"/usr/home/ingivision.com/web/wp-content/uploads/2021\";i:26099160;s:47:\"/usr/home/ingivision.com/web/wp-content/uploads\";i:75918740;}','yes'),(9786,'wp-short-pixel-activation-notice','','no'),(9787,'wp-short-pixel-helpscout-optin','-1','no'),(9788,'wp-short-pixel-bulk-type','','no'),(9789,'wp-short-pixel-bulk-count','0','no'),(9790,'wp-short-pixel-bulk-previous-percent','0','no'),(9791,'wp-short-pixel-bulk-processed-items','0','no'),(9792,'wp-short-pixel-bulk-done-count','0','no'),(9793,'wp-short-pixel-last-bulk-start-time','0','no'),(9794,'wp-short-pixel-last-bulk-success-time','0','no'),(9795,'wp-short-pixel-bulk-running-time','0','no'),(9796,'wp-short-pixel-cancel-pointer','0','no'),(9797,'wp-short-pixel-flag-id','0','no'),(9798,'bulkProcessingStatus','','no'),(10195,'auto_core_update_notified','a:4:{s:4:\"type\";s:7:\"success\";s:5:\"email\";s:15:\"info@admirae.es\";s:7:\"version\";s:3:\"5.7\";s:9:\"timestamp\";i:1615349452;}','no'),(10197,'https_detection_errors','a:0:{}','yes'),(10469,'_site_transient_update_core','O:8:\"stdClass\":4:{s:7:\"updates\";a:1:{i:0;O:8:\"stdClass\":10:{s:8:\"response\";s:6:\"latest\";s:8:\"download\";s:63:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.7.zip\";s:6:\"locale\";s:5:\"es_ES\";s:8:\"packages\";O:8:\"stdClass\":5:{s:4:\"full\";s:63:\"https://downloads.wordpress.org/release/es_ES/wordpress-5.7.zip\";s:10:\"no_content\";s:0:\"\";s:11:\"new_bundled\";s:0:\"\";s:7:\"partial\";s:0:\"\";s:8:\"rollback\";s:0:\"\";}s:7:\"current\";s:3:\"5.7\";s:7:\"version\";s:3:\"5.7\";s:11:\"php_version\";s:6:\"5.6.20\";s:13:\"mysql_version\";s:3:\"5.0\";s:11:\"new_bundled\";s:3:\"5.6\";s:15:\"partial_version\";s:0:\"\";}}s:12:\"last_checked\";i:1616731355;s:15:\"version_checked\";s:3:\"5.7\";s:12:\"translations\";a:0:{}}','no'),(10470,'_site_transient_update_themes','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1616731356;s:7:\"checked\";a:1:{s:6:\"ingivi\";s:0:\"\";}s:8:\"response\";a:0:{}s:9:\"no_update\";a:0:{}s:12:\"translations\";a:0:{}}','no'),(10657,'category_children','a:0:{}','yes'),(10768,'_site_transient_timeout_theme_roots','1616733156','no'),(10769,'_site_transient_theme_roots','a:1:{s:6:\"ingivi\";s:7:\"/themes\";}','no'),(10770,'_site_transient_update_plugins','O:8:\"stdClass\":5:{s:12:\"last_checked\";i:1616731357;s:7:\"checked\";a:11:{s:30:\"advanced-custom-fields/acf.php\";s:5:\"5.9.5\";s:19:\"akismet/akismet.php\";s:5:\"4.1.8\";s:16:\"gotmls/index.php\";s:7:\"4.19.69\";s:27:\"autoptimize/autoptimize.php\";s:5:\"2.8.1\";s:23:\"block-lab/block-lab.php\";s:5:\"1.6.0\";s:28:\"cms-tree-page-view/index.php\";s:5:\"1.6.4\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:3:\"5.4\";s:21:\"flamingo/flamingo.php\";s:5:\"2.2.1\";s:27:\"redirection/redirection.php\";s:5:\"5.0.1\";s:33:\"duplicate-post/duplicate-post.php\";s:5:\"4.1.1\";s:24:\"wordpress-seo/wp-seo.php\";s:4:\"15.9\";}s:8:\"response\";a:3:{s:19:\"akismet/akismet.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:21:\"w.org/plugins/akismet\";s:4:\"slug\";s:7:\"akismet\";s:6:\"plugin\";s:19:\"akismet/akismet.php\";s:11:\"new_version\";s:5:\"4.1.9\";s:3:\"url\";s:38:\"https://wordpress.org/plugins/akismet/\";s:7:\"package\";s:56:\"https://downloads.wordpress.org/plugin/akismet.4.1.9.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/akismet/assets/icon-256x256.png?rev=969272\";s:2:\"1x\";s:59:\"https://ps.w.org/akismet/assets/icon-128x128.png?rev=969272\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/akismet/assets/banner-772x250.jpg?rev=479904\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.7\";s:12:\"requires_php\";b:0;s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:33:\"duplicate-post/duplicate-post.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:28:\"w.org/plugins/duplicate-post\";s:4:\"slug\";s:14:\"duplicate-post\";s:6:\"plugin\";s:33:\"duplicate-post/duplicate-post.php\";s:11:\"new_version\";s:5:\"4.1.2\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/duplicate-post/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/duplicate-post.4.1.2.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-256x256.png?rev=2336666\";s:2:\"1x\";s:67:\"https://ps.w.org/duplicate-post/assets/icon-128x128.png?rev=2336666\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:70:\"https://ps.w.org/duplicate-post/assets/banner-1544x500.png?rev=2336666\";s:2:\"1x\";s:69:\"https://ps.w.org/duplicate-post/assets/banner-772x250.png?rev=2336666\";}s:11:\"banners_rtl\";a:0:{}s:6:\"tested\";s:3:\"5.7\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}s:24:\"wordpress-seo/wp-seo.php\";O:8:\"stdClass\":12:{s:2:\"id\";s:27:\"w.org/plugins/wordpress-seo\";s:4:\"slug\";s:13:\"wordpress-seo\";s:6:\"plugin\";s:24:\"wordpress-seo/wp-seo.php\";s:11:\"new_version\";s:6:\"16.0.2\";s:3:\"url\";s:44:\"https://wordpress.org/plugins/wordpress-seo/\";s:7:\"package\";s:63:\"https://downloads.wordpress.org/plugin/wordpress-seo.16.0.2.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:66:\"https://ps.w.org/wordpress-seo/assets/icon-256x256.png?rev=2363699\";s:2:\"1x\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";s:3:\"svg\";s:58:\"https://ps.w.org/wordpress-seo/assets/icon.svg?rev=2363699\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500.png?rev=1843435\";s:2:\"1x\";s:68:\"https://ps.w.org/wordpress-seo/assets/banner-772x250.png?rev=1843435\";}s:11:\"banners_rtl\";a:2:{s:2:\"2x\";s:73:\"https://ps.w.org/wordpress-seo/assets/banner-1544x500-rtl.png?rev=1843435\";s:2:\"1x\";s:72:\"https://ps.w.org/wordpress-seo/assets/banner-772x250-rtl.png?rev=1843435\";}s:6:\"tested\";s:3:\"5.7\";s:12:\"requires_php\";s:6:\"5.6.20\";s:13:\"compatibility\";O:8:\"stdClass\":0:{}}}s:12:\"translations\";a:0:{}s:9:\"no_update\";a:8:{s:30:\"advanced-custom-fields/acf.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:36:\"w.org/plugins/advanced-custom-fields\";s:4:\"slug\";s:22:\"advanced-custom-fields\";s:6:\"plugin\";s:30:\"advanced-custom-fields/acf.php\";s:11:\"new_version\";s:5:\"5.9.5\";s:3:\"url\";s:53:\"https://wordpress.org/plugins/advanced-custom-fields/\";s:7:\"package\";s:71:\"https://downloads.wordpress.org/plugin/advanced-custom-fields.5.9.5.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-256x256.png?rev=1082746\";s:2:\"1x\";s:75:\"https://ps.w.org/advanced-custom-fields/assets/icon-128x128.png?rev=1082746\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:78:\"https://ps.w.org/advanced-custom-fields/assets/banner-1544x500.jpg?rev=1729099\";s:2:\"1x\";s:77:\"https://ps.w.org/advanced-custom-fields/assets/banner-772x250.jpg?rev=1729102\";}s:11:\"banners_rtl\";a:0:{}}s:16:\"gotmls/index.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:20:\"w.org/plugins/gotmls\";s:4:\"slug\";s:6:\"gotmls\";s:6:\"plugin\";s:16:\"gotmls/index.php\";s:11:\"new_version\";s:7:\"4.19.69\";s:3:\"url\";s:37:\"https://wordpress.org/plugins/gotmls/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/gotmls.4.19.69.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:59:\"https://ps.w.org/gotmls/assets/icon-256x256.png?rev=1001824\";s:2:\"1x\";s:59:\"https://ps.w.org/gotmls/assets/icon-128x128.png?rev=1001824\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/gotmls/assets/banner-772x250.jpg?rev=1043954\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"autoptimize/autoptimize.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/autoptimize\";s:4:\"slug\";s:11:\"autoptimize\";s:6:\"plugin\";s:27:\"autoptimize/autoptimize.php\";s:11:\"new_version\";s:5:\"2.8.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/autoptimize/\";s:7:\"package\";s:60:\"https://downloads.wordpress.org/plugin/autoptimize.2.8.1.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:64:\"https://ps.w.org/autoptimize/assets/icon-256X256.png?rev=2211608\";s:2:\"1x\";s:64:\"https://ps.w.org/autoptimize/assets/icon-128x128.png?rev=1864142\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:66:\"https://ps.w.org/autoptimize/assets/banner-772x250.jpg?rev=1315920\";}s:11:\"banners_rtl\";a:0:{}}s:23:\"block-lab/block-lab.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:23:\"w.org/plugins/block-lab\";s:4:\"slug\";s:9:\"block-lab\";s:6:\"plugin\";s:23:\"block-lab/block-lab.php\";s:11:\"new_version\";s:5:\"1.6.0\";s:3:\"url\";s:40:\"https://wordpress.org/plugins/block-lab/\";s:7:\"package\";s:52:\"https://downloads.wordpress.org/plugin/block-lab.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:62:\"https://ps.w.org/block-lab/assets/icon-256x256.png?rev=2109452\";s:2:\"1x\";s:54:\"https://ps.w.org/block-lab/assets/icon.svg?rev=2109452\";s:3:\"svg\";s:54:\"https://ps.w.org/block-lab/assets/icon.svg?rev=2109452\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:65:\"https://ps.w.org/block-lab/assets/banner-1544x500.png?rev=2109452\";s:2:\"1x\";s:64:\"https://ps.w.org/block-lab/assets/banner-772x250.png?rev=2109452\";}s:11:\"banners_rtl\";a:0:{}}s:28:\"cms-tree-page-view/index.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:32:\"w.org/plugins/cms-tree-page-view\";s:4:\"slug\";s:18:\"cms-tree-page-view\";s:6:\"plugin\";s:28:\"cms-tree-page-view/index.php\";s:11:\"new_version\";s:5:\"1.6.4\";s:3:\"url\";s:49:\"https://wordpress.org/plugins/cms-tree-page-view/\";s:7:\"package\";s:67:\"https://downloads.wordpress.org/plugin/cms-tree-page-view.1.6.4.zip\";s:5:\"icons\";a:1:{s:7:\"default\";s:69:\"https://s.w.org/plugins/geopattern-icon/cms-tree-page-view_f1f1f1.svg\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:73:\"https://ps.w.org/cms-tree-page-view/assets/banner-772x250.png?rev=2344104\";}s:11:\"banners_rtl\";a:0:{}}s:36:\"contact-form-7/wp-contact-form-7.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:28:\"w.org/plugins/contact-form-7\";s:4:\"slug\";s:14:\"contact-form-7\";s:6:\"plugin\";s:36:\"contact-form-7/wp-contact-form-7.php\";s:11:\"new_version\";s:3:\"5.4\";s:3:\"url\";s:45:\"https://wordpress.org/plugins/contact-form-7/\";s:7:\"package\";s:61:\"https://downloads.wordpress.org/plugin/contact-form-7.5.4.zip\";s:5:\"icons\";a:3:{s:2:\"2x\";s:67:\"https://ps.w.org/contact-form-7/assets/icon-256x256.png?rev=2279696\";s:2:\"1x\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";s:3:\"svg\";s:59:\"https://ps.w.org/contact-form-7/assets/icon.svg?rev=2339255\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:69:\"https://ps.w.org/contact-form-7/assets/banner-1544x500.png?rev=860901\";s:2:\"1x\";s:68:\"https://ps.w.org/contact-form-7/assets/banner-772x250.png?rev=880427\";}s:11:\"banners_rtl\";a:0:{}}s:21:\"flamingo/flamingo.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:22:\"w.org/plugins/flamingo\";s:4:\"slug\";s:8:\"flamingo\";s:6:\"plugin\";s:21:\"flamingo/flamingo.php\";s:11:\"new_version\";s:5:\"2.2.1\";s:3:\"url\";s:39:\"https://wordpress.org/plugins/flamingo/\";s:7:\"package\";s:57:\"https://downloads.wordpress.org/plugin/flamingo.2.2.1.zip\";s:5:\"icons\";a:1:{s:2:\"1x\";s:61:\"https://ps.w.org/flamingo/assets/icon-128x128.png?rev=1540977\";}s:7:\"banners\";a:1:{s:2:\"1x\";s:62:\"https://ps.w.org/flamingo/assets/banner-772x250.png?rev=544829\";}s:11:\"banners_rtl\";a:0:{}}s:27:\"redirection/redirection.php\";O:8:\"stdClass\":9:{s:2:\"id\";s:25:\"w.org/plugins/redirection\";s:4:\"slug\";s:11:\"redirection\";s:6:\"plugin\";s:27:\"redirection/redirection.php\";s:11:\"new_version\";s:5:\"5.0.1\";s:3:\"url\";s:42:\"https://wordpress.org/plugins/redirection/\";s:7:\"package\";s:54:\"https://downloads.wordpress.org/plugin/redirection.zip\";s:5:\"icons\";a:2:{s:2:\"2x\";s:63:\"https://ps.w.org/redirection/assets/icon-256x256.jpg?rev=983639\";s:2:\"1x\";s:63:\"https://ps.w.org/redirection/assets/icon-128x128.jpg?rev=983640\";}s:7:\"banners\";a:2:{s:2:\"2x\";s:66:\"https://ps.w.org/redirection/assets/banner-1544x500.jpg?rev=983641\";s:2:\"1x\";s:65:\"https://ps.w.org/redirection/assets/banner-772x250.jpg?rev=983642\";}s:11:\"banners_rtl\";a:0:{}}}}','no');
/*!40000 ALTER TABLE `ingi_options` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_postmeta`
--

DROP TABLE IF EXISTS `ingi_postmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=15141 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_postmeta`
--

LOCK TABLES `ingi_postmeta` WRITE;
/*!40000 ALTER TABLE `ingi_postmeta` DISABLE KEYS */;
INSERT INTO `ingi_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES (7,6,'_edit_lock','1616503084:1'),(12,11,'_edit_lock','1599143834:1'),(14,15,'_edit_lock','1599145905:1'),(15,17,'_edit_lock','1599666440:1'),(16,15,'_edit_last','1'),(17,6,'_edit_last','1'),(19,11,'_edit_last','1'),(23,17,'_edit_last','1'),(25,20,'_menu_item_type','post_type'),(26,20,'_menu_item_menu_item_parent','0'),(27,20,'_menu_item_object_id','17'),(28,20,'_menu_item_object','page'),(29,20,'_menu_item_target',''),(30,20,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(31,20,'_menu_item_xfn',''),(32,20,'_menu_item_url',''),(52,23,'_menu_item_type','post_type'),(53,23,'_menu_item_menu_item_parent','0'),(54,23,'_menu_item_object_id','11'),(55,23,'_menu_item_object','page'),(56,23,'_menu_item_target',''),(57,23,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(58,23,'_menu_item_xfn',''),(59,23,'_menu_item_url',''),(70,25,'_menu_item_type','post_type'),(71,25,'_menu_item_menu_item_parent','0'),(72,25,'_menu_item_object_id','6'),(73,25,'_menu_item_object','page'),(74,25,'_menu_item_target',''),(75,25,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(76,25,'_menu_item_xfn',''),(77,25,'_menu_item_url',''),(79,6,'_wp_page_template','01-home.php'),(80,29,'_edit_lock','1604428747:1'),(81,29,'_edit_last','1'),(82,31,'_edit_lock','1610974432:1'),(83,31,'_edit_last','1'),(84,33,'_edit_lock','1600418409:1'),(85,33,'_edit_last','1'),(86,35,'_menu_item_type','post_type'),(87,35,'_menu_item_menu_item_parent','0'),(88,35,'_menu_item_object_id','31'),(89,35,'_menu_item_object','page'),(90,35,'_menu_item_target',''),(91,35,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(92,35,'_menu_item_xfn',''),(93,35,'_menu_item_url',''),(95,36,'_menu_item_type','post_type'),(96,36,'_menu_item_menu_item_parent','0'),(97,36,'_menu_item_object_id','29'),(98,36,'_menu_item_object','page'),(99,36,'_menu_item_target',''),(100,36,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(101,36,'_menu_item_xfn',''),(102,36,'_menu_item_url',''),(113,39,'_form','<div class=\"comment-form\">\n<p class=\"comment-form-author\">[text* nombre placeholder \"Nombre\"]</p>\n<p class=\"comment-form-email\">[email* email placeholder \"Email\"]</p>\n<p class=\"comment-form-author\">[tel* Telefono placeholder \"Telefono\"]</p>\n<p class=\"comment-form-email\">[text* asunto placeholder \"Asunto\"]</p>\n<div class=\"clearfix\"></div>\n<p class=\"comment-form-comment\">[textarea* mensaje placeholder \"Mensaje\"]</p>\n<p class=\"submit-form\">\n[submit  class:submit class:hvr-shutter-out-verticall \"Enviar mensaje\"]</p>\n</div>'),(114,39,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:36:\"Soclicitud de contacto de Ingivision\";s:6:\"sender\";s:38:\"Ingivision <ingivision@ingivision.com>\";s:9:\"recipient\";s:25:\"ingivision@ingivision.com\";s:4:\"body\";s:206:\"Asunto:[your-subject]\nDe: [your-name]\nEmail:[your-email]\nTelefono:[Telefono]\n\nCuerpo del mensaje:\n[mensaje]\n\n-- \nEste mensaje se ha enviado desde un formulario de contacto en Ingivision (www.ingivision.com)\";s:18:\"additional_headers\";s:0:\"\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(115,39,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:29:\"Ingivision «[your-subject]»\";s:6:\"sender\";s:44:\"Ingivision <wordpress@ingivision.admirae.es>\";s:9:\"recipient\";s:15:\"info@admirae.es\";s:4:\"body\";s:144:\"Cuerpo del mensaje:\n[your-message]\n\n-- \nEste mensaje se ha enviado desde un formulario de contacto en Ingivision (https://ingivision.admirae.es)\";s:18:\"additional_headers\";s:25:\"Reply-To: info@admirae.es\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(116,39,'_messages','a:22:{s:12:\"mail_sent_ok\";s:40:\"Gracias por tu mensaje. Ha sido enviado.\";s:12:\"mail_sent_ng\";s:94:\"Ha ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\";s:16:\"validation_error\";s:79:\"Uno o más campos tienen un error. Por favor, revísalos e inténtalo de nuevo.\";s:4:\"spam\";s:94:\"Ha ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\";s:12:\"accept_terms\";s:69:\"Debes aceptar los términos y condiciones antes de enviar tu mensaje.\";s:16:\"invalid_required\";s:24:\"El campo es obligatorio.\";s:16:\"invalid_too_long\";s:28:\"El campo es demasiado largo.\";s:17:\"invalid_too_short\";s:28:\"El campo es demasiado corto.\";s:12:\"invalid_date\";s:34:\"El formato de fecha es incorrecto.\";s:14:\"date_too_early\";s:50:\"La fecha es anterior a la más temprana permitida.\";s:13:\"date_too_late\";s:50:\"La fecha es posterior a la más tardía permitida.\";s:13:\"upload_failed\";s:53:\"Ha ocurrido un error desconocido al subir el archivo.\";s:24:\"upload_file_type_invalid\";s:52:\"No tienes permisos para subir archivos de este tipo.\";s:21:\"upload_file_too_large\";s:31:\"El archivo es demasiado grande.\";s:23:\"upload_failed_php_error\";s:41:\"Ha ocurrido un error al subir el archivo.\";s:14:\"invalid_number\";s:36:\"El formato de número no es válido.\";s:16:\"number_too_small\";s:45:\"El número es menor que el mínimo permitido.\";s:16:\"number_too_large\";s:45:\"El número es mayor que el máximo permitido.\";s:23:\"quiz_answer_not_correct\";s:44:\"La respuesta al cuestionario no es correcta.\";s:13:\"invalid_email\";s:71:\"La dirección de correo electrónico que has introducido no es válida.\";s:11:\"invalid_url\";s:21:\"La URL no es válida.\";s:11:\"invalid_tel\";s:38:\"El número de teléfono no es válido.\";}'),(117,39,'_additional_settings',''),(118,39,'_locale','es_ES'),(119,17,'_wp_page_template','02-Contacto.php'),(120,41,'_edit_lock','1616502502:1'),(121,41,'_edit_last','1'),(122,43,'_edit_lock','1599674067:1'),(123,44,'_edit_lock','1598346001:1'),(124,43,'_edit_last','1'),(125,44,'_edit_last','1'),(126,29,'_wp_page_template','03-Servicios.php'),(127,47,'_menu_item_type','post_type'),(128,47,'_menu_item_menu_item_parent','36'),(129,47,'_menu_item_object_id','44'),(130,47,'_menu_item_object','page'),(131,47,'_menu_item_target',''),(132,47,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(133,47,'_menu_item_xfn',''),(134,47,'_menu_item_url',''),(136,48,'_menu_item_type','post_type'),(137,48,'_menu_item_menu_item_parent','36'),(138,48,'_menu_item_object_id','43'),(139,48,'_menu_item_object','page'),(140,48,'_menu_item_target',''),(141,48,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(142,48,'_menu_item_xfn',''),(143,48,'_menu_item_url',''),(145,49,'_menu_item_type','post_type'),(146,49,'_menu_item_menu_item_parent','36'),(147,49,'_menu_item_object_id','41'),(148,49,'_menu_item_object','page'),(149,49,'_menu_item_target',''),(150,49,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(151,49,'_menu_item_xfn',''),(152,49,'_menu_item_url',''),(154,41,'_wp_page_template','04-Servicios01.php'),(155,43,'_wp_page_template','05-Servicios02.php'),(156,44,'_wp_page_template','06-Servicios03.php'),(157,11,'_wp_page_template','07-PorqueIngivision.php'),(158,55,'_edit_lock','1599667011:1'),(159,55,'_edit_last','1'),(164,58,'_edit_lock','1603723099:1'),(165,58,'_edit_last','1'),(166,55,'_yoast_wpseo_content_score','30'),(167,61,'_edit_lock','1599666643:1'),(168,61,'_edit_last','1'),(169,58,'_yoast_wpseo_content_score','30'),(170,61,'_yoast_wpseo_content_score','30'),(177,71,'_edit_lock','1614075120:1'),(178,71,'_edit_last','1'),(179,71,'_yoast_wpseo_content_score','90'),(184,71,'_wp_old_slug','que-es-el-control-de-calidad-en-las-frutas-todas-las-claves'),(185,71,'_yoast_wpseo_title','¿Qué es el control de calidad en frutas y hortalizas? - Ingivision'),(186,71,'_yoast_wpseo_metadesc','Todo sobre el procedimiento de la industria hortofrutícola para el control de calidad en frutas y hortalizas: color, peso, forma...'),(195,71,'_yoast_wpseo_primary_category','9'),(200,76,'_wp_attached_file','2020/08/calidad-en-las-frutas-hortalizas.jpg'),(201,76,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:851;s:6:\"height\";i:569;s:4:\"file\";s:44:\"2020/08/calidad-en-las-frutas-hortalizas.jpg\";s:5:\"sizes\";a:3:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"calidad-en-las-frutas-hortalizas-300x201.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:201;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"calidad-en-las-frutas-hortalizas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"calidad-en-las-frutas-hortalizas-768x514.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:514;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-08-22 16:04:03\";s:9:\"thumbsOpt\";i:3;s:13:\"thumbsOptList\";a:3:{i:0;s:44:\"calidad-en-las-frutas-hortalizas-300x201.jpg\";i:1;s:44:\"calidad-en-las-frutas-hortalizas-150x150.jpg\";i:2;s:44:\"calidad-en-las-frutas-hortalizas-768x514.jpg\";}s:12:\"excludeSizes\";a:0:{}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"35.63\";}'),(202,76,'_wp_attachment_image_alt','Calidad en frutas y hortalizas'),(203,77,'_wp_attached_file','2020/08/calibrado-de-frutas.jpg'),(204,77,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1069;s:4:\"file\";s:31:\"2020/08/calibrado-de-frutas.jpg\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"calibrado-de-frutas-300x167.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:167;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:32:\"calibrado-de-frutas-1024x570.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:570;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"calibrado-de-frutas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:31:\"calibrado-de-frutas-768x428.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:428;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:32:\"calibrado-de-frutas-1536x855.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:855;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-08-22 16:03:56\";s:9:\"thumbsOpt\";i:5;s:13:\"thumbsOptList\";a:5:{i:0;s:31:\"calibrado-de-frutas-300x167.jpg\";i:1;s:32:\"calibrado-de-frutas-1024x570.jpg\";i:2;s:31:\"calibrado-de-frutas-150x150.jpg\";i:3;s:31:\"calibrado-de-frutas-768x428.jpg\";i:4;s:32:\"calibrado-de-frutas-1536x855.jpg\";}s:12:\"excludeSizes\";a:0:{}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"34.74\";}'),(205,77,'_wp_attachment_image_alt','Software de calibrado de frutas'),(206,78,'_wp_attached_file','2020/08/control-calidad-hortofruticola.png'),(207,78,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:748;s:4:\"file\";s:42:\"2020/08/control-calidad-hortofruticola.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"control-calidad-hortofruticola-300x117.png\";s:5:\"width\";i:300;s:6:\"height\";i:117;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"control-calidad-hortofruticola-1024x399.png\";s:5:\"width\";i:1024;s:6:\"height\";i:399;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"control-calidad-hortofruticola-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"control-calidad-hortofruticola-768x299.png\";s:5:\"width\";i:768;s:6:\"height\";i:299;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:43:\"control-calidad-hortofruticola-1536x598.png\";s:5:\"width\";i:1536;s:6:\"height\";i:598;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-08-22 16:03:49\";s:9:\"thumbsOpt\";i:5;s:13:\"thumbsOptList\";a:5:{i:0;s:42:\"control-calidad-hortofruticola-300x117.png\";i:1;s:43:\"control-calidad-hortofruticola-1024x399.png\";i:2;s:42:\"control-calidad-hortofruticola-150x150.png\";i:3;s:42:\"control-calidad-hortofruticola-768x299.png\";i:4;s:43:\"control-calidad-hortofruticola-1536x598.png\";}s:12:\"excludeSizes\";a:0:{}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"69.33\";}'),(208,78,'_wp_attachment_image_alt','Control de calidad hortofrutícola'),(209,79,'_wp_attached_file','2020/08/vlcsnap-2020-06-18-13h20m26s577.png'),(210,79,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1920;s:6:\"height\";i:1090;s:4:\"file\";s:43:\"2020/08/vlcsnap-2020-06-18-13h20m26s577.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:43:\"vlcsnap-2020-06-18-13h20m26s577-300x170.png\";s:5:\"width\";i:300;s:6:\"height\";i:170;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:44:\"vlcsnap-2020-06-18-13h20m26s577-1024x581.png\";s:5:\"width\";i:1024;s:6:\"height\";i:581;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:43:\"vlcsnap-2020-06-18-13h20m26s577-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:43:\"vlcsnap-2020-06-18-13h20m26s577-768x436.png\";s:5:\"width\";i:768;s:6:\"height\";i:436;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:44:\"vlcsnap-2020-06-18-13h20m26s577-1536x872.png\";s:5:\"width\";i:1536;s:6:\"height\";i:872;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:43:\"vlcsnap-2020-06-18-13h20m26s577-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-08-22 16:03:41\";s:9:\"thumbsOpt\";i:6;s:13:\"thumbsOptList\";a:6:{i:0;s:43:\"vlcsnap-2020-06-18-13h20m26s577-300x170.png\";i:1;s:44:\"vlcsnap-2020-06-18-13h20m26s577-1024x581.png\";i:2;s:43:\"vlcsnap-2020-06-18-13h20m26s577-150x150.png\";i:3;s:43:\"vlcsnap-2020-06-18-13h20m26s577-768x436.png\";i:4;s:44:\"vlcsnap-2020-06-18-13h20m26s577-1536x872.png\";i:5;s:43:\"vlcsnap-2020-06-18-13h20m26s577-770x440.png\";}s:12:\"excludeSizes\";a:0:{}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"67.26\";}'),(213,71,'_thumbnail_id','87'),(236,87,'_wp_attached_file','2020/08/home1.png'),(237,87,'_wp_attachment_metadata','a:7:{s:5:\"width\";i:1894;s:6:\"height\";i:828;s:4:\"file\";s:17:\"2020/08/home1.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"home1-300x131.png\";s:5:\"width\";i:300;s:6:\"height\";i:131;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:18:\"home1-1024x448.png\";s:5:\"width\";i:1024;s:6:\"height\";i:448;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"home1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:17:\"home1-768x336.png\";s:5:\"width\";i:768;s:6:\"height\";i:336;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:18:\"home1-1536x671.png\";s:5:\"width\";i:1536;s:6:\"height\";i:671;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:17:\"home1-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:17:\"home1-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}s:10:\"ShortPixel\";a:7:{s:4:\"type\";s:5:\"lossy\";s:8:\"exifKept\";s:1:\"0\";s:4:\"date\";s:19:\"2020-08-22 16:03:32\";s:9:\"thumbsOpt\";i:7;s:13:\"thumbsOptList\";a:7:{i:0;s:17:\"home1-300x131.png\";i:1;s:18:\"home1-1024x448.png\";i:2;s:17:\"home1-150x150.png\";i:3;s:17:\"home1-768x336.png\";i:4;s:18:\"home1-1536x671.png\";i:5;s:17:\"home1-770x440.png\";i:6;s:17:\"home1-500x370.png\";}s:12:\"excludeSizes\";a:0:{}s:10:\"retinasOpt\";i:0;}s:21:\"ShortPixelImprovement\";s:5:\"69.31\";}'),(242,88,'_menu_item_type','post_type'),(243,88,'_menu_item_menu_item_parent','0'),(244,88,'_menu_item_object_id','33'),(245,88,'_menu_item_object','page'),(246,88,'_menu_item_target',''),(247,88,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(248,88,'_menu_item_xfn',''),(249,88,'_menu_item_url',''),(259,31,'_yoast_wpseo_content_score','90'),(260,31,'_wp_page_template','08-Servicios.php'),(265,97,'_edit_lock','1603722645:1'),(266,97,'_edit_last','1'),(267,99,'_wp_page_template','01-home.php'),(268,99,'_dp_original','6'),(269,100,'_yoast_wpseo_content_score','60'),(270,100,'_dp_original','58'),(271,101,'_yoast_wpseo_content_score','30'),(272,101,'_dp_original','55'),(273,102,'_yoast_wpseo_content_score','90'),(274,102,'_dp_original','61'),(275,103,'_yoast_wpseo_content_score','30'),(276,103,'_wp_page_template','08-Servicios.php'),(277,103,'_dp_original','31'),(278,104,'_wp_page_template','07-PorqueIngivision.php'),(279,104,'_dp_original','11'),(280,105,'_dp_original','33'),(281,106,'_wp_page_template','02-Contacto.php'),(282,106,'_dp_original','17'),(283,107,'_dp_original','15'),(284,108,'_wp_page_template','03-Servicios.php'),(285,108,'_dp_original','29'),(286,109,'_wp_page_template','06-Servicios03.php'),(287,109,'_dp_original','44'),(288,110,'_wp_page_template','04-Servicios01.php'),(289,110,'_dp_original','41'),(290,111,'_wp_page_template','05-Servicios02.php'),(291,111,'_dp_original','43'),(292,112,'_dp_original','9'),(295,111,'_edit_lock','1600949463:1'),(296,99,'_edit_lock','1598946966:1'),(297,99,'_edit_last','1'),(298,99,'idioma','Ingles'),(299,99,'_idioma','field_5b02f1f144ec1'),(300,130,'idioma','Ingles'),(301,130,'_idioma','field_5b02f1f144ec1'),(302,104,'_edit_lock','1600972864:1'),(303,131,'_menu_item_type','post_type'),(304,131,'_menu_item_menu_item_parent','0'),(305,131,'_menu_item_object_id','99'),(306,131,'_menu_item_object','page'),(307,131,'_menu_item_target',''),(308,131,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(309,131,'_menu_item_xfn',''),(310,131,'_menu_item_url',''),(312,132,'idioma','Ingles'),(313,132,'_idioma','field_5b02f1f144ec1'),(314,101,'_edit_lock','1599667159:1'),(315,105,'_edit_lock','1614072632:1'),(316,106,'_edit_lock','1599666303:1'),(317,100,'_edit_lock','1599671183:1'),(318,108,'_edit_lock','1599672214:1'),(319,102,'_edit_lock','1599666790:1'),(320,109,'_edit_lock','1600950152:1'),(321,107,'_edit_lock','1599666694:1'),(322,110,'_edit_lock','1600948771:1'),(323,112,'_edit_lock','1599667476:1'),(325,103,'_edit_lock','1600971064:1'),(326,104,'_edit_last','1'),(327,104,'idioma','Ingles'),(328,104,'_idioma','field_5b02f1f144ec1'),(329,133,'idioma','Ingles'),(330,133,'_idioma','field_5b02f1f144ec1'),(331,101,'_edit_last','1'),(332,101,'idioma','Ingles'),(333,101,'_idioma','field_5b02f1f144ec1'),(334,134,'idioma','Ingles'),(335,134,'_idioma','field_5b02f1f144ec1'),(336,105,'_edit_last','1'),(337,105,'idioma','Ingles'),(338,105,'_idioma','field_5b02f1f144ec1'),(339,135,'idioma','Ingles'),(340,135,'_idioma','field_5b02f1f144ec1'),(341,106,'_edit_last','1'),(342,106,'idioma','Ingles'),(343,106,'_idioma','field_5b02f1f144ec1'),(344,136,'idioma','Ingles'),(345,136,'_idioma','field_5b02f1f144ec1'),(346,102,'_edit_last','1'),(347,102,'idioma','Ingles'),(348,102,'_idioma','field_5b02f1f144ec1'),(349,137,'idioma','Ingles'),(350,137,'_idioma','field_5b02f1f144ec1'),(351,107,'_edit_last','1'),(352,107,'idioma','Ingles'),(353,107,'_idioma','field_5b02f1f144ec1'),(354,138,'idioma','Ingles'),(355,138,'_idioma','field_5b02f1f144ec1'),(356,112,'_edit_last','1'),(357,112,'idioma','Ingles'),(358,112,'_idioma','field_5b02f1f144ec1'),(359,139,'idioma','Ingles'),(360,139,'_idioma','field_5b02f1f144ec1'),(361,100,'_edit_last','1'),(362,100,'idioma','Ingles'),(363,100,'_idioma','field_5b02f1f144ec1'),(364,141,'idioma','Ingles'),(365,141,'_idioma','field_5b02f1f144ec1'),(366,108,'_edit_last','1'),(367,108,'idioma','Ingles'),(368,108,'_idioma','field_5b02f1f144ec1'),(369,142,'idioma','Ingles'),(370,142,'_idioma','field_5b02f1f144ec1'),(371,109,'_edit_last','1'),(372,109,'idioma','Ingles'),(373,109,'_idioma','field_5b02f1f144ec1'),(374,143,'idioma','Ingles'),(375,143,'_idioma','field_5b02f1f144ec1'),(376,110,'_edit_last','1'),(377,110,'idioma','Ingles'),(378,110,'_idioma','field_5b02f1f144ec1'),(379,144,'idioma','Ingles'),(380,144,'_idioma','field_5b02f1f144ec1'),(381,111,'_edit_last','1'),(382,111,'idioma','Ingles'),(383,111,'_idioma','field_5b02f1f144ec1'),(384,145,'idioma','Ingles'),(385,145,'_idioma','field_5b02f1f144ec1'),(391,103,'_edit_last','1'),(392,103,'idioma','Ingles'),(393,103,'_idioma','field_5b02f1f144ec1'),(394,147,'idioma','Ingles'),(395,147,'_idioma','field_5b02f1f144ec1'),(396,148,'_yoast_wpseo_content_score','60'),(397,148,'_wp_old_slug','que-es-el-control-de-calidad-en-las-frutas-todas-las-claves'),(398,148,'_yoast_wpseo_title','¿Qué es el control de calidad en frutas y hortalizas? - Ingivision'),(399,148,'_yoast_wpseo_metadesc','Todo sobre el procedimiento actual que se sigue en la industria hortofrutícola para el control de calidad en frutas y hortalizas: color, peso, forma...'),(400,148,'_yoast_wpseo_primary_category','9'),(401,148,'_thumbnail_id','87'),(402,148,'_dp_original','71'),(403,148,'_edit_lock','1597764645:1'),(404,148,'_edit_last','1'),(405,151,'idioma','Ingles'),(406,151,'_idioma','field_5b02f1f144ec1'),(407,152,'idioma','Ingles'),(408,152,'_idioma','field_5b02f1f144ec1'),(409,102,'_oembed_d9f03e7b40ea2030e345ae65b490f1e1','{{unknown}}'),(410,154,'idioma','Ingles'),(411,154,'_idioma','field_5b02f1f144ec1'),(412,157,'idioma','Ingles'),(413,157,'_idioma','field_5b02f1f144ec1'),(416,160,'idioma','Ingles'),(417,160,'_idioma','field_5b02f1f144ec1'),(418,162,'idioma','Ingles'),(419,162,'_idioma','field_5b02f1f144ec1'),(422,164,'idioma','Ingles'),(423,164,'_idioma','field_5b02f1f144ec1'),(424,166,'idioma','Ingles'),(425,166,'_idioma','field_5b02f1f144ec1'),(428,171,'idioma','Ingles'),(429,171,'_idioma','field_5b02f1f144ec1'),(466,176,'idioma','Ingles'),(467,176,'_idioma','field_5b02f1f144ec1'),(477,178,'_menu_item_type','post_type'),(478,178,'_menu_item_menu_item_parent','0'),(479,178,'_menu_item_object_id','103'),(480,178,'_menu_item_object','page'),(481,178,'_menu_item_target',''),(482,178,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(483,178,'_menu_item_xfn',''),(484,178,'_menu_item_url',''),(486,179,'_menu_item_type','post_type'),(487,179,'_menu_item_menu_item_parent','0'),(488,179,'_menu_item_object_id','108'),(489,179,'_menu_item_object','page'),(490,179,'_menu_item_target',''),(491,179,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(492,179,'_menu_item_xfn',''),(493,179,'_menu_item_url',''),(495,180,'_menu_item_type','post_type'),(496,180,'_menu_item_menu_item_parent','179'),(497,180,'_menu_item_object_id','111'),(498,180,'_menu_item_object','page'),(499,180,'_menu_item_target',''),(500,180,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(501,180,'_menu_item_xfn',''),(502,180,'_menu_item_url',''),(504,181,'_menu_item_type','post_type'),(505,181,'_menu_item_menu_item_parent','179'),(506,181,'_menu_item_object_id','110'),(507,181,'_menu_item_object','page'),(508,181,'_menu_item_target',''),(509,181,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(510,181,'_menu_item_xfn',''),(511,181,'_menu_item_url',''),(513,182,'_menu_item_type','post_type'),(514,182,'_menu_item_menu_item_parent','179'),(515,182,'_menu_item_object_id','109'),(516,182,'_menu_item_object','page'),(517,182,'_menu_item_target',''),(518,182,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(519,182,'_menu_item_xfn',''),(520,182,'_menu_item_url',''),(522,183,'idioma','Ingles'),(523,183,'_idioma','field_5b02f1f144ec1'),(524,184,'_menu_item_type','post_type'),(525,184,'_menu_item_menu_item_parent','0'),(526,184,'_menu_item_object_id','104'),(527,184,'_menu_item_object','page'),(528,184,'_menu_item_target',''),(529,184,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(530,184,'_menu_item_xfn',''),(531,184,'_menu_item_url',''),(533,185,'_menu_item_type','post_type'),(534,185,'_menu_item_menu_item_parent','0'),(535,185,'_menu_item_object_id','105'),(536,185,'_menu_item_object','page'),(537,185,'_menu_item_target',''),(538,185,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(539,185,'_menu_item_xfn',''),(540,185,'_menu_item_url',''),(542,186,'idioma','Ingles'),(543,186,'_idioma','field_5b02f1f144ec1'),(544,187,'_menu_item_type','post_type'),(545,187,'_menu_item_menu_item_parent','0'),(546,187,'_menu_item_object_id','106'),(547,187,'_menu_item_object','page'),(548,187,'_menu_item_target',''),(549,187,'_menu_item_classes','a:1:{i:0;s:0:\"\";}'),(550,187,'_menu_item_xfn',''),(551,187,'_menu_item_url',''),(555,148,'_wp_old_date','2020-08-14'),(558,148,'idioma','Ingles'),(559,148,'_idioma','field_5b02f1f144ec1'),(560,189,'idioma','Ingles'),(561,189,'_idioma','field_5b02f1f144ec1'),(562,33,'idioma','Castellano'),(563,33,'_idioma','field_5b02f1f144ec1'),(564,34,'idioma','Castellano'),(565,34,'_idioma','field_5b02f1f144ec1'),(566,190,'idioma','Ingles'),(567,190,'_idioma','field_5b02f1f144ec1'),(568,191,'idioma','Castellano'),(569,191,'_idioma','field_5b02f1f144ec1'),(570,105,'_wp_page_template','10-Blog-Eng.php'),(571,33,'_wp_page_template','09-Blog-Cas.php'),(574,71,'idioma','Castellano'),(575,71,'_idioma','field_5b02f1f144ec1'),(576,192,'idioma','Ingles'),(577,192,'_idioma','field_5b02f1f144ec1'),(580,193,'idioma','Castellano'),(581,193,'_idioma','field_5b02f1f144ec1'),(582,6,'idioma','Castellano'),(583,6,'_idioma','field_5b02f1f144ec1'),(584,27,'idioma','Castellano'),(585,27,'_idioma','field_5b02f1f144ec1'),(586,6,'_yoast_wpseo_focuskw','Sistema electrónico para calibradores'),(587,6,'_yoast_wpseo_title','Sistema electrónico para calibradores de fácil manejo %%sep%% %%sitename%%'),(588,6,'_yoast_wpseo_linkdex','53'),(589,87,'_shortpixel_status','2.6900'),(590,79,'_shortpixel_status','2.6700'),(591,78,'_shortpixel_status','2.6900'),(592,77,'_shortpixel_status','2.3400'),(593,76,'_shortpixel_status','2.3500'),(594,6,'_yoast_wpseo_metadesc','Descubre nuestro sofware: Un sistema electrónico para calibradores adaptable, con altas prestaciones y excelente relación calidad-precio'),(595,41,'idioma','Castellano'),(596,41,'_idioma','field_5b02f1f144ec1'),(597,42,'idioma','Castellano'),(598,42,'_idioma','field_5b02f1f144ec1'),(599,41,'_yoast_wpseo_title','Calibrado de frutas con Ingisorter, nuestros sofware low cost %%sep%% %%sitename%%'),(600,41,'_yoast_wpseo_metadesc','Un programa electrónico para el calibrado de frutas realmente competitivo. Analiza peso, tamaño y color con altas prestaciones.'),(601,41,'_yoast_wpseo_focuskw','Calibrado de frutas'),(602,41,'_yoast_wpseo_linkdex','49'),(603,43,'idioma','Castellano'),(604,43,'_idioma','field_5b02f1f144ec1'),(605,45,'idioma','Castellano'),(606,45,'_idioma','field_5b02f1f144ec1'),(607,43,'_yoast_wpseo_focuskw','Calibrado en frutas'),(608,43,'_yoast_wpseo_title','Calibrado en frutas con nuestro software IngiSorter Plus %%sep%% %%sitename%%'),(609,43,'_yoast_wpseo_metadesc','Si buscas un sistema electrónico para el calibrado en frutas, te recomendamos IngiSorter Plus. Controla peso, tamaño, color, densidad y forma'),(610,43,'_yoast_wpseo_linkdex','49'),(611,44,'idioma','Castellano'),(612,44,'_idioma','field_5b02f1f144ec1'),(613,46,'idioma','Castellano'),(614,46,'_idioma','field_5b02f1f144ec1'),(615,44,'_yoast_wpseo_focuskw','Calibrado de la fruta'),(616,44,'_yoast_wpseo_title','Calibrado de la fruta con nuestro programa IngiGrader %%sep%% %%sitename%%'),(617,44,'_yoast_wpseo_metadesc','Inteligencia artificial para el calibrado de la fruta. Es nuestro sistema de calibración más avanzado y en constante desarrollo. ¡Descúbrelo!'),(618,44,'_yoast_wpseo_linkdex','49'),(619,29,'idioma','Castellano'),(620,29,'_idioma','field_5b02f1f144ec1'),(621,30,'idioma','Castellano'),(622,30,'_idioma','field_5b02f1f144ec1'),(623,29,'_yoast_wpseo_focuskw','Tres productos para el calibrado de frutas'),(624,29,'_yoast_wpseo_title','Tres productos para el calibrado de frutas ¡conócelos! %%sep%% %%sitename%%'),(625,29,'_yoast_wpseo_metadesc','Ingisorter, Ingisorter Plus e Ingigrader. Tres productos para el calibrado de frutas: desde el más competitivo a la inteligencia artifical'),(626,29,'_yoast_wpseo_linkdex','49'),(629,71,'_yoast_wpseo_focuskw','control de calidad en las frutas'),(630,71,'_yoast_wpseo_linkdex','69'),(631,58,'idioma','Castellano'),(632,58,'_idioma','field_5b02f1f144ec1'),(633,195,'idioma','Castellano'),(634,195,'_idioma','field_5b02f1f144ec1'),(638,197,'_edit_last','1'),(639,197,'_edit_lock','1614450435:1'),(640,58,'_yoast_wpseo_title','Política de privacidad: Consúltala para tu tranquilidad%%sep%% %%sitename%%'),(641,58,'_yoast_wpseo_metadesc','Si quieres saber por qué recogemos datos, qué hacemos con ellos y cómo puedes modificarlos, revisa nuestra política de privacidad.'),(642,58,'_yoast_wpseo_focuskw','Política de privacidad ingivision'),(643,58,'_yoast_wpseo_linkdex','58'),(644,55,'idioma','Castellano'),(645,55,'_idioma','field_5b02f1f144ec1'),(646,60,'idioma','Castellano'),(647,60,'_idioma','field_5b02f1f144ec1'),(648,55,'_yoast_wpseo_focuskw','Aviso legal ingivision'),(649,55,'_yoast_wpseo_title','Aviso legal: toda la información a tu dispoción %%sep%% %%sitename%%'),(650,55,'_yoast_wpseo_metadesc','En este espacio te explicamos toda la información relativa a los términos y condiciones legales que establecemos como responsables de la web.'),(651,55,'_yoast_wpseo_linkdex','61'),(652,61,'idioma','Castellano'),(653,61,'_idioma','field_5b02f1f144ec1'),(654,66,'idioma','Castellano'),(655,66,'_idioma','field_5b02f1f144ec1'),(656,61,'_yoast_wpseo_focuskw','Política de cookies'),(657,61,'_yoast_wpseo_title','Política de cookies:¿por qué utilizamos cookies? %%sep%% %%sitename%%'),(658,61,'_yoast_wpseo_metadesc','¡Nos gustan las cookies! Y no solo las de comer. Utilizamos las cookies para mejorar la navegación. Te contamos en qué consiste esto.'),(659,61,'_yoast_wpseo_linkdex','58'),(660,199,'idioma','Ingles'),(661,199,'_idioma','field_5b02f1f144ec1'),(662,99,'_yoast_wpseo_focuskw','fruit grading electronic'),(663,99,'_yoast_wpseo_linkdex','63'),(664,99,'_yoast_wpseo_content_score','90'),(665,99,'_yoast_wpseo_title','Fruit grading electronic: our software low cost %%sep%% %%sitename%%'),(666,99,'_yoast_wpseo_metadesc','We develop fruit grading electronic systems for machinery. If you are looking for an easy to use software, this is your website.'),(667,31,'idioma','Castellano'),(668,31,'_idioma','field_5b02f1f144ec1'),(669,94,'idioma','Castellano'),(670,94,'_idioma','field_5b02f1f144ec1'),(671,31,'_yoast_wpseo_focuskw','Retrofit para calibradores'),(672,31,'_yoast_wpseo_title','Retrofit para calibradores, un servicio que te ahorra costes %%sep%% %%sitename%%'),(673,31,'_yoast_wpseo_metadesc','La maquinaria hortofrutícola nueva tiene elevados costes. Nuestro software puede instalarse en cualquier calibrador, tenga los años que tenga'),(674,31,'_yoast_wpseo_linkdex','41'),(675,11,'idioma','Castellano'),(676,11,'_idioma','field_5b02f1f144ec1'),(677,54,'idioma','Castellano'),(678,54,'_idioma','field_5b02f1f144ec1'),(679,11,'_yoast_wpseo_focuskw','Un sistema electrónico de calibrado de frutas diferente'),(680,11,'_yoast_wpseo_title','Un sistema electrónico de calibrado de frutas diferente%%sep%% %%sitename%%'),(681,11,'_yoast_wpseo_metadesc','¿Por qué trabajar con nosotros? Porque hemos desarrollado un sistema electrónico de calibrado diferente aplicando las últimas tecnologías.'),(682,11,'_yoast_wpseo_linkdex','42'),(683,33,'_yoast_wpseo_focuskw','Blog'),(684,33,'_yoast_wpseo_title','%%title%%: Noticias y novedades del sector hortofrutícola - Ingivision'),(685,33,'_yoast_wpseo_metadesc','Te contamos curiosidades y temas prácticos del sector hortofrutícola en el blog. Visítanos, anímate y deja tus cometarios.'),(686,33,'_yoast_wpseo_linkdex','53'),(687,17,'idioma','Castellano'),(688,17,'_idioma','field_5b02f1f144ec1'),(689,18,'idioma','Castellano'),(690,18,'_idioma','field_5b02f1f144ec1'),(691,17,'_yoast_wpseo_focuskw','Contacta con nosotros'),(692,17,'_yoast_wpseo_title','Contacta con nosotros. En esta empresa te atiende el jefe - ingivisión'),(693,17,'_yoast_wpseo_metadesc','Si tienes cualquier consulta sobre nuestro sistema electrónico de calibrado ¡contacta con nosotros! Estaremos encantados de ayudarte'),(694,17,'_yoast_wpseo_linkdex','49'),(701,105,'_yoast_wpseo_focuskw','Blog Ingivision'),(702,105,'_yoast_wpseo_title','%%title%% %%page%% %%sitename%%: El sitio donde publicamos nuestras novedades'),(703,105,'_yoast_wpseo_metadesc','En el blog de Ingivision tratamos temas de interés para el sector, novedades, eventos y mucha información de interés. ¡Te leemos dentro!'),(704,105,'_yoast_wpseo_linkdex','49'),(705,106,'_yoast_wpseo_title','Contact us. In this company the boss picks up the phone - ingivision'),(706,106,'_yoast_wpseo_metadesc','If you have any questions about our electronic calibration system, contact us! We will be happy to help you'),(707,200,'idioma','Ingles'),(708,200,'_idioma','field_5b02f1f144ec1'),(709,102,'_yoast_wpseo_focuskw','Cookies policy'),(710,102,'_yoast_wpseo_title','Cookies policy: why do we use cookies?%%sep%% %%sitename%%'),(711,102,'_yoast_wpseo_metadesc','We like cookies! And not only those for eating. We use cookies to improve navigation. We tell you what this consists of.'),(712,102,'_yoast_wpseo_linkdex','56'),(713,201,'idioma','Ingles'),(714,201,'_idioma','field_5b02f1f144ec1'),(715,101,'_yoast_wpseo_focuskw','Legal notice ingivision'),(716,101,'_yoast_wpseo_title','Legal notice: all the information at your disposal %%sep%% %%sitename%%'),(717,101,'_yoast_wpseo_metadesc','In this space we explain you all the information related to the legal terms and conditions we establish as a responsible for the web.'),(718,101,'_yoast_wpseo_linkdex','56'),(719,202,'idioma','Ingles'),(720,202,'_idioma','field_5b02f1f144ec1'),(721,100,'_yoast_wpseo_focuskw','Privacy Policy Ingivision'),(722,100,'_yoast_wpseo_title','Privacy policy: Consult it for your peace of mind %%sep%% %%sitename%%'),(723,100,'_yoast_wpseo_metadesc','If you want to know why we collect data, what we do with it and how you can modify it, check our privacy policy now.'),(724,100,'_yoast_wpseo_linkdex','50'),(725,108,'_yoast_wpseo_focuskw','fruit grading electronics'),(726,108,'_yoast_wpseo_title','Fruit grading electronics: Our three products %%sep%% %%sitename%%'),(727,108,'_yoast_wpseo_metadesc','Ingisorter, Ingisorter Plus and Ingigrader: from the most competitive product to an artificial intelligence one'),(728,108,'_yoast_wpseo_linkdex','38'),(729,110,'_yoast_wpseo_focuskw','fruit grading'),(730,110,'_yoast_wpseo_title','Fruit grading with Ingisorter, our low cost easy drive software - Ingivision'),(731,110,'_yoast_wpseo_metadesc','A competitive electronic program for fruit grading. Analyze weight, size and color with high performance. Take a look.'),(732,110,'_yoast_wpseo_linkdex','46'),(733,203,'_edit_lock','1605780591:1'),(734,203,'_oembed_55a36cb4037d17a0f8f43557ff908d2c','{{unknown}}'),(735,203,'_edit_last','1'),(736,203,'idioma','Castellano'),(737,203,'_idioma','field_5b02f1f144ec1'),(738,204,'idioma','Castellano'),(739,204,'_idioma','field_5b02f1f144ec1'),(740,203,'_yoast_wpseo_content_score','90'),(741,206,'idioma','Castellano'),(742,206,'_idioma','field_5b02f1f144ec1'),(743,207,'idioma','Castellano'),(744,207,'_idioma','field_5b02f1f144ec1'),(745,208,'idioma','Castellano'),(746,208,'_idioma','field_5b02f1f144ec1'),(747,209,'idioma','Castellano'),(748,209,'_idioma','field_5b02f1f144ec1'),(749,210,'idioma','Castellano'),(750,210,'_idioma','field_5b02f1f144ec1'),(751,211,'idioma','Castellano'),(752,211,'_idioma','field_5b02f1f144ec1'),(753,212,'idioma','Castellano'),(754,212,'_idioma','field_5b02f1f144ec1'),(755,203,'_yoast_wpseo_focuskw','Fruit Logistica 2021'),(756,203,'_yoast_wpseo_metadesc','Conoce los detalles y nuestro punto de vista sobre el evento internacional más importante del sector hortofutícola: Fruit Logistica'),(757,203,'_yoast_wpseo_linkdex','59'),(758,203,'_yoast_wpseo_title','Fruit Logistica 2021 ¿cómo será el evento? - Ingivision'),(767,213,'idioma','Castellano'),(768,213,'_idioma','field_5b02f1f144ec1'),(771,214,'idioma','Castellano'),(772,214,'_idioma','field_5b02f1f144ec1'),(773,215,'_wp_attached_file','2020/09/WhatsApp-Image-2020-09-15-at-12.01.06.jpeg'),(774,215,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:50:\"2020/09/WhatsApp-Image-2020-09-15-at-12.01.06.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.06-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"WhatsApp-Image-2020-09-15-at-12.01.06-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.06-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.06-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.01.06-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.06-770x440.jpeg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.06-500x370.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(777,216,'idioma','Castellano'),(778,216,'_idioma','field_5b02f1f144ec1'),(785,217,'idioma','Castellano'),(786,217,'_idioma','field_5b02f1f144ec1'),(787,218,'_wp_attached_file','2020/09/WhatsApp-Image-2020-09-15-at-12.00.51.jpeg'),(788,218,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:50:\"2020/09/WhatsApp-Image-2020-09-15-at-12.00.51.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.00.51-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"WhatsApp-Image-2020-09-15-at-12.00.51-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.00.51-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.00.51-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.00.51-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.00.51-770x440.jpeg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.00.51-500x370.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(789,219,'_wp_attached_file','2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg'),(790,219,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:52:\"2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.01.06-1-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:53:\"WhatsApp-Image-2020-09-15-at-12.01.06-1-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.01.06-1-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.01.06-1-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:54:\"WhatsApp-Image-2020-09-15-at-12.01.06-1-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.01.06-1-770x440.jpeg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.01.06-1-500x370.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(791,220,'_wp_attached_file','2020/09/WhatsApp-Image-2020-09-15-at-12.01.05.jpeg'),(792,220,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1600;s:6:\"height\";i:1200;s:4:\"file\";s:50:\"2020/09/WhatsApp-Image-2020-09-15-at-12.01.05.jpeg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.05-300x225.jpeg\";s:5:\"width\";i:300;s:6:\"height\";i:225;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:51:\"WhatsApp-Image-2020-09-15-at-12.01.05-1024x768.jpeg\";s:5:\"width\";i:1024;s:6:\"height\";i:768;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.05-150x150.jpeg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.05-768x576.jpeg\";s:5:\"width\";i:768;s:6:\"height\";i:576;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:52:\"WhatsApp-Image-2020-09-15-at-12.01.05-1536x1152.jpeg\";s:5:\"width\";i:1536;s:6:\"height\";i:1152;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.05-770x440.jpeg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:50:\"WhatsApp-Image-2020-09-15-at-12.01.05-500x370.jpeg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(796,221,'idioma','Castellano'),(797,221,'_idioma','field_5b02f1f144ec1'),(803,222,'idioma','Castellano'),(804,222,'_idioma','field_5b02f1f144ec1'),(805,219,'_wp_attachment_image_alt','ingivision en Fruit Logistica 2020'),(809,223,'idioma','Castellano'),(810,223,'_idioma','field_5b02f1f144ec1'),(814,224,'idioma','Castellano'),(815,224,'_idioma','field_5b02f1f144ec1'),(819,203,'_yoast_wpseo_opengraph-image','https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg'),(820,203,'_yoast_wpseo_opengraph-image-id','219'),(827,203,'_thumbnail_id','219'),(828,203,'_yoast_wpseo_primary_category','1'),(831,227,'idioma','Castellano'),(832,227,'_idioma','field_5b02f1f144ec1'),(835,228,'idioma','Castellano'),(836,228,'_idioma','field_5b02f1f144ec1'),(837,229,'_email','info@admirae.es'),(838,229,'_name','admirae360'),(839,229,'_props','a:2:{s:10:\"first_name\";s:0:\"\";s:9:\"last_name\";s:0:\"\";}'),(840,229,'_last_contacted','2020-09-20 17:54:02'),(841,39,'_flamingo','a:1:{s:7:\"channel\";i:14;}'),(919,236,'_email','franmur@gmail.com'),(920,236,'_name','paco'),(921,236,'_props','a:0:{}'),(922,236,'_last_contacted','2020-10-28 19:01:06'),(940,238,'_email','no-replyKr@gmail.com'),(941,238,'_name','JoshuaKer'),(942,238,'_props','a:0:{}'),(943,238,'_last_contacted','2020-09-20 19:48:46'),(980,241,'_email','example@example.com'),(981,241,'_name','your-name'),(982,241,'_props','a:0:{}'),(983,241,'_last_contacted','2020-09-20 20:45:31'),(1119,251,'idioma','Castellano'),(1120,251,'_idioma','field_5b02f1f144ec1'),(1828,111,'_yoast_wpseo_focuskw','Fruit Grading Electronic Kit'),(1829,111,'_yoast_wpseo_title','Fruit Grading Electronic Kit: every thing you need %%sep%% %%sitename%%'),(1830,111,'_yoast_wpseo_linkdex','42'),(1831,111,'_yoast_wpseo_metadesc','With our software we will install the kit of all harware you neeD: Industrial computerIR and Visible camerasLED, IR, cards, electromagne etc'),(1832,109,'_yoast_wpseo_focuskw','Advanced software for fruit grading system'),(1833,109,'_yoast_wpseo_title','Advanced software for fruit grading system%%sep%% %%sitename%%'),(1834,109,'_yoast_wpseo_metadesc','If you are looking for a software for fruit grading system yoy have to work with ingrigrader, artificial intelligence for grading machines'),(1835,109,'_yoast_wpseo_linkdex','38'),(1855,298,'idioma','Ingles'),(1856,298,'_idioma','field_5b02f1f144ec1'),(1857,103,'_yoast_wpseo_focuskw','Retrofitting service'),(1858,103,'_yoast_wpseo_title','Retrofitting service: software for any type of machine %%sep%% %%sitename%%'),(1859,103,'_yoast_wpseo_metadesc','Electronic upgrades will allow you to receive the benefits of our grading software without having to invest in replacing your current machine'),(1860,103,'_yoast_wpseo_linkdex','34'),(1861,104,'_yoast_wpseo_focuskw','Improving your fruit sorting system'),(1862,104,'_yoast_wpseo_title','Improving your fruit sorting system. Why choose us? %%sep%% %%sitename%%'),(1863,104,'_yoast_wpseo_metadesc','Our goal is to optimize the operation of the product classification stage. Our systems are adaptable to any existing machinery.'),(1864,104,'_yoast_wpseo_linkdex','38'),(6215,561,'_email','eugacemu@gmail.com'),(6216,561,'_name','Eugenio Acevedo'),(6217,561,'_props','a:0:{}'),(6218,561,'_last_contacted','2020-10-13 17:10:53'),(6219,562,'_submission_status','mail_sent'),(6220,562,'_subject','Presupuesto'),(6221,562,'_from','Eugenio Acevedo <eugacemu@gmail.com>'),(6222,562,'_from_name','Eugenio Acevedo'),(6223,562,'_from_email','eugacemu@gmail.com'),(6224,562,'_field_your-name','Eugenio Acevedo'),(6225,562,'_field_your-email','eugacemu@gmail.com'),(6226,562,'_field_telefono','+57 3146108171'),(6227,562,'_field_your-subject','Presupuesto'),(6228,562,'_field_mensaje','Hola Vicente, no sé si me recuerdas, soy Eugenio Acevedo, nos conocimos a través de Danilo Bastoni.\r\nEspero que te encuentres muy bien, al igual que toda tu familia.\r\n\r\nLo que pasa es que tengo un cliente interesado en una maquina para clasificar tomate cherry en tres tamaños y tres colores cada tamaño. quería saber si puedes cotizarme la electronica para esto. Toda la maquina es de Danilo, asi que es la misma maquina que he visto por ahí en tus videos.\r\nSería 9 + 1 salidas.\r\n\r\nNecesito pasarle el presupuesto a mi cliente lo mas rapido posible.\r\n\r\nYo ya no trabajo para agrosermaq, ahora tengo mi propia empresa, se llama Eutech SAS.\r\n\r\nQuedo atento, \r\n\r\nHasta pronto.\r\n\r\n'),(6229,562,'_fields','a:5:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:8:\"Telefono\";N;s:12:\"your-subject\";N;s:7:\"mensaje\";N;}'),(6230,562,'_meta','a:19:{s:13:\"serial_number\";i:7;s:9:\"remote_ip\";s:14:\"191.95.154.197\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:21:\"13 de octubre de 2020\";s:4:\"time\";s:5:\"17:10\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(6231,562,'_akismet',NULL),(6232,562,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-10-13T17:00:42Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(6233,562,'_spam_log','a:0:{}'),(6234,562,'_consent','a:0:{}'),(6235,562,'_hash','80f11027b180f1579317f0d20511552e'),(6510,577,'idioma','Castellano'),(6511,577,'_idioma','field_5b02f1f144ec1'),(6594,582,'_edit_lock','1605777522:1'),(6614,582,'_edit_last','1'),(6615,582,'idioma','Castellano'),(6616,582,'_idioma','field_5b02f1f144ec1'),(6617,584,'idioma','Castellano'),(6618,584,'_idioma','field_5b02f1f144ec1'),(6619,582,'_yoast_wpseo_content_score','90'),(6620,582,'_yoast_wpseo_focuskw','Software clasificación de frutas'),(6621,582,'_yoast_wpseo_title','Software clasificación de frutas: ¿por qué es necesario? %%sep%% %%sitename%%'),(6622,582,'_yoast_wpseo_metadesc','Te contamos en palábras sencillas por qué necesitas un software clasificación de frutas y sus tres principales beneficios.'),(6623,582,'_yoast_wpseo_linkdex','75'),(6624,585,'_wp_attached_file','2020/10/ingi-sorter-plus.jpg'),(6625,585,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:437;s:6:\"height\";i:213;s:4:\"file\";s:28:\"2020/10/ingi-sorter-plus.jpg\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:28:\"ingi-sorter-plus-300x146.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:146;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:28:\"ingi-sorter-plus-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6626,585,'_wp_attachment_image_alt','Software de clasificación de frutas ingivision'),(6627,582,'_thumbnail_id','586'),(6628,586,'_wp_attached_file','2020/10/software-clasificacion-frutas.jpg'),(6629,586,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:810;s:4:\"file\";s:41:\"2020/10/software-clasificacion-frutas.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"software-clasificacion-frutas-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"software-clasificacion-frutas-1024x438.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"software-clasificacion-frutas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"software-clasificacion-frutas-768x328.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"software-clasificacion-frutas-1536x657.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:41:\"software-clasificacion-frutas-770x440.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:41:\"software-clasificacion-frutas-500x370.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(6630,586,'_wp_attachment_image_alt','Software de clasificación de frutas ingivision'),(8338,682,'_edit_lock','1613559266:1'),(8339,682,'_wp_page_template','11-trabajos.php'),(8340,682,'_edit_last','1'),(8341,682,'idioma','Castellano'),(8342,682,'_idioma','field_5b02f1f144ec1'),(8343,683,'idioma','Castellano'),(8344,683,'_idioma','field_5b02f1f144ec1'),(8345,682,'_yoast_wpseo_content_score','90'),(8369,686,'idioma','Castellano'),(8370,686,'_idioma','field_5b02f1f144ec1'),(8371,687,'idioma','Castellano'),(8372,687,'_idioma','field_5b02f1f144ec1'),(8373,688,'idioma','Castellano'),(8374,688,'_idioma','field_5b02f1f144ec1'),(8375,689,'idioma','Castellano'),(8376,689,'_idioma','field_5b02f1f144ec1'),(8377,690,'idioma','Castellano'),(8378,690,'_idioma','field_5b02f1f144ec1'),(8379,691,'idioma','Castellano'),(8380,691,'_idioma','field_5b02f1f144ec1'),(8381,693,'idioma','Castellano'),(8382,693,'_idioma','field_5b02f1f144ec1'),(8383,694,'idioma','Castellano'),(8384,694,'_idioma','field_5b02f1f144ec1'),(9980,826,'_edit_lock','1603910832:1'),(9981,826,'_edit_last','1'),(9982,826,'idioma','Ingles'),(9983,826,'_idioma','field_5b02f1f144ec1'),(9984,827,'idioma','Castellano'),(9985,827,'_idioma','field_5b02f1f144ec1'),(9986,826,'_yoast_wpseo_content_score','90'),(9987,829,'idioma','Castellano'),(9988,829,'_idioma','field_5b02f1f144ec1'),(9989,831,'idioma','Castellano'),(9990,831,'_idioma','field_5b02f1f144ec1'),(10012,833,'idioma','Castellano'),(10013,833,'_idioma','field_5b02f1f144ec1'),(10014,834,'idioma','Castellano'),(10015,834,'_idioma','field_5b02f1f144ec1'),(10016,826,'_wp_page_template','12-Ofertatrabajo.php'),(10017,835,'idioma','Castellano'),(10018,835,'_idioma','field_5b02f1f144ec1'),(10019,836,'idioma','Ingles'),(10020,836,'_idioma','field_5b02f1f144ec1'),(10021,839,'idioma','Ingles'),(10022,839,'_idioma','field_5b02f1f144ec1'),(10023,841,'idioma','Ingles'),(10024,841,'_idioma','field_5b02f1f144ec1'),(10025,843,'idioma','Ingles'),(10026,843,'_idioma','field_5b02f1f144ec1'),(10027,845,'idioma','Ingles'),(10028,845,'_idioma','field_5b02f1f144ec1'),(10029,847,'idioma','Ingles'),(10030,847,'_idioma','field_5b02f1f144ec1'),(10031,849,'idioma','Ingles'),(10032,849,'_idioma','field_5b02f1f144ec1'),(10033,851,'idioma','Ingles'),(10034,851,'_idioma','field_5b02f1f144ec1'),(10523,877,'_email','vmribera@ingivision.com'),(10524,877,'_name','Vicente Ribera'),(10525,877,'_props','a:0:{}'),(10526,877,'_last_contacted','2020-10-28 16:31:20'),(10527,878,'_submission_status','mail_sent'),(10528,878,'_subject','Prueba'),(10529,878,'_from','Vicente Ribera <vmribera@ingivision.com>'),(10530,878,'_from_name','Vicente Ribera'),(10531,878,'_from_email','vmribera@ingivision.com'),(10532,878,'_field_your-name','Vicente Ribera'),(10533,878,'_field_your-email','vmribera@ingivision.com'),(10534,878,'_field_telefono','722125603'),(10535,878,'_field_your-subject','Prueba'),(10536,878,'_field_mensaje','Prueba'),(10537,878,'_fields','a:5:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:8:\"Telefono\";N;s:12:\"your-subject\";N;s:7:\"mensaje\";N;}'),(10538,878,'_meta','a:19:{s:13:\"serial_number\";i:2;s:9:\"remote_ip\";s:14:\"93.175.240.244\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:21:\"28 de octubre de 2020\";s:4:\"time\";s:5:\"16:31\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(10539,878,'_akismet',NULL),(10540,878,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-10-28T16:30:56Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(10541,878,'_spam_log','a:0:{}'),(10542,878,'_consent','a:0:{}'),(10543,878,'_hash','917cc9da8d270fbf1b2e0433a47a1a92'),(10574,879,'_form','<p class=\"comment-form-author\"><!-- <label>Nombre*</label> -->[text* your-name placeholder \"Nombre\"]</p>\n<p class=\"comment-form-email\"><!-- <label>Email *</label> -->[email* your-email placeholder \"Email\"]</p>\n<p class=\"comment-form-author\"><!-- <label>Name *</label> -->[text* your-telefono placeholder \"Teléfono\"]</p>\n <div class=\"clearfix\"></div>\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->[textarea* your-message placeholder \"Mensaje\"]</p>\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->Adjunta tu curriculum [file* file-580 limit:2mb filetypes:pdf]</p>\n <div class=\"clearfix\"></div>\n<div class=\"spacer\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\" style=\"height: 50px;\"></div>\n<div class=\"flat-contact\"><p class=\"submit-form\">[submit class:btn class:btn-normal class:btn-md \"Enviar curriculum\"]</p></div>'),(10575,879,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:25:\"Alta en oferta de trabajo\";s:6:\"sender\";s:38:\"Ingivision <ingivision@ingivision.com>\";s:9:\"recipient\";s:25:\"ingivision@ingivision.com\";s:4:\"body\";s:104:\"De: [your-name] <[your-email]>\nTelefono: [your-telefono]\nMensaje: [your-message]\n\nCurriculum:\n[file-580]\";s:18:\"additional_headers\";s:18:\"Cc:info@admirae.es\";s:11:\"attachments\";s:10:\"[file-580]\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(10576,879,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:32:\"[_site_title] «[your-subject]»\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@ingivision.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:129:\"Cuerpo del mensaje:\n[your-message]\n\n-- \nEste mensaje se ha enviado desde un formulario de contacto en [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(10577,879,'_messages','a:22:{s:12:\"mail_sent_ok\";s:40:\"Gracias por tu mensaje. Ha sido enviado.\";s:12:\"mail_sent_ng\";s:94:\"Ha ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\";s:16:\"validation_error\";s:79:\"Uno o más campos tienen un error. Por favor, revísalos e inténtalo de nuevo.\";s:4:\"spam\";s:94:\"Ha ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\";s:12:\"accept_terms\";s:69:\"Debes aceptar los términos y condiciones antes de enviar tu mensaje.\";s:16:\"invalid_required\";s:24:\"El campo es obligatorio.\";s:16:\"invalid_too_long\";s:28:\"El campo es demasiado largo.\";s:17:\"invalid_too_short\";s:28:\"El campo es demasiado corto.\";s:12:\"invalid_date\";s:34:\"El formato de fecha es incorrecto.\";s:14:\"date_too_early\";s:50:\"La fecha es anterior a la más temprana permitida.\";s:13:\"date_too_late\";s:50:\"La fecha es posterior a la más tardía permitida.\";s:13:\"upload_failed\";s:53:\"Ha ocurrido un error desconocido al subir el archivo.\";s:24:\"upload_file_type_invalid\";s:52:\"No tienes permisos para subir archivos de este tipo.\";s:21:\"upload_file_too_large\";s:31:\"El archivo es demasiado grande.\";s:23:\"upload_failed_php_error\";s:41:\"Ha ocurrido un error al subir el archivo.\";s:14:\"invalid_number\";s:36:\"El formato de número no es válido.\";s:16:\"number_too_small\";s:45:\"El número es menor que el mínimo permitido.\";s:16:\"number_too_large\";s:45:\"El número es mayor que el máximo permitido.\";s:23:\"quiz_answer_not_correct\";s:44:\"La respuesta al cuestionario no es correcta.\";s:13:\"invalid_email\";s:71:\"La dirección de correo electrónico que has introducido no es válida.\";s:11:\"invalid_url\";s:21:\"La URL no es válida.\";s:11:\"invalid_tel\";s:38:\"El número de teléfono no es válido.\";}'),(10578,879,'_additional_settings',''),(10579,879,'_locale','es_ES'),(10621,236,'_wp_old_date','2020-09-20'),(10622,879,'_flamingo','a:1:{s:7:\"channel\";i:15;}'),(10623,882,'_submission_status','mail_sent'),(10624,882,'_subject','[your-subject]'),(10625,882,'_from','Francisco Murciano Gomez <franmur@gmail.com>'),(10626,882,'_from_name','Francisco Murciano Gomez'),(10627,882,'_from_email','franmur@gmail.com'),(10628,882,'_field_your-name','Francisco Murciano Gomez'),(10629,882,'_field_your-email','franmur@gmail.com'),(10630,882,'_field_your-telefono','678514993'),(10631,882,'_field_your-message','no se'),(10632,882,'_field_file-580',''),(10633,882,'_fields','a:5:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:13:\"your-telefono\";N;s:12:\"your-message\";N;s:8:\"file-580\";N;}'),(10634,882,'_meta','a:19:{s:13:\"serial_number\";i:1;s:9:\"remote_ip\";s:12:\"88.3.230.208\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\";s:3:\"url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:4:\"date\";s:21:\"28 de octubre de 2020\";s:4:\"time\";s:5:\"18:48\";s:7:\"post_id\";s:3:\"826\";s:9:\"post_name\";s:28:\"computer-electronic-engineer\";s:10:\"post_title\";s:4:\"Jobs\";s:8:\"post_url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(10635,882,'_akismet',NULL),(10636,882,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-10-28T18:48:05Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:8:\"homepage\";}}'),(10637,882,'_spam_log','a:0:{}'),(10638,882,'_consent','a:0:{}'),(10639,882,'_hash','c9d25dd535ea2354b4d1cc8ebe58bfde'),(10640,884,'_submission_status','mail_sent'),(10641,884,'_subject','[your-subject]'),(10642,884,'_from','Francisco Murciano Gomez <franmur@gmail.com>'),(10643,884,'_from_name','Francisco Murciano Gomez'),(10644,884,'_from_email','franmur@gmail.com'),(10645,884,'_field_your-name','Francisco Murciano Gomez'),(10646,884,'_field_your-email','franmur@gmail.com'),(10647,884,'_field_your-telefono','678514993'),(10648,884,'_field_your-message','prueba'),(10649,884,'_field_file-580','852d5e64a6bb34b35d599d2e01824b3e'),(10650,884,'_fields','a:5:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:13:\"your-telefono\";N;s:12:\"your-message\";N;s:8:\"file-580\";N;}'),(10651,884,'_meta','a:19:{s:13:\"serial_number\";i:2;s:9:\"remote_ip\";s:12:\"88.3.230.208\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\";s:3:\"url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:4:\"date\";s:21:\"28 de octubre de 2020\";s:4:\"time\";s:5:\"19:01\";s:7:\"post_id\";s:3:\"826\";s:9:\"post_name\";s:28:\"computer-electronic-engineer\";s:10:\"post_title\";s:4:\"Jobs\";s:8:\"post_url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(10652,884,'_akismet',NULL),(10653,884,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-10-28T19:00:13Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(10654,884,'_spam_log','a:0:{}'),(10655,884,'_consent','a:0:{}'),(10656,884,'_hash','50be92c7ed1562d7e780a570611f9610'),(10695,887,'_yoast_wpseo_content_score','90'),(10696,887,'_wp_page_template','08-Servicios.php'),(10697,887,'idioma','Castellano'),(10698,887,'_idioma','field_5b02f1f144ec1'),(10699,887,'_yoast_wpseo_focuskw','Retrofit para calibradores'),(10700,887,'_yoast_wpseo_title','Retrofit para calibradores, un servicio que te ahorra costes %%sep%% %%sitename%%'),(10701,887,'_yoast_wpseo_metadesc','La maquinaria hortofrutícola nueva tiene elevados costes. Nuestro software puede instalarse en cualquier calibrador, tenga los años que tenga'),(10702,887,'_yoast_wpseo_linkdex','39'),(10703,887,'_dp_original','31'),(10704,887,'_edit_lock','1605294018:1'),(10705,887,'_edit_last','1'),(10706,888,'idioma','Castellano'),(10707,888,'_idioma','field_5b02f1f144ec1'),(10708,889,'idioma','Castellano'),(10709,889,'_idioma','field_5b02f1f144ec1'),(10710,890,'idioma','Castellano'),(10711,890,'_idioma','field_5b02f1f144ec1'),(11802,924,'_edit_lock','1610974223:1'),(11803,924,'_edit_last','1'),(11804,924,'idioma','Castellano'),(11805,924,'_idioma','field_5b02f1f144ec1'),(11806,925,'idioma','Castellano'),(11807,925,'_idioma','field_5b02f1f144ec1'),(11808,926,'_edit_lock','1610974280:1'),(11809,926,'_edit_last','1'),(11810,926,'idioma','Castellano'),(11811,926,'_idioma','field_5b02f1f144ec1'),(11812,927,'idioma','Castellano'),(11813,927,'_idioma','field_5b02f1f144ec1'),(11820,930,'_edit_lock','1610974357:1'),(11821,930,'_edit_last','1'),(11822,930,'idioma','Castellano'),(11823,930,'_idioma','field_5b02f1f144ec1'),(11824,931,'idioma','Castellano'),(11825,931,'_idioma','field_5b02f1f144ec1'),(11826,932,'_edit_lock','1610974382:1'),(11827,932,'_edit_last','1'),(11828,932,'idioma','Castellano'),(11829,932,'_idioma','field_5b02f1f144ec1'),(11830,933,'idioma','Castellano'),(11831,933,'_idioma','field_5b02f1f144ec1'),(11832,934,'_edit_lock','1610974426:1'),(11833,934,'_edit_last','1'),(11834,934,'idioma','Castellano'),(11835,934,'_idioma','field_5b02f1f144ec1'),(11836,935,'idioma','Castellano'),(11837,935,'_idioma','field_5b02f1f144ec1'),(11838,936,'_edit_lock','1610974384:1'),(11839,936,'_edit_last','1'),(11840,936,'idioma','Castellano'),(11841,936,'_idioma','field_5b02f1f144ec1'),(11842,937,'idioma','Castellano'),(11843,937,'_idioma','field_5b02f1f144ec1'),(11850,940,'_edit_lock','1610974405:1'),(11851,940,'_edit_last','1'),(11852,940,'idioma','Castellano'),(11853,940,'_idioma','field_5b02f1f144ec1'),(11854,941,'idioma','Castellano'),(11855,941,'_idioma','field_5b02f1f144ec1'),(11856,942,'_edit_lock','1610974402:1'),(11857,942,'_edit_last','1'),(11858,942,'idioma','Castellano'),(11859,942,'_idioma','field_5b02f1f144ec1'),(11860,943,'idioma','Castellano'),(11861,943,'_idioma','field_5b02f1f144ec1'),(11862,944,'_edit_lock','1610974308:1'),(11863,944,'_edit_last','1'),(11864,944,'idioma','Castellano'),(11865,944,'_idioma','field_5b02f1f144ec1'),(11866,945,'idioma','Castellano'),(11867,945,'_idioma','field_5b02f1f144ec1'),(11868,946,'_edit_lock','1610974351:1'),(11869,946,'_edit_last','1'),(11870,946,'idioma','Castellano'),(11871,946,'_idioma','field_5b02f1f144ec1'),(11872,947,'idioma','Castellano'),(11873,947,'_idioma','field_5b02f1f144ec1'),(11874,948,'_edit_lock','1610974286:1'),(11875,948,'_edit_last','1'),(11876,948,'idioma','Castellano'),(11877,948,'_idioma','field_5b02f1f144ec1'),(11878,949,'idioma','Castellano'),(11879,949,'_idioma','field_5b02f1f144ec1'),(11880,950,'_edit_lock','1610974330:1'),(11881,950,'_edit_last','1'),(11882,950,'idioma','Castellano'),(11883,950,'_idioma','field_5b02f1f144ec1'),(11884,951,'idioma','Castellano'),(11885,951,'_idioma','field_5b02f1f144ec1'),(11886,952,'_edit_lock','1610974313:1'),(11887,952,'_edit_last','1'),(11888,952,'idioma','Castellano'),(11889,952,'_idioma','field_5b02f1f144ec1'),(11890,953,'idioma','Castellano'),(11891,953,'_idioma','field_5b02f1f144ec1'),(11892,954,'_edit_lock','1610974447:1'),(11893,954,'_edit_last','1'),(11894,954,'idioma','Castellano'),(11895,954,'_idioma','field_5b02f1f144ec1'),(11896,955,'idioma','Castellano'),(11897,955,'_idioma','field_5b02f1f144ec1'),(11898,956,'_edit_lock','1610974387:1'),(11899,956,'_edit_last','1'),(11900,956,'idioma','Castellano'),(11901,956,'_idioma','field_5b02f1f144ec1'),(11902,957,'idioma','Castellano'),(11903,957,'_idioma','field_5b02f1f144ec1'),(11904,958,'_edit_lock','1610974429:1'),(11905,958,'_edit_last','1'),(11906,958,'idioma','Castellano'),(11907,958,'_idioma','field_5b02f1f144ec1'),(11908,959,'idioma','Castellano'),(11909,959,'_idioma','field_5b02f1f144ec1'),(11910,960,'_edit_lock','1610974423:1'),(11911,960,'_edit_last','1'),(11912,960,'idioma','Castellano'),(11913,960,'_idioma','field_5b02f1f144ec1'),(11914,961,'idioma','Castellano'),(11915,961,'_idioma','field_5b02f1f144ec1'),(11916,962,'_edit_lock','1610974310:1'),(11917,962,'_edit_last','1'),(11918,962,'idioma','Castellano'),(11919,962,'_idioma','field_5b02f1f144ec1'),(11920,963,'idioma','Castellano'),(11921,963,'_idioma','field_5b02f1f144ec1'),(11922,964,'_edit_lock','1610974283:1'),(11923,964,'_edit_last','1'),(11924,964,'idioma','Castellano'),(11925,964,'_idioma','field_5b02f1f144ec1'),(11926,965,'idioma','Castellano'),(11927,965,'_idioma','field_5b02f1f144ec1'),(11928,966,'_edit_lock','1610974333:1'),(11929,966,'_edit_last','1'),(11930,966,'idioma','Castellano'),(11931,966,'_idioma','field_5b02f1f144ec1'),(11932,967,'idioma','Castellano'),(11933,967,'_idioma','field_5b02f1f144ec1'),(11934,968,'_edit_lock','1610974336:1'),(11999,971,'idioma','Castellano'),(12000,971,'_idioma','field_5b02f1f144ec1'),(12001,926,'_yoast_wpseo_content_score','90'),(12005,972,'idioma','Castellano'),(12006,972,'_idioma','field_5b02f1f144ec1'),(12007,926,'_yoast_wpseo_focuskw','Software de clasificación para naranjas y mandarinas'),(12008,926,'_yoast_wpseo_title','Software de clasificación para naranjas y mandarinas %%sep%% %%sitename%%'),(12009,926,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para naranjas y mandarinas. Clasifica naranjas y mandarinas por color, tamaño y peso'),(12010,926,'_yoast_wpseo_linkdex','67'),(12011,973,'idioma','Castellano'),(12012,973,'_idioma','field_5b02f1f144ec1'),(12013,974,'idioma','Castellano'),(12014,974,'_idioma','field_5b02f1f144ec1'),(12015,975,'idioma','Castellano'),(12016,975,'_idioma','field_5b02f1f144ec1'),(12017,976,'idioma','Castellano'),(12018,976,'_idioma','field_5b02f1f144ec1'),(12019,930,'_yoast_wpseo_focuskw','Software de clasificación para limones'),(12020,930,'_yoast_wpseo_title','Software de clasificación para limones, limas y otros cítricos %%sep%% %%sitename%%'),(12021,930,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para limones. Clasifica limones por color, tamaño y peso'),(12022,930,'_yoast_wpseo_linkdex','50'),(12023,930,'_yoast_wpseo_content_score','90'),(12024,977,'idioma','Castellano'),(12025,977,'_idioma','field_5b02f1f144ec1'),(12026,932,'_yoast_wpseo_content_score','90'),(12027,932,'_yoast_wpseo_focuskw','Software de clasificación para manzanas'),(12028,932,'_yoast_wpseo_title','Software de clasificación para manzanas de cualquier variedad %%sep%% %%sitename%%'),(12029,932,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para manzanas de cualquier variedad. Clasifica manzanas por color, tamaño y peso.'),(12030,932,'_yoast_wpseo_linkdex','52'),(12031,978,'idioma','Castellano'),(12032,978,'_idioma','field_5b02f1f144ec1'),(12033,979,'idioma','Castellano'),(12034,979,'_idioma','field_5b02f1f144ec1'),(12035,980,'idioma','Castellano'),(12036,980,'_idioma','field_5b02f1f144ec1'),(12037,936,'_yoast_wpseo_content_score','90'),(12038,936,'_yoast_wpseo_focuskw','Software de clasificación para melocotones'),(12039,936,'_yoast_wpseo_title','Software de clasificación para melocotones %%sep%% %%sitename%%'),(12040,936,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para melocotones y otras frutas de hueso. Clasifica por color, tamaño y peso.'),(12041,936,'_yoast_wpseo_linkdex','52'),(12042,981,'idioma','Castellano'),(12043,981,'_idioma','field_5b02f1f144ec1'),(12044,982,'idioma','Castellano'),(12045,982,'_idioma','field_5b02f1f144ec1'),(12046,934,'_yoast_wpseo_focuskw','Software de clasificación para peras'),(12047,934,'_yoast_wpseo_linkdex','48'),(12048,934,'_yoast_wpseo_content_score','90'),(12049,934,'_yoast_wpseo_title','Software de clasificación de peras de cualquier variedad %%sep%% %%sitename%%'),(12050,934,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para peras. Clasifica peras por color, tamaño y peso'),(12051,983,'idioma','Castellano'),(12052,983,'_idioma','field_5b02f1f144ec1'),(12053,984,'idioma','Castellano'),(12054,984,'_idioma','field_5b02f1f144ec1'),(12055,948,'_yoast_wpseo_content_score','90'),(12056,948,'_yoast_wpseo_focuskw','Software de clasificación para aguacates'),(12057,948,'_yoast_wpseo_title','Software de clasificación para aguacates %%sep%% %%sitename%%'),(12058,948,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para aguacates. Clasifica aguacates por color, tamaño y peso'),(12059,948,'_yoast_wpseo_linkdex','54'),(12060,985,'idioma','Castellano'),(12061,985,'_idioma','field_5b02f1f144ec1'),(12062,986,'idioma','Castellano'),(12063,986,'_idioma','field_5b02f1f144ec1'),(12064,987,'idioma','Castellano'),(12065,987,'_idioma','field_5b02f1f144ec1'),(12066,944,'_yoast_wpseo_content_score','90'),(12067,988,'idioma','Castellano'),(12068,988,'_idioma','field_5b02f1f144ec1'),(12069,944,'_yoast_wpseo_focuskw','Software de clasificación para albaricoques'),(12070,944,'_yoast_wpseo_title','Software de clasificación para albaricoques %%sep%% %%sitename%%'),(12071,944,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para albaricoques. Clasifica albaricoques por color, tamaño y peso'),(12072,944,'_yoast_wpseo_linkdex','52'),(12073,989,'idioma','Castellano'),(12074,989,'_idioma','field_5b02f1f144ec1'),(12075,964,'_yoast_wpseo_content_score','90'),(12076,990,'idioma','Castellano'),(12077,990,'_idioma','field_5b02f1f144ec1'),(12078,964,'_yoast_wpseo_focuskw','Software de clasificación para berenjenas'),(12079,964,'_yoast_wpseo_title','Software de clasificación para berenjenas %%sep%% %%sitename%%'),(12080,964,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para berenjenas de cualquier variedad. Clasifica por color, tamaño y peso.'),(12081,964,'_yoast_wpseo_linkdex','54'),(12082,991,'idioma','Castellano'),(12083,991,'_idioma','field_5b02f1f144ec1'),(12084,992,'idioma','Castellano'),(12085,992,'_idioma','field_5b02f1f144ec1'),(12086,962,'_yoast_wpseo_content_score','90'),(12087,993,'idioma','Castellano'),(12088,993,'_idioma','field_5b02f1f144ec1'),(12089,962,'_yoast_wpseo_focuskw','Software de clasificación para calabacines'),(12090,962,'_yoast_wpseo_title','Software de clasificación para calabacines %%sep%% %%sitename%%'),(12091,962,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para berenjenas de cualquier variedad. Clasifica por color, tamaño y peso.'),(12092,962,'_yoast_wpseo_linkdex','48'),(12093,994,'idioma','Castellano'),(12094,994,'_idioma','field_5b02f1f144ec1'),(12095,995,'idioma','Castellano'),(12096,995,'_idioma','field_5b02f1f144ec1'),(12097,952,'_yoast_wpseo_focuskw','Software de clasificación para cerezas'),(12098,952,'_yoast_wpseo_linkdex','50'),(12099,952,'_yoast_wpseo_content_score','90'),(12100,996,'idioma','Castellano'),(12101,996,'_idioma','field_5b02f1f144ec1'),(12102,952,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para cerezas. Clasifica cerezas por color, tamaño y peso.'),(12103,997,'idioma','Castellano'),(12104,997,'_idioma','field_5b02f1f144ec1'),(12105,950,'_yoast_wpseo_content_score','90'),(12106,950,'_yoast_wpseo_focuskw','Software de clasificación para dátiles'),(12107,950,'_yoast_wpseo_title','Software de clasificación para dátiles de cualquier variedad %%sep%% %%sitename%%'),(12108,950,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para dátiles. Clasifica dátiles por color, tamaño y peso.'),(12109,950,'_yoast_wpseo_linkdex','50'),(12110,998,'idioma','Castellano'),(12111,998,'_idioma','field_5b02f1f144ec1'),(12112,952,'_yoast_wpseo_title','Software de clasificación para cerezas de cualqueir variedad %%sep%% %%sitename%%'),(12113,999,'idioma','Castellano'),(12114,999,'_idioma','field_5b02f1f144ec1'),(12115,966,'_yoast_wpseo_focuskw','Software de clasificación para granadas'),(12116,966,'_yoast_wpseo_title','Software de clasificación para granadas %%sep%% %%sitename%%'),(12117,966,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para granadas. Clasifica granadas por color, tamaño y peso.'),(12118,966,'_yoast_wpseo_linkdex','50'),(12119,966,'_yoast_wpseo_content_score','90'),(12120,1000,'idioma','Castellano'),(12121,1000,'_idioma','field_5b02f1f144ec1'),(12122,968,'_edit_last','1'),(12123,968,'idioma','Castellano'),(12124,968,'_idioma','field_5b02f1f144ec1'),(12125,1001,'idioma','Castellano'),(12126,1001,'_idioma','field_5b02f1f144ec1'),(12127,968,'_yoast_wpseo_focuskw','Software de clasificación para higos'),(12128,968,'_yoast_wpseo_title','Software de clasificación para higos de cualquier variedad %%sep%% %%sitename%%'),(12129,968,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para higos. Clasifica higos por color, tamaño y peso.'),(12130,968,'_yoast_wpseo_linkdex','50'),(12131,968,'_yoast_wpseo_content_score','90'),(12132,1002,'idioma','Castellano'),(12133,1002,'_idioma','field_5b02f1f144ec1'),(12134,946,'_yoast_wpseo_focuskw','Software de clasificación para kiwis'),(12135,946,'_yoast_wpseo_title','Software de clasificación para kiwis de todas las variedades %%sep%% %%sitename%%'),(12136,946,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para kiwis. Clasifica kiwis por color, tamaño y peso.'),(12137,946,'_yoast_wpseo_linkdex','54'),(12138,946,'_yoast_wpseo_content_score','90'),(12139,1003,'idioma','Castellano'),(12140,1003,'_idioma','field_5b02f1f144ec1'),(12141,1004,'idioma','Castellano'),(12142,1004,'_idioma','field_5b02f1f144ec1'),(12143,956,'_yoast_wpseo_focuskw','Software de clasificación para melones'),(12144,956,'_yoast_wpseo_title','Software de clasificación para melones %%sep%% %%sitename%%'),(12145,956,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para melones. Clasifica melones por color, tamaño y peso.'),(12146,956,'_yoast_wpseo_linkdex','50'),(12147,956,'_yoast_wpseo_content_score','90'),(12148,1005,'idioma','Castellano'),(12149,1005,'_idioma','field_5b02f1f144ec1'),(12150,942,'_yoast_wpseo_focuskw','Software de clasificación para nectarinas'),(12151,942,'_yoast_wpseo_title','Software de clasificación para nectarinas %%sep%% %%sitename%%'),(12152,942,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para nectarinas. Clasifica nectarinas por color, tamaño y peso.'),(12153,942,'_yoast_wpseo_linkdex','50'),(12154,942,'_yoast_wpseo_content_score','90'),(12155,1006,'idioma','Castellano'),(12156,1006,'_idioma','field_5b02f1f144ec1'),(12157,940,'_yoast_wpseo_focuskw','Software de clasificación para paraguayos'),(12158,940,'_yoast_wpseo_linkdex','50'),(12159,940,'_yoast_wpseo_content_score','90'),(12160,940,'_yoast_wpseo_title','Software de clasificación para paraguayos %%sep%% %%sitename%%'),(12161,940,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para paraguayos. Clasifica paraguayos por color, tamaño y peso.'),(12162,1007,'idioma','Castellano'),(12163,1007,'_idioma','field_5b02f1f144ec1'),(12164,960,'_yoast_wpseo_focuskw','Software de clasificación para pepinos'),(12165,960,'_yoast_wpseo_title','Software de clasificación para pepinos de cualquier variedad %%sep%% %%sitename%%'),(12166,960,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para pepinos. Clasifica pepinos por color, tamaño y peso.'),(12167,960,'_yoast_wpseo_linkdex','50'),(12168,960,'_yoast_wpseo_content_score','90'),(12169,1008,'idioma','Castellano'),(12170,1008,'_idioma','field_5b02f1f144ec1'),(12171,958,'_yoast_wpseo_focuskw','Software de clasificación para sandías'),(12172,958,'_yoast_wpseo_title','Software de clasificación para sandías de cualqueir variedad %%sep%% %%sitename%%'),(12173,958,'_yoast_wpseo_linkdex','50'),(12174,958,'_yoast_wpseo_content_score','90'),(12175,958,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para sandías. Clasifica sandías por color, tamaño y peso.'),(12176,1009,'idioma','Castellano'),(12177,1009,'_idioma','field_5b02f1f144ec1'),(12178,954,'_yoast_wpseo_focuskw','Software de clasificación para tomates'),(12179,954,'_yoast_wpseo_title','Software de clasificación para tomates de cualquier tipo %%sep%% %%sitename%%'),(12180,954,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para tomates de cualqueir variedad. Clasifica por color, tamaño y peso.'),(12181,954,'_yoast_wpseo_linkdex','52'),(12182,954,'_yoast_wpseo_content_score','90'),(12183,1010,'_edit_lock','1610974409:1'),(12184,1010,'_edit_last','1'),(12185,1010,'idioma','Castellano'),(12186,1010,'_idioma','field_5b02f1f144ec1'),(12187,1011,'idioma','Castellano'),(12188,1011,'_idioma','field_5b02f1f144ec1'),(12189,1012,'_edit_lock','1610974366:1'),(12190,1012,'_edit_last','1'),(12191,1012,'idioma','Castellano'),(12192,1012,'_idioma','field_5b02f1f144ec1'),(12193,1013,'idioma','Castellano'),(12194,1013,'_idioma','field_5b02f1f144ec1'),(12195,1014,'idioma','Castellano'),(12196,1014,'_idioma','field_5b02f1f144ec1'),(12197,1015,'idioma','Castellano'),(12198,1015,'_idioma','field_5b02f1f144ec1'),(12199,1010,'_yoast_wpseo_focuskw','Software de clasificación para patatas'),(12200,1010,'_yoast_wpseo_linkdex','52'),(12201,1010,'_yoast_wpseo_content_score','90'),(12202,1010,'_yoast_wpseo_title','Software de clasificación para patatas y tubérculos %%sep%% %%sitename%%'),(12203,1010,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para patatas. Clasifica patatas por color, tamaño y peso.'),(12204,1016,'idioma','Castellano'),(12205,1016,'_idioma','field_5b02f1f144ec1'),(12206,1017,'idioma','Castellano'),(12207,1017,'_idioma','field_5b02f1f144ec1'),(12208,1012,'_yoast_wpseo_focuskw','Software de clasificación para mangos'),(12209,1012,'_yoast_wpseo_title','Software de clasificación para mangos y frutas exóticas %%sep%% %%sitename%%'),(12210,1012,'_yoast_wpseo_metadesc','Descubre cómo funciona nuestro software de clasificación para mangos. Clasifica mangos por color, tamaño y peso.'),(12211,1012,'_yoast_wpseo_linkdex','50'),(12212,1012,'_yoast_wpseo_content_score','90'),(12251,1020,'_wp_attached_file','2020/11/clasificacion-patata.png'),(12252,1020,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1290;s:6:\"height\";i:769;s:4:\"file\";s:32:\"2020/11/clasificacion-patata.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:32:\"clasificacion-patata-300x179.png\";s:5:\"width\";i:300;s:6:\"height\";i:179;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:33:\"clasificacion-patata-1024x610.png\";s:5:\"width\";i:1024;s:6:\"height\";i:610;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:32:\"clasificacion-patata-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:32:\"clasificacion-patata-768x458.png\";s:5:\"width\";i:768;s:6:\"height\";i:458;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:32:\"clasificacion-patata-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:32:\"clasificacion-patata-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12253,1021,'idioma','Castellano'),(12254,1021,'_idioma','field_5b02f1f144ec1'),(12255,1022,'_wp_attached_file','2020/11/CLASIFICACION-naranjas-mndarinas.png'),(12256,1022,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:888;s:6:\"height\";i:842;s:4:\"file\";s:44:\"2020/11/CLASIFICACION-naranjas-mndarinas.png\";s:5:\"sizes\";a:5:{s:6:\"medium\";a:4:{s:4:\"file\";s:44:\"CLASIFICACION-naranjas-mndarinas-300x284.png\";s:5:\"width\";i:300;s:6:\"height\";i:284;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:44:\"CLASIFICACION-naranjas-mndarinas-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:44:\"CLASIFICACION-naranjas-mndarinas-768x728.png\";s:5:\"width\";i:768;s:6:\"height\";i:728;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:44:\"CLASIFICACION-naranjas-mndarinas-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:44:\"CLASIFICACION-naranjas-mndarinas-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12276,1024,'idioma','Castellano'),(12277,1024,'_idioma','field_5b02f1f144ec1'),(12655,948,'_wp_page_template','13-Frutas.php'),(12656,944,'_wp_page_template','13-Frutas.php'),(12657,964,'_wp_page_template','13-Frutas.php'),(12658,1010,'_wp_page_template','13-Frutas.php'),(12659,1012,'_wp_page_template','13-Frutas.php'),(12698,962,'_wp_page_template','13-Frutas.php'),(12699,952,'_wp_page_template','13-Frutas.php'),(12700,950,'_wp_page_template','13-Frutas.php'),(12701,966,'_wp_page_template','13-Frutas.php'),(12702,968,'_wp_page_template','13-Frutas.php'),(12703,926,'_wp_page_template','13-Frutas.php'),(12813,1043,'_wp_attached_file','2020/11/aguacate.png'),(12814,1043,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:20:\"2020/11/aguacate.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"aguacate-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"aguacate-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12815,1044,'_wp_attached_file','2020/11/albaricoque.png'),(12816,1044,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:23:\"2020/11/albaricoque.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"albaricoque-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"albaricoque-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12821,1047,'_wp_attached_file','2020/11/cerezas.png'),(12822,1047,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:19:\"2020/11/cerezas.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"cerezas-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"cerezas-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12823,1048,'_wp_attached_file','2020/11/datiles.png'),(12824,1048,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:19:\"2020/11/datiles.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"datiles-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"datiles-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12825,1049,'_wp_attached_file','2020/11/granada.png'),(12826,1049,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:19:\"2020/11/granada.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"granada-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"granada-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12827,1050,'_wp_attached_file','2020/11/higo.png'),(12828,1050,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:16:\"2020/11/higo.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"higo-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"higo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12829,1051,'_wp_attached_file','2020/11/kiwi.png'),(12830,1051,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:16:\"2020/11/kiwi.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"kiwi-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kiwi-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12831,1052,'_wp_attached_file','2020/11/limon.png'),(12832,1052,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:17:\"2020/11/limon.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"limon-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"limon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12833,1053,'_wp_attached_file','2020/11/mango.png'),(12834,1053,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:17:\"2020/11/mango.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"mango-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"mango-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12837,1055,'_wp_attached_file','2020/11/melocoton.png'),(12838,1055,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:21:\"2020/11/melocoton.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"melocoton-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"melocoton-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12839,1056,'_wp_attached_file','2020/11/melon.png'),(12840,1056,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:17:\"2020/11/melon.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:17:\"melon-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:17:\"melon-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12843,1058,'_wp_attached_file','2020/11/nectarina.png'),(12844,1058,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:21:\"2020/11/nectarina.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"nectarina-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"nectarina-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12845,1059,'_wp_attached_file','2020/11/paraguayo.png'),(12846,1059,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:21:\"2020/11/paraguayo.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"paraguayo-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"paraguayo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12847,1060,'_wp_attached_file','2020/11/patata.png'),(12848,1060,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:18:\"2020/11/patata.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"patata-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"patata-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12849,1061,'_wp_attached_file','2020/11/pepino.png'),(12850,1061,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:18:\"2020/11/pepino.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"pepino-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"pepino-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12851,1062,'_wp_attached_file','2020/11/pera.png'),(12852,1062,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:16:\"2020/11/pera.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"pera-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"pera-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12853,1063,'_wp_attached_file','2020/11/sandia.png'),(12854,1063,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:18:\"2020/11/sandia.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"sandia-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"sandia-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12855,1064,'_wp_attached_file','2020/11/tomate.png'),(12856,1064,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:18:\"2020/11/tomate.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:18:\"tomate-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:18:\"tomate-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12857,1065,'_wp_attached_file','2020/11/berenjena.png'),(12858,1065,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:21:\"2020/11/berenjena.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"berenjena-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"berenjena-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12859,1066,'_wp_attached_file','2020/11/calabacin.png'),(12860,1066,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:21:\"2020/11/calabacin.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:21:\"calabacin-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:21:\"calabacin-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12861,1067,'_wp_attached_file','2020/11/manzanan.png'),(12862,1067,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:20:\"2020/11/manzanan.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:20:\"manzanan-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:20:\"manzanan-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12863,1068,'_wp_attached_file','2020/11/naranja.png'),(12864,1068,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:19:\"2020/11/naranja.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:19:\"naranja-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:19:\"naranja-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12865,924,'_wp_page_template','14-PortadaFrutas.php'),(12866,1070,'idioma','Castellano'),(12867,1070,'_idioma','field_5b02f1f144ec1'),(12868,924,'_yoast_wpseo_content_score','60'),(12869,1071,'idioma','Castellano'),(12870,1071,'_idioma','field_5b02f1f144ec1'),(12871,1072,'idioma','Castellano'),(12872,1072,'_idioma','field_5b02f1f144ec1'),(12873,1074,'idioma','Castellano'),(12874,1074,'_idioma','field_5b02f1f144ec1'),(12875,1075,'idioma','Castellano'),(12876,1075,'_idioma','field_5b02f1f144ec1'),(12877,930,'_wp_page_template','13-Frutas.php'),(12878,932,'_wp_page_template','13-Frutas.php'),(12879,936,'_wp_page_template','13-Frutas.php'),(12880,942,'_wp_page_template','13-Frutas.php'),(12881,940,'_wp_page_template','13-Frutas.php'),(12882,960,'_wp_page_template','13-Frutas.php'),(12883,934,'_wp_page_template','13-Frutas.php'),(12884,1076,'_wp_attached_file','2020/11/naranjaymandarina.png'),(12885,1076,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:29:\"2020/11/naranjaymandarina.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"naranjaymandarina-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"naranjaymandarina-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12886,956,'_wp_page_template','13-Frutas.php'),(12887,958,'_wp_page_template','13-Frutas.php'),(12888,954,'_wp_page_template','13-Frutas.php'),(12891,1078,'idioma','Castellano'),(12892,1078,'_idioma','field_5b02f1f144ec1'),(12893,1079,'idioma','Castellano'),(12894,1079,'_idioma','field_5b02f1f144ec1'),(12895,1081,'idioma','Castellano'),(12896,1081,'_idioma','field_5b02f1f144ec1'),(12897,1083,'idioma','Castellano'),(12898,1083,'_idioma','field_5b02f1f144ec1'),(12899,1084,'idioma','Castellano'),(12900,1084,'_idioma','field_5b02f1f144ec1'),(12901,1085,'idioma','Castellano'),(12902,1085,'_idioma','field_5b02f1f144ec1'),(12903,1086,'idioma','Castellano'),(12904,1086,'_idioma','field_5b02f1f144ec1'),(12905,1087,'idioma','Castellano'),(12906,1087,'_idioma','field_5b02f1f144ec1'),(12907,1088,'idioma','Castellano'),(12908,1088,'_idioma','field_5b02f1f144ec1'),(12910,1090,'idioma','Castellano'),(12911,1090,'_idioma','field_5b02f1f144ec1'),(12912,1091,'idioma','Castellano'),(12913,1091,'_idioma','field_5b02f1f144ec1'),(12914,1092,'_wp_attached_file','2020/11/tomates-y-cherris.png'),(12915,1092,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:270;s:6:\"height\";i:303;s:4:\"file\";s:29:\"2020/11/tomates-y-cherris.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:29:\"tomates-y-cherris-267x300.png\";s:5:\"width\";i:267;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:29:\"tomates-y-cherris-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(12916,1093,'idioma','Castellano'),(12917,1093,'_idioma','field_5b02f1f144ec1'),(12918,1094,'idioma','Castellano'),(12919,1094,'_idioma','field_5b02f1f144ec1'),(12920,1095,'idioma','Castellano'),(12921,1095,'_idioma','field_5b02f1f144ec1'),(12922,1096,'idioma','Castellano'),(12923,1096,'_idioma','field_5b02f1f144ec1'),(12924,1097,'idioma','Castellano'),(12925,1097,'_idioma','field_5b02f1f144ec1'),(12926,1098,'idioma','Castellano'),(12927,1098,'_idioma','field_5b02f1f144ec1'),(12928,1099,'idioma','Castellano'),(12929,1099,'_idioma','field_5b02f1f144ec1'),(13054,1103,'_edit_lock','1605784805:1'),(13055,1103,'_edit_last','1'),(13056,1103,'idioma','Castellano'),(13057,1103,'_idioma','field_5b02f1f144ec1'),(13058,1104,'idioma','Castellano'),(13059,1104,'_idioma','field_5b02f1f144ec1'),(13060,1103,'_yoast_wpseo_content_score','90'),(13061,1105,'idioma','Castellano'),(13062,1105,'_idioma','field_5b02f1f144ec1'),(13063,1103,'_yoast_wpseo_title','Fruit sorter retrofit para tu antiguo calibrador %%sep%% %%sitename%%'),(13064,1103,'_yoast_wpseo_metadesc','Te contamos en qué consiste el retrofit y cómo te permite ahorrar con tu calibrador, sin renunciar a las funcionalidades de calibrado 4.0'),(13065,1103,'_yoast_wpseo_focuskw','Fruit sorter retrofit para tu antiguo calibrador'),(13066,1103,'_yoast_wpseo_linkdex','61'),(13067,1106,'idioma','Castellano'),(13068,1106,'_idioma','field_5b02f1f144ec1'),(13069,1107,'idioma','Castellano'),(13070,1107,'_idioma','field_5b02f1f144ec1'),(13071,1108,'_wp_attached_file','2020/11/Fruit-sorter-retrofit.png'),(13072,1108,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:992;s:4:\"file\";s:33:\"2020/11/Fruit-sorter-retrofit.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Fruit-sorter-retrofit-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:34:\"Fruit-sorter-retrofit-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Fruit-sorter-retrofit-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:33:\"Fruit-sorter-retrofit-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:34:\"Fruit-sorter-retrofit-1536x804.png\";s:5:\"width\";i:1536;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:33:\"Fruit-sorter-retrofit-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:33:\"Fruit-sorter-retrofit-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13073,1108,'_wp_attachment_image_alt','Fruit sorter retrofit'),(13074,1103,'_thumbnail_id','1108'),(13079,1103,'_yoast_wpseo_opengraph-image','https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit.png'),(13080,1103,'_yoast_wpseo_opengraph-image-id','1108'),(13137,1109,'_email','zartinoureddine@gmail.com'),(13138,1109,'_name','Noureddine ZARTI'),(13139,1109,'_props','a:0:{}'),(13140,1109,'_last_contacted','2020-11-20 16:41:37'),(13141,1110,'_submission_status','mail_sent'),(13142,1110,'_subject','[your-subject]'),(13143,1110,'_from','Noureddine ZARTI <zartinoureddine@gmail.com>'),(13144,1110,'_from_name','Noureddine ZARTI'),(13145,1110,'_from_email','zartinoureddine@gmail.com'),(13146,1110,'_field_your-name','Noureddine ZARTI'),(13147,1110,'_field_your-email','zartinoureddine@gmail.com'),(13148,1110,'_field_your-telefono','+34632230056'),(13149,1110,'_field_your-message','Será un placer trabajar en vuestra empresa.'),(13150,1110,'_field_file-580','f90e010736fbb1eedb82afcac897f3ae'),(13151,1110,'_fields','a:5:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:13:\"your-telefono\";N;s:12:\"your-message\";N;s:8:\"file-580\";N;}'),(13152,1110,'_meta','a:19:{s:13:\"serial_number\";i:3;s:9:\"remote_ip\";s:15:\"185.237.102.240\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36\";s:3:\"url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:4:\"date\";s:23:\"20 de noviembre de 2020\";s:4:\"time\";s:5:\"16:41\";s:7:\"post_id\";s:3:\"826\";s:9:\"post_name\";s:28:\"computer-electronic-engineer\";s:10:\"post_title\";s:4:\"Jobs\";s:8:\"post_url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(13153,1110,'_akismet',NULL),(13154,1110,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-11-20T16:38:35Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(13155,1110,'_spam_log','a:0:{}'),(13156,1110,'_consent','a:0:{}'),(13157,1110,'_hash','be5ebaf6b65d6703fbeac6bb4bb28226'),(13206,1111,'_email','yassine.elagdi@gmail.com'),(13207,1111,'_name','Yassine Elagdi'),(13208,1111,'_props','a:0:{}'),(13209,1111,'_last_contacted','2020-11-21 02:04:24'),(13210,1112,'_submission_status','mail_sent'),(13211,1112,'_subject','[your-subject]'),(13212,1112,'_from','Yassine Elagdi <yassine.elagdi@gmail.com>'),(13213,1112,'_from_name','Yassine Elagdi'),(13214,1112,'_from_email','yassine.elagdi@gmail.com'),(13215,1112,'_field_your-name','Yassine Elagdi'),(13216,1112,'_field_your-email','yassine.elagdi@gmail.com'),(13217,1112,'_field_your-telefono','+212649209037'),(13218,1112,'_field_your-message','Hi ,\r\n\r\nI\'m applying for Computer/Electronic Engineer (Support and development technician) position. I\'m extremely enthusiastic about this opportunity. My resume appears below.\r\n\r\nThank you for your consideration.  '),(13219,1112,'_field_file-580','8a7da4d030077574e78bd9b6814e0749'),(13220,1112,'_fields','a:5:{s:9:\"your-name\";N;s:10:\"your-email\";N;s:13:\"your-telefono\";N;s:12:\"your-message\";N;s:8:\"file-580\";N;}'),(13221,1112,'_meta','a:19:{s:13:\"serial_number\";i:4;s:9:\"remote_ip\";s:14:\"196.70.209.142\";s:10:\"user_agent\";s:114:\"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36\";s:3:\"url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:4:\"date\";s:23:\"21 de noviembre de 2020\";s:4:\"time\";s:5:\"02:04\";s:7:\"post_id\";s:3:\"826\";s:9:\"post_name\";s:28:\"computer-electronic-engineer\";s:10:\"post_title\";s:4:\"Jobs\";s:8:\"post_url\";s:59:\"https://www.ingivision.com/en/computer-electronic-engineer/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(13222,1112,'_akismet',NULL),(13223,1112,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-11-21T02:03:11Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(13224,1112,'_spam_log','a:0:{}'),(13225,1112,'_consent','a:0:{}'),(13226,1112,'_hash','39b4ae4d7a8169c9039c06656d8a86fd'),(13326,1113,'_submission_status','mail_sent'),(13327,1113,'_subject','[your-subject]'),(13328,1113,'_from','[your-name] <[your-email]>'),(13329,1113,'_from_name','[your-name]'),(13330,1113,'_from_email','[your-email]'),(13331,1113,'_field_nombre','Hamad Bin'),(13332,1113,'_field_email','sales1_hbkcontracting@outlook.com'),(13333,1113,'_field_telefono',' +97444451133'),(13334,1113,'_field_asunto','Re:Order'),(13335,1113,'_field_mensaje','Good Day Sir/Madam, \r\n\r\nWe are interested in your product field.\r\nKindly send us your company catalog urgently and the Expected time of Delivery? \r\n(1) Kindly send FOB prices \r\n(2) Inform Expected time of Delivery? \r\n(3) Payment term? (T/T or L/C preferred)\r\n\r\nKindly get back to us urgently. \r\n\r\nBest Regard\r\nHamad Bin \r\nHBK Contracting Company.\r\nP.O.Box 1362, Doha - Qatar\r\nPhone: +97444451133\r\nTelefax: +97444451022\r\nE:sales1_hbkcontracting@outlook.com     \r\nWeb:http://hbkcontracting.com'),(13336,1113,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(13337,1113,'_meta','a:19:{s:13:\"serial_number\";i:3;s:9:\"remote_ip\";s:14:\"197.210.53.137\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (X11; CrOS x86_64 12239.92.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.136 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:23:\"23 de noviembre de 2020\";s:4:\"time\";s:5:\"08:00\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(13338,1113,'_akismet',NULL),(13339,1113,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-11-23T08:00:32Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(13340,1113,'_spam_log','a:0:{}'),(13341,1113,'_consent','a:0:{}'),(13342,1113,'_hash','2d3af620a7d06fd99f64408ccf2c8acb'),(13343,1114,'_submission_status','mail_sent'),(13344,1114,'_subject','[your-subject]'),(13345,1114,'_from','[your-name] <[your-email]>'),(13346,1114,'_from_name','[your-name]'),(13347,1114,'_from_email','[your-email]'),(13348,1114,'_field_nombre','Hamad Bin'),(13349,1114,'_field_email','sales1_hbkcontracting@outlook.com'),(13350,1114,'_field_telefono','89938333'),(13351,1114,'_field_asunto','Re:Order'),(13352,1114,'_field_mensaje','Good Day Sir/Madam, \r\n\r\nWe are interested in your product field.\r\nKindly send us your company catalog urgently and the Expected time of Delivery? \r\n(1) Kindly send FOB prices \r\n(2) Inform Expected time of Delivery? \r\n(3) Payment term? (T/T or L/C preferred)\r\n\r\nKindly get back to us urgently. \r\n\r\nBest Regard\r\nHamad Bin \r\nHBK Contracting Company.\r\nP.O.Box 1362, Doha - Qatar\r\nPhone: +97444451133\r\nTelefax: +97444451022\r\nE:sales1_hbkcontracting@outlook.com     \r\nWeb:http://hbkcontracting.com'),(13353,1114,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(13354,1114,'_meta','a:19:{s:13:\"serial_number\";i:4;s:9:\"remote_ip\";s:14:\"197.210.53.182\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (X11; CrOS x86_64 12239.92.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.136 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:23:\"23 de noviembre de 2020\";s:4:\"time\";s:5:\"08:05\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(13355,1114,'_akismet',NULL),(13356,1114,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-11-23T08:04:52Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(13357,1114,'_spam_log','a:0:{}'),(13358,1114,'_consent','a:0:{}'),(13359,1114,'_hash','3d636f9afac61ddfd8f9bf7b0f2abf74'),(13402,1115,'_wp_attached_file','2020/11/berenjena-1.png'),(13403,1115,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:720;s:4:\"file\";s:23:\"2020/11/berenjena-1.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:23:\"berenjena-1-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:24:\"berenjena-1-1024x683.png\";s:5:\"width\";i:1024;s:6:\"height\";i:683;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:23:\"berenjena-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:23:\"berenjena-1-768x512.png\";s:5:\"width\";i:768;s:6:\"height\";i:512;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:23:\"berenjena-1-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:23:\"berenjena-1-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13404,1115,'_wp_attachment_image_alt','clasificación de berenjenas'),(13405,1116,'_wp_attached_file','2020/11/berenjena-01.png'),(13406,1116,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1080;s:6:\"height\";i:721;s:4:\"file\";s:24:\"2020/11/berenjena-01.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:24:\"berenjena-01-300x200.png\";s:5:\"width\";i:300;s:6:\"height\";i:200;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:25:\"berenjena-01-1024x684.png\";s:5:\"width\";i:1024;s:6:\"height\";i:684;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:24:\"berenjena-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:24:\"berenjena-01-768x513.png\";s:5:\"width\";i:768;s:6:\"height\";i:513;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:24:\"berenjena-01-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:24:\"berenjena-01-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13407,1116,'_wp_attachment_image_alt','clasificación de berenjena'),(13408,964,'_thumbnail_id','1116'),(13411,1118,'idioma','Castellano'),(13412,1118,'_idioma','field_5b02f1f144ec1'),(13413,1119,'_wp_attached_file','2020/11/aguacate-01-01.png'),(13414,1119,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1424;s:6:\"height\";i:829;s:4:\"file\";s:26:\"2020/11/aguacate-01-01.png\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:26:\"aguacate-01-01-300x175.png\";s:5:\"width\";i:300;s:6:\"height\";i:175;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:27:\"aguacate-01-01-1024x596.png\";s:5:\"width\";i:1024;s:6:\"height\";i:596;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:26:\"aguacate-01-01-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:26:\"aguacate-01-01-768x447.png\";s:5:\"width\";i:768;s:6:\"height\";i:447;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:26:\"aguacate-01-01-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:26:\"aguacate-01-01-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13415,1119,'_wp_attachment_image_alt','clasificación de aguacates'),(13416,1120,'idioma','Castellano'),(13417,1120,'_idioma','field_5b02f1f144ec1'),(13793,1123,'_edit_lock','1610622625:1'),(13794,1123,'_edit_last','1'),(13795,1123,'idioma','Castellano'),(13796,1123,'_idioma','field_5b02f1f144ec1'),(13797,1124,'idioma','Castellano'),(13798,1124,'_idioma','field_5b02f1f144ec1'),(13799,1123,'_yoast_wpseo_content_score','90'),(13800,1123,'_yoast_wpseo_focuskw','Calibrado de frutas: ¿Cómo elegir un buen software?'),(13801,1123,'_yoast_wpseo_linkdex','59'),(13802,1125,'_wp_attached_file','2020/12/como-elegir-software-clasificacion.jpg'),(13803,1125,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:992;s:4:\"file\";s:46:\"2020/12/como-elegir-software-clasificacion.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:46:\"como-elegir-software-clasificacion-300x157.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:47:\"como-elegir-software-clasificacion-1024x536.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"como-elegir-software-clasificacion-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:46:\"como-elegir-software-clasificacion-768x402.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:47:\"como-elegir-software-clasificacion-1536x804.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:804;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:46:\"como-elegir-software-clasificacion-770x440.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:46:\"como-elegir-software-clasificacion-500x370.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(13804,1125,'_wp_attachment_image_alt','Cómo elegir software de clasificación de frutas'),(13805,1123,'_thumbnail_id','1125'),(13806,1123,'_yoast_wpseo_primary_category','11'),(13807,1123,'_yoast_wpseo_title','Calibrado de frutas: ¿Cómo elegir un buen software? %%sep%% %%sitename%%'),(13808,1123,'_yoast_wpseo_metadesc','Todas las claves para elegir bien un buen sistema electrónico de calibrado de frutas invirtiendo lo menos posible.'),(13809,1123,'_yoast_wpseo_opengraph-title','Calibrado de frutas: ¿Cómo elegir un buen software?'),(13810,1123,'_yoast_wpseo_opengraph-description','Todas las claves para elegir bien un buen sistema electrónico de calibrado de frutas invirtiendo lo menos posible.'),(13811,1123,'_yoast_wpseo_opengraph-image','https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg'),(13812,1123,'_yoast_wpseo_opengraph-image-id','1125'),(13819,1123,'_yoast_wpseo_twitter-title','Calibrado de frutas: ¿Cómo elegir un buen software?'),(13820,1123,'_yoast_wpseo_twitter-description','Todas las claves para elegir bien un buen sistema electrónico de calibrado de frutas invirtiendo lo menos posible.'),(13821,1123,'_yoast_wpseo_twitter-image','https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg'),(13822,1123,'_yoast_wpseo_twitter-image-id','1125'),(13967,1135,'_submission_status','mail_sent'),(13968,1135,'_subject','[your-subject]'),(13969,1135,'_from','[your-name] <[your-email]>'),(13970,1135,'_from_name','[your-name]'),(13971,1135,'_from_email','[your-email]'),(13972,1135,'_field_nombre','Peyman shahbazi'),(13973,1135,'_field_email','shahbazipeyman52@gmail.com'),(13974,1135,'_field_telefono','+989141520593'),(13975,1135,'_field_asunto','Price request '),(13976,1135,'_field_mensaje','Hi \r\nI visited your site and became interested in your products. Please Send me product details and prices.\r\nBest regards \r\nPeyman , iran'),(13977,1135,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(13978,1135,'_meta','a:19:{s:13:\"serial_number\";i:5;s:9:\"remote_ip\";s:15:\"185.177.229.140\";s:10:\"user_agent\";s:137:\"Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1\";s:3:\"url\";s:38:\"https://www.ingivision.com/en/contact/\";s:4:\"date\";s:23:\"27 de diciembre de 2020\";s:4:\"time\";s:5:\"16:18\";s:7:\"post_id\";s:3:\"106\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:38:\"https://www.ingivision.com/en/contact/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(13979,1135,'_akismet',NULL),(13980,1135,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2020-12-27T16:11:40Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.69999999999999996;s:6:\"action\";s:8:\"homepage\";}}'),(13981,1135,'_spam_log','a:0:{}'),(13982,1135,'_consent','a:0:{}'),(13983,1135,'_hash','9103ec6a9c900b0fb66e2a0f379063e2'),(14137,1145,'_edit_lock','1610969618:1'),(14138,1146,'_wp_attached_file','2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26.png'),(14139,1146,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:359;s:4:\"file\";s:57:\"2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Captura-de-pantalla-2021-01-14-a-las-10.59.26-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Captura-de-pantalla-2021-01-14-a-las-10.59.26-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14140,1147,'_wp_attached_file','2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26-1.png'),(14141,1147,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:189;s:6:\"height\";i:359;s:4:\"file\";s:59:\"2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26-1.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"Captura-de-pantalla-2021-01-14-a-las-10.59.26-1-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"Captura-de-pantalla-2021-01-14-a-las-10.59.26-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14142,1148,'_wp_attached_file','2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.43.png'),(14143,1148,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:257;s:6:\"height\";i:360;s:4:\"file\";s:57:\"2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.43.png\";s:5:\"sizes\";a:2:{s:6:\"medium\";a:4:{s:4:\"file\";s:57:\"Captura-de-pantalla-2021-01-14-a-las-10.59.43-214x300.png\";s:5:\"width\";i:214;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:57:\"Captura-de-pantalla-2021-01-14-a-las-10.59.43-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14144,1149,'_wp_attached_file','2021/01/Frutos-sin-defectos.png'),(14145,1149,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:449;s:4:\"file\";s:31:\"2021/01/Frutos-sin-defectos.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Frutos-sin-defectos-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Frutos-sin-defectos-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:31:\"Frutos-sin-defectos-236x440.png\";s:5:\"width\";i:236;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:31:\"Frutos-sin-defectos-236x370.png\";s:5:\"width\";i:236;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14146,1150,'_wp_attached_file','2021/01/Frutos-con-defectos.png'),(14147,1150,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:449;s:4:\"file\";s:31:\"2021/01/Frutos-con-defectos.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:31:\"Frutos-con-defectos-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:31:\"Frutos-con-defectos-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:31:\"Frutos-con-defectos-236x440.png\";s:5:\"width\";i:236;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:31:\"Frutos-con-defectos-236x370.png\";s:5:\"width\";i:236;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14148,1151,'_wp_attached_file','2021/01/Frutos-con-defectos-1.png'),(14149,1151,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:449;s:4:\"file\";s:33:\"2021/01/Frutos-con-defectos-1.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:33:\"Frutos-con-defectos-1-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:33:\"Frutos-con-defectos-1-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:33:\"Frutos-con-defectos-1-236x440.png\";s:5:\"width\";i:236;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:33:\"Frutos-con-defectos-1-236x370.png\";s:5:\"width\";i:236;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14150,1145,'_edit_last','1'),(14151,1145,'idioma','Castellano'),(14152,1145,'_idioma','field_5b02f1f144ec1'),(14153,1152,'idioma','Castellano'),(14154,1152,'_idioma','field_5b02f1f144ec1'),(14155,1145,'_yoast_wpseo_content_score','30'),(14156,1153,'idioma','Castellano'),(14157,1153,'_idioma','field_5b02f1f144ec1'),(14158,1154,'idioma','Castellano'),(14159,1154,'_idioma','field_5b02f1f144ec1'),(14160,1155,'_wp_attached_file','2021/01/clementina-con-defectos-perdida-pedúnculo.png'),(14161,1155,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:449;s:4:\"file\";s:55:\"2021/01/clementina-con-defectos-perdida-pedúnculo.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:55:\"clementina-con-defectos-perdida-pedúnculo-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:55:\"clementina-con-defectos-perdida-pedúnculo-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:55:\"clementina-con-defectos-perdida-pedúnculo-236x440.png\";s:5:\"width\";i:236;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:55:\"clementina-con-defectos-perdida-pedúnculo-236x370.png\";s:5:\"width\";i:236;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14162,1156,'_wp_attached_file','2021/01/clementina-con-grandes-defectos-malformaciones.png'),(14163,1156,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:236;s:6:\"height\";i:449;s:4:\"file\";s:58:\"2021/01/clementina-con-grandes-defectos-malformaciones.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:58:\"clementina-con-grandes-defectos-malformaciones-158x300.png\";s:5:\"width\";i:158;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:58:\"clementina-con-grandes-defectos-malformaciones-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:58:\"clementina-con-grandes-defectos-malformaciones-236x440.png\";s:5:\"width\";i:236;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:58:\"clementina-con-grandes-defectos-malformaciones-236x370.png\";s:5:\"width\";i:236;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14164,1157,'idioma','Castellano'),(14165,1157,'_idioma','field_5b02f1f144ec1'),(14166,1145,'_yoast_wpseo_focuskw','Clasificación automática de la calidad externa en cítricos'),(14167,1145,'_yoast_wpseo_linkdex','61'),(14168,1145,'_yoast_wpseo_title','Clasificación automática de la calidad externa en cítricos %%sep%% %%sitename%%'),(14169,1145,'_yoast_wpseo_metadesc','Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos. Casos de éxito en clientes reales'),(14170,1159,'_wp_attached_file','2021/01/clementina-calidad-superextra.png'),(14171,1159,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:992;s:4:\"file\";s:41:\"2021/01/clementina-calidad-superextra.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:41:\"clementina-calidad-superextra-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:42:\"clementina-calidad-superextra-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:41:\"clementina-calidad-superextra-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:41:\"clementina-calidad-superextra-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:42:\"clementina-calidad-superextra-1536x804.png\";s:5:\"width\";i:1536;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:41:\"clementina-calidad-superextra-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:41:\"clementina-calidad-superextra-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14172,1159,'_wp_attachment_image_alt','Clementina calidad superextra'),(14173,1145,'_thumbnail_id','1159'),(14174,1145,'_yoast_wpseo_primary_category','11'),(14175,1161,'idioma','Castellano'),(14176,1161,'_idioma','field_5b02f1f144ec1'),(14177,1145,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14178,1162,'idioma','Castellano'),(14179,1162,'_idioma','field_5b02f1f144ec1'),(14180,1163,'idioma','Castellano'),(14181,1163,'_idioma','field_5b02f1f144ec1'),(14182,1164,'idioma','Castellano'),(14183,1164,'_idioma','field_5b02f1f144ec1'),(14184,1165,'idioma','Ingles'),(14185,1165,'_idioma','field_5b02f1f144ec1'),(14186,1165,'_yoast_wpseo_content_score','30'),(14187,1165,'_yoast_wpseo_focuskw','Clasificación automática de la calidad externa en cítricos'),(14188,1165,'_yoast_wpseo_linkdex','53'),(14189,1165,'_yoast_wpseo_title','Clasificación automática de la calidad externa en cítricos %%sep%% %%sitename%%'),(14190,1165,'_yoast_wpseo_metadesc','Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos. Casos de éxito en clientes reales'),(14191,1165,'_thumbnail_id','1159'),(14192,1165,'_yoast_wpseo_primary_category','11'),(14193,1165,'_yoast_wpseo_estimated-reading-time-minutes','4'),(14194,1165,'_dp_original','1145'),(14195,1165,'_edit_lock','1610965012:1'),(14196,1165,'_edit_last','1'),(14197,1167,'idioma','Ingles'),(14198,1167,'_idioma','field_5b02f1f144ec1'),(14199,1169,'idioma','Ingles'),(14200,1169,'_idioma','field_5b02f1f144ec1'),(14201,1171,'idioma','Ingles'),(14202,1171,'_idioma','field_5b02f1f144ec1'),(14205,1172,'idioma','Ingles'),(14206,1172,'_idioma','field_5b02f1f144ec1'),(14214,1173,'idioma','Ingles'),(14215,1173,'_idioma','field_5b02f1f144ec1'),(14218,1145,'_yoast_wpseo_opengraph-title','Conseguir mandarinas de calidad superextra de forma automática ya es posible'),(14219,1145,'_yoast_wpseo_opengraph-description','Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.'),(14220,1145,'_yoast_wpseo_opengraph-image','https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra.png'),(14221,1145,'_yoast_wpseo_opengraph-image-id','1159'),(14227,1174,'idioma','Castellano'),(14228,1174,'_idioma','field_5b02f1f144ec1'),(14231,1175,'idioma','Castellano'),(14232,1175,'_idioma','field_5b02f1f144ec1'),(14241,1177,'idioma','Ingles'),(14242,1177,'_idioma','field_5b02f1f144ec1'),(14245,1179,'idioma','Castellano'),(14246,1179,'_idioma','field_5b02f1f144ec1'),(14253,1180,'idioma','Castellano'),(14254,1180,'_idioma','field_5b02f1f144ec1'),(14257,1181,'idioma','Castellano'),(14258,1181,'_idioma','field_5b02f1f144ec1'),(14262,1182,'idioma','Castellano'),(14263,1182,'_idioma','field_5b02f1f144ec1'),(14267,1183,'idioma','Castellano'),(14268,1183,'_idioma','field_5b02f1f144ec1'),(14270,1185,'idioma','Castellano'),(14271,1185,'_idioma','field_5b02f1f144ec1'),(14276,1186,'idioma','Castellano'),(14277,1186,'_idioma','field_5b02f1f144ec1'),(14286,1187,'idioma','Castellano'),(14287,1187,'_idioma','field_5b02f1f144ec1'),(14291,1188,'idioma','Castellano'),(14292,1188,'_idioma','field_5b02f1f144ec1'),(14294,1189,'idioma','Castellano'),(14295,1189,'_idioma','field_5b02f1f144ec1'),(14298,1190,'idioma','Castellano'),(14299,1190,'_idioma','field_5b02f1f144ec1'),(14302,1191,'idioma','Castellano'),(14303,1191,'_idioma','field_5b02f1f144ec1'),(14306,1192,'idioma','Ingles'),(14307,1192,'_idioma','field_5b02f1f144ec1'),(14308,1193,'_edit_lock','1611045624:1'),(14311,1194,'idioma','Ingles'),(14312,1194,'_idioma','field_5b02f1f144ec1'),(14317,1195,'idioma','Ingles'),(14318,1195,'_idioma','field_5b02f1f144ec1'),(14319,1196,'_wp_attached_file','2021/01/kiwi-apariencia-normal.png'),(14320,1196,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"height\";i:243;s:4:\"file\";s:34:\"2021/01/kiwi-apariencia-normal.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:34:\"kiwi-apariencia-normal-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14321,1197,'_wp_attached_file','2021/01/kiwi-plano.png'),(14322,1197,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:291;s:6:\"height\";i:243;s:4:\"file\";s:22:\"2021/01/kiwi-plano.png\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:22:\"kiwi-plano-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14323,1193,'_edit_last','1'),(14324,1193,'idioma','Castellano'),(14325,1193,'_idioma','field_5b02f1f144ec1'),(14326,1198,'idioma','Castellano'),(14327,1198,'_idioma','field_5b02f1f144ec1'),(14328,1193,'_yoast_wpseo_focuskw','Detección de kiwi plano'),(14329,1193,'_yoast_wpseo_linkdex','63'),(14330,1193,'_yoast_wpseo_content_score','30'),(14331,1193,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14332,1199,'_wp_attached_file','2021/01/catalogo-ingivision-EN.pdf'),(14333,1199,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"catalogo-ingivision-EN-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"catalogo-ingivision-EN-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"catalogo-ingivision-EN-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"catalogo-ingivision-EN-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14334,1200,'_wp_attached_file','2021/01/catalogo-ingivision-ES.pdf'),(14335,1200,'_wp_attachment_metadata','a:1:{s:5:\"sizes\";a:4:{s:4:\"full\";a:4:{s:4:\"file\";s:30:\"catalogo-ingivision-ES-pdf.jpg\";s:5:\"width\";i:1058;s:6:\"height\";i:1497;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:6:\"medium\";a:4:{s:4:\"file\";s:38:\"catalogo-ingivision-ES-pdf-212x300.jpg\";s:5:\"width\";i:212;s:6:\"height\";i:300;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:39:\"catalogo-ingivision-ES-pdf-724x1024.jpg\";s:5:\"width\";i:724;s:6:\"height\";i:1024;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:38:\"catalogo-ingivision-ES-pdf-106x150.jpg\";s:5:\"width\";i:106;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}}'),(14336,1201,'idioma','Castellano'),(14337,1201,'_idioma','field_5b02f1f144ec1'),(14338,1202,'_wp_attached_file','2021/01/kiwi.png'),(14339,1202,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:992;s:4:\"file\";s:16:\"2021/01/kiwi.png\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:16:\"kiwi-300x157.png\";s:5:\"width\";i:300;s:6:\"height\";i:157;s:9:\"mime-type\";s:9:\"image/png\";}s:5:\"large\";a:4:{s:4:\"file\";s:17:\"kiwi-1024x536.png\";s:5:\"width\";i:1024;s:6:\"height\";i:536;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:16:\"kiwi-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:16:\"kiwi-768x402.png\";s:5:\"width\";i:768;s:6:\"height\";i:402;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:17:\"kiwi-1536x804.png\";s:5:\"width\";i:1536;s:6:\"height\";i:804;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:16:\"kiwi-770x440.png\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:16:\"kiwi-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14340,1202,'_wp_attachment_image_alt','Detección de kiwi plano: un sistema simple y muy efectivo'),(14341,1203,'idioma','Castellano'),(14342,1203,'_idioma','field_5b02f1f144ec1'),(14343,1193,'_yoast_wpseo_title','Detección de kiwi plano: un sistema simple y muy efectivo %%sep%% %%sitename%%'),(14344,1193,'_yoast_wpseo_metadesc','La forma aplanada que muchas veces presenta el kiwi afecta a la calidad por motivos estéticos. ¿Cómo detectamos y solucionamos esto?'),(14345,1193,'_yoast_wpseo_opengraph-image','https://www.ingivision.com/wp-content/uploads/2021/01/kiwi.png'),(14346,1193,'_yoast_wpseo_opengraph-image-id','1202'),(14347,1204,'idioma','Castellano'),(14348,1204,'_idioma','field_5b02f1f144ec1'),(14351,1193,'_thumbnail_id','1202'),(14352,1193,'_yoast_wpseo_primary_category','9'),(14356,1205,'idioma','Castellano'),(14357,1205,'_idioma','field_5b02f1f144ec1'),(14358,1206,'idioma','Castellano'),(14359,1206,'_idioma','field_5b02f1f144ec1'),(14360,926,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14361,1207,'idioma','Castellano'),(14362,1207,'_idioma','field_5b02f1f144ec1'),(14363,946,'_yoast_wpseo_estimated-reading-time-minutes','1'),(14364,1208,'idioma','Ingles'),(14365,1208,'_idioma','field_5b02f1f144ec1'),(14366,1208,'_yoast_wpseo_focuskw','Simple and very effective system for the detection of flat kiwis.'),(14367,1208,'_yoast_wpseo_linkdex','40'),(14368,1208,'_yoast_wpseo_content_score','60'),(14369,1208,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14370,1208,'_yoast_wpseo_title','Simple and very effective system for the detection of flat kiwis %%sep%% %%sitename%%'),(14371,1208,'_yoast_wpseo_metadesc','Detecting flat-shaped kiwifruit is one of the main problems in kiwi packaging. In this post we tell you about our solution'),(14372,1208,'_yoast_wpseo_opengraph-image','https://www.ingivision.com/wp-content/uploads/2021/01/kiwi.png'),(14373,1208,'_yoast_wpseo_opengraph-image-id','1202'),(14374,1208,'_thumbnail_id','1202'),(14375,1208,'_yoast_wpseo_primary_category','9'),(14376,1208,'_dp_original','1193'),(14377,1208,'_edit_lock','1614077033:1'),(14378,1208,'_edit_last','1'),(14379,1210,'idioma','Ingles'),(14380,1210,'_idioma','field_5b02f1f144ec1'),(14383,1212,'idioma','Ingles'),(14384,1212,'_idioma','field_5b02f1f144ec1'),(14387,1214,'idioma','Ingles'),(14388,1214,'_idioma','field_5b02f1f144ec1'),(14393,1216,'idioma','Castellano'),(14394,1216,'_idioma','field_5b02f1f144ec1'),(14397,1219,'idioma','Castellano'),(14398,1219,'_idioma','field_5b02f1f144ec1'),(14399,924,'_yoast_wpseo_estimated-reading-time-minutes','5'),(14400,1220,'idioma','Castellano'),(14401,1220,'_idioma','field_5b02f1f144ec1'),(14402,1221,'idioma','Castellano'),(14403,1221,'_idioma','field_5b02f1f144ec1'),(14421,964,'_yoast_wpseo_estimated-reading-time-minutes',''),(14422,948,'_yoast_wpseo_estimated-reading-time-minutes',''),(14423,944,'_yoast_wpseo_estimated-reading-time-minutes',''),(14424,962,'_yoast_wpseo_estimated-reading-time-minutes',''),(14425,952,'_yoast_wpseo_estimated-reading-time-minutes',''),(14426,950,'_yoast_wpseo_estimated-reading-time-minutes',''),(14427,966,'_yoast_wpseo_estimated-reading-time-minutes',''),(14428,968,'_yoast_wpseo_estimated-reading-time-minutes',''),(14429,930,'_yoast_wpseo_estimated-reading-time-minutes',''),(14430,1012,'_yoast_wpseo_estimated-reading-time-minutes',''),(14431,932,'_yoast_wpseo_estimated-reading-time-minutes',''),(14432,936,'_yoast_wpseo_estimated-reading-time-minutes',''),(14433,956,'_yoast_wpseo_estimated-reading-time-minutes',''),(14434,942,'_yoast_wpseo_estimated-reading-time-minutes',''),(14435,940,'_yoast_wpseo_estimated-reading-time-minutes',''),(14436,1010,'_yoast_wpseo_estimated-reading-time-minutes',''),(14437,960,'_yoast_wpseo_estimated-reading-time-minutes',''),(14438,934,'_yoast_wpseo_estimated-reading-time-minutes',''),(14439,958,'_yoast_wpseo_estimated-reading-time-minutes',''),(14440,954,'_yoast_wpseo_estimated-reading-time-minutes',''),(14441,1224,'_submission_status','mail_sent'),(14442,1224,'_subject','[your-subject]'),(14443,1224,'_from','[your-name] <[your-email]>'),(14444,1224,'_from_name','[your-name]'),(14445,1224,'_from_email','[your-email]'),(14446,1224,'_field_nombre','0KV2HR95'),(14447,1224,'_field_email','info@domainworld.com'),(14448,1224,'_field_telefono','+12548593423'),(14449,1224,'_field_asunto','ZD62JQAB'),(14450,1224,'_field_mensaje','Notice#: 491343\r\nDate: 2021-01-20  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN ingyvision.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain ingyvision.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain ingyvision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://yourdomainregistration.ga/?n=ingyvision.com&r=a&t=1611043148&p=v1\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingyvision.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://yourdomainregistration.ga/?n=ingyvision.com&r=a&t=1611043148&p=v1\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification ingyvision.com will EXPIRE WITHIN 24 HOURS after reception of this email'),(14451,1224,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14452,1224,'_meta','a:19:{s:13:\"serial_number\";i:6;s:9:\"remote_ip\";s:12:\"191.101.65.6\";s:10:\"user_agent\";s:119:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2921.4 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"19 de enero de 2021\";s:4:\"time\";s:5:\"07:59\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14453,1224,'_akismet',NULL),(14454,1224,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-01-19T07:59:02Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.69999999999999996;s:6:\"action\";s:11:\"contactform\";}}'),(14455,1224,'_spam_log','a:0:{}'),(14456,1224,'_consent','a:0:{}'),(14457,1224,'_hash','f3d51ba94a9dbb972f38c904f6729f29'),(14540,1229,'_submission_status','mail_sent'),(14541,1229,'_subject','[your-subject]'),(14542,1229,'_from','[your-name] <[your-email]>'),(14543,1229,'_from_name','[your-name]'),(14544,1229,'_from_email','[your-email]'),(14545,1229,'_field_nombre','Richard S'),(14546,1229,'_field_email','adi@ndmails.com'),(14547,1229,'_field_telefono','8102440753'),(14548,1229,'_field_asunto','Design Work'),(14549,1229,'_field_mensaje','Just wanted to ask if you would be interested in getting external help with graphic design? We do all design work like banners, advertisements, photo edits, logos, flyers, etc. for a fixed monthly fee. \r\n\r\nWe don\'t charge for each task. What kind of work do you need on a regular basis? Let me know and I\'ll share my portfolio with you.'),(14550,1229,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14551,1229,'_meta','a:19:{s:13:\"serial_number\";i:7;s:9:\"remote_ip\";s:15:\"223.235.113.139\";s:10:\"user_agent\";s:115:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36\";s:3:\"url\";s:38:\"https://www.ingivision.com/en/contact/\";s:4:\"date\";s:19:\"27 de enero de 2021\";s:4:\"time\";s:5:\"05:41\";s:7:\"post_id\";s:3:\"106\";s:9:\"post_name\";s:7:\"contact\";s:10:\"post_title\";s:7:\"Contact\";s:8:\"post_url\";s:38:\"https://www.ingivision.com/en/contact/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14552,1229,'_akismet',NULL),(14553,1229,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-01-27T05:28:53Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(14554,1229,'_spam_log','a:0:{}'),(14555,1229,'_consent','a:0:{}'),(14556,1229,'_hash','7195443d7805fa7265faa3f539a31bbe'),(14557,1231,'idioma','Castellano'),(14558,1231,'_idioma','field_5b02f1f144ec1'),(14559,682,'_yoast_wpseo_estimated-reading-time-minutes','1'),(14560,1232,'idioma','Castellano'),(14561,1232,'_idioma','field_5b02f1f144ec1'),(14562,1233,'_wp_page_template','11-trabajos.php'),(14563,1233,'idioma','Ingles'),(14564,1233,'_idioma','field_5b02f1f144ec1'),(14565,1233,'_yoast_wpseo_content_score','90'),(14566,1233,'_yoast_wpseo_estimated-reading-time-minutes','1'),(14567,1233,'_dp_original','682'),(14568,1233,'_edit_lock','1611746385:1'),(14569,1233,'_edit_last','1'),(14570,1234,'idioma','Castellano'),(14571,1234,'_idioma','field_5b02f1f144ec1'),(14572,1235,'_form','<p class=\"comment-form-author\"><!-- <label>Name*</label> -->[text* your-name placeholder \"Name\"]</p>\n<p class=\"comment-form-email\"><!-- <label>Email *</label> -->[email* your-email placeholder \"Email\"]</p>\n<p class=\"comment-form-author\"><!-- <label>Name *</label> -->[text* your-telefono placeholder \"Phone\"]</p>\n <div class=\"clearfix\"></div>\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->[textarea* your-message placeholder \"Message\"]</p>\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->Adjunta tu curriculum [file* file-580 limit:2mb filetypes:pdf]</p>\n <div class=\"clearfix\"></div>\n<div class=\"spacer\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\" style=\"height: 50px;\"></div>\n<div class=\"flat-contact\"><p class=\"submit-form\">[submit class:btn class:btn-normal class:btn-md \"Send CV\"]</p></div>'),(14573,1235,'_mail','a:9:{s:6:\"active\";b:1;s:7:\"subject\";s:25:\"Alta en oferta de trabajo\";s:6:\"sender\";s:38:\"Ingivision <ingivision@ingivision.com>\";s:9:\"recipient\";s:25:\"ingivision@ingivision.com\";s:4:\"body\";s:104:\"De: [your-name] <[your-email]>\nTelefono: [your-telefono]\nMensaje: [your-message]\n\nCurriculum:\n[file-580]\";s:18:\"additional_headers\";s:18:\"Cc:info@admirae.es\";s:11:\"attachments\";s:10:\"[file-580]\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(14574,1235,'_mail_2','a:9:{s:6:\"active\";b:0;s:7:\"subject\";s:32:\"[_site_title] «[your-subject]»\";s:6:\"sender\";s:40:\"[_site_title] <wordpress@ingivision.com>\";s:9:\"recipient\";s:12:\"[your-email]\";s:4:\"body\";s:129:\"Cuerpo del mensaje:\n[your-message]\n\n-- \nEste mensaje se ha enviado desde un formulario de contacto en [_site_title] ([_site_url])\";s:18:\"additional_headers\";s:29:\"Reply-To: [_site_admin_email]\";s:11:\"attachments\";s:0:\"\";s:8:\"use_html\";b:0;s:13:\"exclude_blank\";b:0;}'),(14575,1235,'_messages','a:22:{s:12:\"mail_sent_ok\";s:40:\"Gracias por tu mensaje. Ha sido enviado.\";s:12:\"mail_sent_ng\";s:94:\"Ha ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\";s:16:\"validation_error\";s:79:\"Uno o más campos tienen un error. Por favor, revísalos e inténtalo de nuevo.\";s:4:\"spam\";s:94:\"Ha ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\";s:12:\"accept_terms\";s:69:\"Debes aceptar los términos y condiciones antes de enviar tu mensaje.\";s:16:\"invalid_required\";s:24:\"El campo es obligatorio.\";s:16:\"invalid_too_long\";s:28:\"El campo es demasiado largo.\";s:17:\"invalid_too_short\";s:28:\"El campo es demasiado corto.\";s:12:\"invalid_date\";s:34:\"El formato de fecha es incorrecto.\";s:14:\"date_too_early\";s:50:\"La fecha es anterior a la más temprana permitida.\";s:13:\"date_too_late\";s:50:\"La fecha es posterior a la más tardía permitida.\";s:13:\"upload_failed\";s:53:\"Ha ocurrido un error desconocido al subir el archivo.\";s:24:\"upload_file_type_invalid\";s:52:\"No tienes permisos para subir archivos de este tipo.\";s:21:\"upload_file_too_large\";s:31:\"El archivo es demasiado grande.\";s:23:\"upload_failed_php_error\";s:41:\"Ha ocurrido un error al subir el archivo.\";s:14:\"invalid_number\";s:36:\"El formato de número no es válido.\";s:16:\"number_too_small\";s:45:\"El número es menor que el mínimo permitido.\";s:16:\"number_too_large\";s:45:\"El número es mayor que el máximo permitido.\";s:23:\"quiz_answer_not_correct\";s:44:\"La respuesta al cuestionario no es correcta.\";s:13:\"invalid_email\";s:71:\"La dirección de correo electrónico que has introducido no es válida.\";s:11:\"invalid_url\";s:21:\"La URL no es válida.\";s:11:\"invalid_tel\";s:38:\"El número de teléfono no es válido.\";}'),(14576,1235,'_additional_settings',''),(14577,1235,'_locale','es_ES'),(14578,1236,'idioma','Castellano'),(14579,1236,'_idioma','field_5b02f1f144ec1'),(14580,1237,'idioma','Ingles'),(14581,1237,'_idioma','field_5b02f1f144ec1'),(14603,1239,'_edit_lock','1616487624:1'),(14604,1239,'_edit_last','1'),(14605,1239,'idioma','Castellano'),(14606,1239,'_idioma','field_5b02f1f144ec1'),(14607,1240,'idioma','Castellano'),(14608,1240,'_idioma','field_5b02f1f144ec1'),(14609,1239,'_yoast_wpseo_content_score','60'),(14610,1239,'_yoast_wpseo_estimated-reading-time-minutes','6'),(14611,1239,'_yoast_wpseo_primary_category','23'),(14612,1239,'_yoast_wpseo_focuskw','Previsiones sector hortofrutícola 2021'),(14613,1239,'_yoast_wpseo_title','Previsiones sector hortofrutícola ¿qué nos depara el 2021? %%sep%% %%sitename%%'),(14614,1239,'_yoast_wpseo_metadesc','Te contamos las previsiones para este año en el sector teniendo en cuenta factores como el clima o la evolución de la pandemia.'),(14615,1239,'_yoast_wpseo_linkdex','61'),(14616,1241,'_wp_attached_file','2021/02/Futuro-sector-hortofruticola.jpg'),(14617,1241,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:810;s:4:\"file\";s:40:\"2021/02/Futuro-sector-hortofruticola.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:40:\"Futuro-sector-hortofruticola-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:41:\"Futuro-sector-hortofruticola-1024x438.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:40:\"Futuro-sector-hortofruticola-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:40:\"Futuro-sector-hortofruticola-768x328.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:41:\"Futuro-sector-hortofruticola-1536x657.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:40:\"Futuro-sector-hortofruticola-770x440.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:40:\"Futuro-sector-hortofruticola-500x370.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14618,1241,'_wp_attachment_image_alt','Futuro del sector hortofrutícola'),(14621,1239,'_thumbnail_id','1241'),(14644,1242,'_edit_lock','1616486625:1'),(14645,1242,'_edit_last','1'),(14646,1242,'idioma','Castellano'),(14647,1242,'_idioma','field_5b02f1f144ec1'),(14648,1243,'idioma','Castellano'),(14649,1243,'_idioma','field_5b02f1f144ec1'),(14650,1242,'_yoast_wpseo_focuskw','Inteligencia artificial para la campaña del dátil'),(14651,1242,'_yoast_wpseo_title','Inteligencia artificial para la campaña del dátil %%sep%% %%sitename%%'),(14652,1242,'_yoast_wpseo_metadesc','La inteligencia artificial de nuestro software IngiGrader 2.0 % se adapta a cualquier fruto. Te contamos cómo lo hacemos para el dátil'),(14653,1242,'_yoast_wpseo_linkdex','48'),(14654,1242,'_yoast_wpseo_content_score','30'),(14655,1242,'_yoast_wpseo_estimated-reading-time-minutes','2'),(14656,1244,'_wp_attached_file','2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg'),(14657,1244,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:810;s:4:\"file\";s:66:\"2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:66:\"software-clasificacion-datiles-inteligencia-artificial-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:67:\"software-clasificacion-datiles-inteligencia-artificial-1024x438.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:66:\"software-clasificacion-datiles-inteligencia-artificial-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:66:\"software-clasificacion-datiles-inteligencia-artificial-768x328.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:67:\"software-clasificacion-datiles-inteligencia-artificial-1536x657.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:66:\"software-clasificacion-datiles-inteligencia-artificial-770x440.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:66:\"software-clasificacion-datiles-inteligencia-artificial-500x370.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14658,1244,'_wp_attachment_image_alt','Clasificacion datiles por inteligencia artificial'),(14661,1242,'_thumbnail_id','1244'),(14664,1245,'idioma','Castellano'),(14665,1245,'_idioma','field_5b02f1f144ec1'),(14666,1242,'_yoast_wpseo_primary_category','11'),(14667,1246,'_edit_lock','1614077036:1'),(14668,1246,'_edit_last','1'),(14669,1246,'idioma','Ingles'),(14670,1246,'_idioma','field_5b02f1f144ec1'),(14671,1247,'idioma','Castellano'),(14672,1247,'_idioma','field_5b02f1f144ec1'),(14673,1246,'_yoast_wpseo_content_score','30'),(14674,1246,'_yoast_wpseo_estimated-reading-time-minutes','1'),(14675,1246,'_thumbnail_id','1244'),(14676,1246,'_yoast_wpseo_primary_category','1'),(14680,1248,'idioma','Castellano'),(14681,1248,'_idioma','field_5b02f1f144ec1'),(14682,71,'_yoast_wpseo_estimated-reading-time-minutes','8'),(14683,1249,'_wp_attached_file','2021/02/software-clasificacion-datiles.jpg'),(14684,1249,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1248;s:6:\"height\";i:810;s:4:\"file\";s:42:\"2021/02/software-clasificacion-datiles.jpg\";s:5:\"sizes\";a:6:{s:6:\"medium\";a:4:{s:4:\"file\";s:42:\"software-clasificacion-datiles-300x195.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:195;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:43:\"software-clasificacion-datiles-1024x665.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:665;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:42:\"software-clasificacion-datiles-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:42:\"software-clasificacion-datiles-768x498.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:498;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:42:\"software-clasificacion-datiles-770x440.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:42:\"software-clasificacion-datiles-500x370.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(14687,1250,'idioma','Castellano'),(14688,1250,'_idioma','field_5b02f1f144ec1'),(14691,1251,'idioma','Castellano'),(14692,1251,'_idioma','field_5b02f1f144ec1'),(14693,1249,'_wp_attachment_image_alt','Clasificación de dátiles con inteligencia artificial'),(14697,1253,'idioma','Castellano'),(14698,1253,'_idioma','field_5b02f1f144ec1'),(14702,1246,'_yoast_wpseo_focuskw','Artificial intelligence for date campaign'),(14703,1246,'_yoast_wpseo_title','Artificial intelligence for date campaign in August %%sep%% %%sitename%%'),(14704,1246,'_yoast_wpseo_metadesc','Artificial intelligence of our IngiGrader 2.0% software adapts to any fruit. We will tell you how we do it for dates.'),(14705,1246,'_yoast_wpseo_linkdex','40'),(14709,1254,'idioma','Ingles'),(14710,1254,'_idioma','field_5b02f1f144ec1'),(14711,1255,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"KigCPzI0eV\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=KigCPzI0eV\" data-secret=\"KigCPzI0eV\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14712,1256,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"hZbsXO7c09\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=hZbsXO7c09\" data-secret=\"hZbsXO7c09\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14713,1255,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1614144173'),(14714,1256,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1614144173'),(14715,1255,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"HzmRqJC3Ks\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=HzmRqJC3Ks\" data-secret=\"HzmRqJC3Ks\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14716,1256,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"HCLpjqm0tO\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=HCLpjqm0tO\" data-secret=\"HCLpjqm0tO\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14717,1255,'_oembed_time_807fa3544382f14a6747428fe6bff708','1614144173'),(14718,1256,'_oembed_time_807fa3544382f14a6747428fe6bff708','1614144173'),(14719,1255,'_spam_meta_time','1614144173'),(14720,1255,'_submission_status','spam'),(14721,1256,'_spam_meta_time','1614144173'),(14722,1255,'_subject','[your-subject]'),(14723,1256,'_submission_status','spam'),(14724,1255,'_from','[your-name] <[your-email]>'),(14725,1256,'_subject','[your-subject]'),(14726,1255,'_from_name','[your-name]'),(14727,1256,'_from','[your-name] <[your-email]>'),(14728,1255,'_from_email','[your-email]'),(14729,1256,'_from_name','[your-name]'),(14730,1255,'_field_nombre','IMPORTANT NOTICE'),(14731,1256,'_from_email','[your-email]'),(14732,1255,'_field_email','info@domainregistration.com'),(14733,1256,'_field_nombre','IMPORTANT NOTICE'),(14734,1255,'_field_telefono','+1542384593236'),(14735,1256,'_field_email','info@domainregistration.com'),(14736,1255,'_field_asunto','IMPORTANT NOTICE'),(14737,1256,'_field_telefono','+1542384593236'),(14738,1255,'_field_mensaje','TERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Feb 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email'),(14739,1256,'_field_asunto','IMPORTANT NOTICE'),(14740,1255,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14741,1256,'_field_mensaje','TERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Feb 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email'),(14742,1255,'_meta','a:19:{s:13:\"serial_number\";i:8;s:9:\"remote_ip\";s:12:\"5.181.40.113\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:21:\"24 de febrero de 2021\";s:4:\"time\";s:5:\"05:22\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14743,1256,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14744,1255,'_akismet',NULL),(14745,1256,'_meta','a:19:{s:13:\"serial_number\";i:8;s:9:\"remote_ip\";s:12:\"5.181.40.113\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:21:\"24 de febrero de 2021\";s:4:\"time\";s:5:\"05:22\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14746,1255,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-02-24T05:22:45Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.10000000000000001;s:6:\"action\";s:11:\"contactform\";}}'),(14747,1256,'_akismet',NULL),(14748,1255,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.10) es inferior al umbral (0.50).\";}}'),(14749,1256,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:2:{s:7:\"success\";b:0;s:11:\"error-codes\";a:1:{i:0;s:20:\"timeout-or-duplicate\";}}}'),(14750,1255,'_consent','a:0:{}'),(14751,1256,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.00) es inferior al umbral (0.50).\";}}'),(14752,1255,'_hash','9c6bc8c90dc5a55bfc8b40664c830054'),(14753,1256,'_consent','a:0:{}'),(14754,1256,'_hash','9c6bc8c90dc5a55bfc8b40664c830054'),(14755,1257,'_oembed_0a84f452693614175324452eea2ef007','{{unknown}}'),(14756,1257,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"b4vextqRjt\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=b4vextqRjt\" data-secret=\"b4vextqRjt\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14757,1257,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1614384558'),(14758,1257,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"I8oh2oI401\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=I8oh2oI401\" data-secret=\"I8oh2oI401\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14759,1257,'_oembed_time_807fa3544382f14a6747428fe6bff708','1614384558'),(14760,1257,'_spam_meta_time','1614384559'),(14761,1257,'_submission_status','spam'),(14762,1257,'_subject','[your-subject]'),(14763,1257,'_from','[your-name] <[your-email]>'),(14764,1257,'_from_name','[your-name]'),(14765,1257,'_from_email','[your-email]'),(14766,1257,'_field_nombre','RussellSmilm'),(14767,1257,'_field_email','accsmarket.net@gmaildot.com'),(14768,1257,'_field_telefono','83533198855'),(14769,1257,'_field_asunto','SellAccs'),(14770,1257,'_field_mensaje','✨Premium Seller - 8 years old Twitter Account With 1k+ Followers For Just $50✨ \r\n \r\nRecommended Webpage \r\nhttps://sellaccs.net \r\n \r\nContact \r\nSkype & Telegram : congmmo \r\nICQ : @652720497 \r\nEmail : accsmarket.net@gmail .com \r\n \r\nThanks'),(14771,1257,'_field_submit','Enviar mensaje'),(14772,1257,'_fields','a:6:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;s:6:\"submit\";N;}'),(14773,1257,'_meta','a:19:{s:13:\"serial_number\";i:8;s:9:\"remote_ip\";s:12:\"135.148.2.94\";s:10:\"user_agent\";s:130:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:21:\"27 de febrero de 2021\";s:4:\"time\";s:5:\"00:09\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:34:\"Otro sitio realizado con WordPress\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14774,1257,'_akismet',NULL),(14775,1257,'_recaptcha','a:0:{}'),(14776,1257,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:48:\"El token de respuesta de reCAPTCHA está vacío.\";}}'),(14777,1257,'_consent','a:0:{}'),(14778,1257,'_hash','008e4ab16d0b44988f7362a80c9c8562'),(14779,1259,'_wp_trash_meta_status','publish'),(14780,1259,'_wp_trash_meta_time','1614450291'),(14781,1260,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"jkfYMu4csG\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=jkfYMu4csG\" data-secret=\"jkfYMu4csG\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14782,1260,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1614635149'),(14783,1260,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"UEfBfss0qs\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=UEfBfss0qs\" data-secret=\"UEfBfss0qs\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14784,1260,'_oembed_time_807fa3544382f14a6747428fe6bff708','1614635149'),(14785,1260,'_submission_status','mail_sent'),(14786,1260,'_subject','[your-subject]'),(14787,1260,'_from','[your-name] <[your-email]>'),(14788,1260,'_from_name','[your-name]'),(14789,1260,'_from_email','[your-email]'),(14790,1260,'_field_nombre','Marco cannizzaro '),(14791,1260,'_field_email','cfgsas@hotmail.it'),(14792,1260,'_field_telefono','+393479633842'),(14793,1260,'_field_asunto','Titolare'),(14794,1260,'_field_mensaje','Salve siamo un’azienda che operiamo nel settore ortofrutticolo sarei interessato ad acquistare una calibratrice per poi rivenderla '),(14795,1260,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14796,1260,'_meta','a:19:{s:13:\"serial_number\";i:8;s:9:\"remote_ip\";s:15:\"185.142.169.233\";s:10:\"user_agent\";s:247:\"Mozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBAV/307.0.0.58.109;FBBV/275133629;FBDV/iPhone12,1;FBMD/iPhone;FBSN/iOS;FBSV/14.3;FBSS/2;FBID/phone;FBLC/it_IT;FBOP/5;FBRV/0]\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:18:\"1 de marzo de 2021\";s:4:\"time\";s:5:\"21:45\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14797,1260,'_akismet',NULL),(14798,1260,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-01T21:42:07Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(14799,1260,'_spam_log','a:0:{}'),(14800,1260,'_consent','a:0:{}'),(14801,1260,'_hash','86dbef9d0cfb3e19bba92dc2347db6b6'),(14802,1261,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"ese0a5JL6X\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=ese0a5JL6X\" data-secret=\"ese0a5JL6X\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14803,1261,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1614826826'),(14804,1261,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"ux2l0GWAzD\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=ux2l0GWAzD\" data-secret=\"ux2l0GWAzD\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14805,1261,'_oembed_time_807fa3544382f14a6747428fe6bff708','1614826826'),(14806,1262,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"w2KpxHuy1x\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=w2KpxHuy1x\" data-secret=\"w2KpxHuy1x\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14807,1262,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1614826826'),(14808,1261,'_spam_meta_time','1614826826'),(14809,1261,'_submission_status','spam'),(14810,1262,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"ZCHoGFTY4I\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=ZCHoGFTY4I\" data-secret=\"ZCHoGFTY4I\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14811,1261,'_subject','[your-subject]'),(14812,1262,'_oembed_time_807fa3544382f14a6747428fe6bff708','1614826826'),(14813,1261,'_from','[your-name] <[your-email]>'),(14814,1261,'_from_name','[your-name]'),(14815,1261,'_from_email','[your-email]'),(14816,1261,'_field_nombre','IMPORTANT NOTICE'),(14817,1261,'_field_email','info@domainregistrationcorp.com'),(14818,1261,'_field_telefono','+1542384593234'),(14819,1262,'_spam_meta_time','1614826826'),(14820,1261,'_field_asunto','IMPORTANT NOTICE'),(14821,1262,'_submission_status','spam'),(14822,1261,'_field_mensaje','TERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 03 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email'),(14823,1262,'_subject','[your-subject]'),(14824,1261,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14825,1262,'_from','[your-name] <[your-email]>'),(14826,1261,'_meta','a:19:{s:13:\"serial_number\";i:9;s:9:\"remote_ip\";s:14:\"104.249.27.251\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:18:\"4 de marzo de 2021\";s:4:\"time\";s:5:\"03:00\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14827,1262,'_from_name','[your-name]'),(14828,1261,'_akismet',NULL),(14829,1262,'_from_email','[your-email]'),(14830,1261,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-04T03:00:15Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.29999999999999999;s:6:\"action\";s:11:\"contactform\";}}'),(14831,1262,'_field_nombre','IMPORTANT NOTICE'),(14832,1261,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.30) es inferior al umbral (0.50).\";}}'),(14833,1261,'_consent','a:0:{}'),(14834,1262,'_field_email','info@domainregistrationcorp.com'),(14835,1261,'_hash','889f0a79fd34913fdf5b6f9f28a79355'),(14836,1262,'_field_telefono','+1542384593234'),(14837,1262,'_field_asunto','IMPORTANT NOTICE'),(14838,1262,'_field_mensaje','TERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 03 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email'),(14839,1262,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14840,1262,'_meta','a:19:{s:13:\"serial_number\";i:9;s:9:\"remote_ip\";s:14:\"104.249.27.251\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:18:\"4 de marzo de 2021\";s:4:\"time\";s:5:\"03:00\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14841,1262,'_akismet',NULL),(14842,1262,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-04T03:00:15Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.29999999999999999;s:6:\"action\";s:11:\"contactform\";}}'),(14843,1262,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.30) es inferior al umbral (0.50).\";}}'),(14844,1262,'_consent','a:0:{}'),(14845,1262,'_hash','889f0a79fd34913fdf5b6f9f28a79355'),(14846,1264,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"oNVSlGwjgk\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=oNVSlGwjgk\" data-secret=\"oNVSlGwjgk\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14847,1263,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"7vpOWlVVlU\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=7vpOWlVVlU\" data-secret=\"7vpOWlVVlU\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14848,1264,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1615117150'),(14849,1263,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1615117150'),(14850,1264,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"W9r0AOZTKr\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=W9r0AOZTKr\" data-secret=\"W9r0AOZTKr\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14851,1263,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"sUtoduOdQF\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=sUtoduOdQF\" data-secret=\"sUtoduOdQF\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14852,1264,'_oembed_time_807fa3544382f14a6747428fe6bff708','1615117150'),(14853,1263,'_oembed_time_807fa3544382f14a6747428fe6bff708','1615117150'),(14854,1263,'_spam_meta_time','1615117150'),(14855,1264,'_spam_meta_time','1615117150'),(14856,1263,'_submission_status','spam'),(14857,1264,'_submission_status','spam'),(14858,1263,'_subject','[your-subject]'),(14859,1264,'_subject','[your-subject]'),(14860,1263,'_from','[your-name] <[your-email]>'),(14861,1264,'_from','[your-name] <[your-email]>'),(14862,1263,'_from_name','[your-name]'),(14863,1264,'_from_name','[your-name]'),(14864,1263,'_from_email','[your-email]'),(14865,1264,'_from_email','[your-email]'),(14866,1263,'_field_nombre','IMPORTANT NOTICE'),(14867,1264,'_field_nombre','IMPORTANT NOTICE'),(14868,1263,'_field_email','info@domainregistrationcorp.com'),(14869,1264,'_field_email','info@domainregistrationcorp.com'),(14870,1263,'_field_telefono','+1542384593234'),(14871,1264,'_field_telefono','+1542384593234'),(14872,1263,'_field_asunto','IMPORTANT NOTICE'),(14873,1264,'_field_asunto','IMPORTANT NOTICE'),(14874,1263,'_field_mensaje','Notice#: 491323\r\nDate: 07 Mar 2021\r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN ingyvision.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain ingyvision.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain ingyvision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingyvision.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nACT IMMEDIATELY.\r\n\r\nThe submission notification ingyvision.com will EXPIRE WITHIN 24 HOURS after reception of this email.'),(14875,1264,'_field_mensaje','Notice#: 491323\r\nDate: 07 Mar 2021\r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN ingyvision.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain ingyvision.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain ingyvision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingyvision.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nACT IMMEDIATELY.\r\n\r\nThe submission notification ingyvision.com will EXPIRE WITHIN 24 HOURS after reception of this email.'),(14876,1263,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14877,1264,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14878,1263,'_meta','a:19:{s:13:\"serial_number\";i:9;s:9:\"remote_ip\";s:13:\"77.75.127.203\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:18:\"7 de marzo de 2021\";s:4:\"time\";s:5:\"11:39\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14879,1264,'_meta','a:19:{s:13:\"serial_number\";i:9;s:9:\"remote_ip\";s:13:\"77.75.127.203\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:18:\"7 de marzo de 2021\";s:4:\"time\";s:5:\"11:39\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14880,1263,'_akismet',NULL),(14881,1264,'_akismet',NULL),(14882,1263,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-07T11:39:01Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.10000000000000001;s:6:\"action\";s:11:\"contactform\";}}'),(14883,1264,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-07T11:39:01Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.10000000000000001;s:6:\"action\";s:11:\"contactform\";}}'),(14884,1263,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.10) es inferior al umbral (0.50).\";}}'),(14885,1264,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.10) es inferior al umbral (0.50).\";}}'),(14886,1263,'_consent','a:0:{}'),(14887,1264,'_consent','a:0:{}'),(14888,1263,'_hash','b6b284486af85590307a1d02e13aac27'),(14889,1264,'_hash','b6b284486af85590307a1d02e13aac27'),(14890,1265,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"vM9WTVZkLA\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=vM9WTVZkLA\" data-secret=\"vM9WTVZkLA\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14891,1265,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616099755'),(14892,1266,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"ezkCf66nBW\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=ezkCf66nBW\" data-secret=\"ezkCf66nBW\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14893,1266,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616099755'),(14894,1265,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"qkO3xbuiuE\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=qkO3xbuiuE\" data-secret=\"qkO3xbuiuE\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14895,1265,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616099755'),(14896,1266,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"rKTHj7gKd9\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=rKTHj7gKd9\" data-secret=\"rKTHj7gKd9\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14897,1266,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616099755'),(14898,1265,'_submission_status','mail_sent'),(14899,1265,'_subject','[your-subject]'),(14900,1266,'_submission_status','mail_sent'),(14901,1265,'_from','[your-name] <[your-email]>'),(14902,1266,'_subject','[your-subject]'),(14903,1265,'_from_name','[your-name]'),(14904,1266,'_from','[your-name] <[your-email]>'),(14905,1265,'_from_email','[your-email]'),(14906,1266,'_from_name','[your-name]'),(14907,1265,'_field_nombre','IMPORTANT NOTICE'),(14908,1266,'_from_email','[your-email]'),(14909,1265,'_field_email','info@domainregistrationcorp.com'),(14910,1266,'_field_nombre','IMPORTANT NOTICE'),(14911,1265,'_field_telefono','+1542384593234'),(14912,1266,'_field_email','info@domainregistrationcorp.com'),(14913,1265,'_field_asunto','IMPORTANT NOTICE'),(14914,1266,'_field_telefono','+1542384593234'),(14915,1265,'_field_mensaje','TERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 18 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email'),(14916,1266,'_field_asunto','IMPORTANT NOTICE'),(14917,1265,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14918,1266,'_field_mensaje','TERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 18 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email'),(14919,1265,'_meta','a:19:{s:13:\"serial_number\";i:9;s:9:\"remote_ip\";s:12:\"45.72.74.193\";s:10:\"user_agent\";s:122:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"18 de marzo de 2021\";s:4:\"time\";s:5:\"20:35\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14920,1266,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14921,1265,'_akismet',NULL),(14922,1266,'_meta','a:19:{s:13:\"serial_number\";i:9;s:9:\"remote_ip\";s:12:\"45.72.74.193\";s:10:\"user_agent\";s:122:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"18 de marzo de 2021\";s:4:\"time\";s:5:\"20:35\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14923,1265,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-18T20:35:45Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.69999999999999996;s:6:\"action\";s:11:\"contactform\";}}'),(14924,1266,'_akismet',NULL),(14925,1265,'_spam_log','a:0:{}'),(14926,1266,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-18T20:35:45Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.69999999999999996;s:6:\"action\";s:11:\"contactform\";}}'),(14927,1265,'_consent','a:0:{}'),(14928,1266,'_spam_log','a:0:{}'),(14929,1265,'_hash','8534290b318b12f2a02b9ff79ce3dce1'),(14930,1266,'_consent','a:0:{}'),(14931,1266,'_hash','8534290b318b12f2a02b9ff79ce3dce1'),(14932,1267,'_oembed_cc426331289f4ca92b01ff634b6ed056','{{unknown}}'),(14933,1267,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"XZ56tMkSZN\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=XZ56tMkSZN\" data-secret=\"XZ56tMkSZN\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14934,1267,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616256720'),(14935,1267,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"ReZ0v7qudA\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=ReZ0v7qudA\" data-secret=\"ReZ0v7qudA\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14936,1267,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616256720'),(14937,1267,'_spam_meta_time','1616256720'),(14938,1267,'_submission_status','spam'),(14939,1267,'_subject','[your-subject]'),(14940,1267,'_from','[your-name] <[your-email]>'),(14941,1267,'_from_name','[your-name]'),(14942,1267,'_from_email','[your-email]'),(14943,1267,'_field_nombre','RonaldTah'),(14944,1267,'_field_email','yourmail@gmail.com'),(14945,1267,'_field_telefono','81321953854'),(14946,1267,'_field_asunto','https://coin2x.org'),(14947,1267,'_field_mensaje',' \r\nDoubleBitcoin - Double your bitcoin in 24 hours - Professional Bitcoin Doubler Platform. \r\nClick to : https://coin2x.org'),(14948,1267,'_field_submit','Enviar mensaje'),(14949,1267,'_fields','a:6:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;s:6:\"submit\";N;}'),(14950,1267,'_meta','a:19:{s:13:\"serial_number\";i:11;s:9:\"remote_ip\";s:12:\"135.148.2.94\";s:10:\"user_agent\";s:108:\"Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"20 de marzo de 2021\";s:4:\"time\";s:5:\"16:11\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14951,1267,'_akismet',NULL),(14952,1267,'_recaptcha','a:0:{}'),(14953,1267,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:48:\"El token de respuesta de reCAPTCHA está vacío.\";}}'),(14954,1267,'_consent','a:0:{}'),(14955,1267,'_hash','12195e3f4708eadcc9d658cd25470fac'),(14956,1268,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"DPqQCFxEGq\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=DPqQCFxEGq\" data-secret=\"DPqQCFxEGq\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14957,1268,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616278871'),(14958,1269,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"4uN8v753qE\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=4uN8v753qE\" data-secret=\"4uN8v753qE\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14959,1269,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616278871'),(14960,1268,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"kHMOhT9Y5w\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=kHMOhT9Y5w\" data-secret=\"kHMOhT9Y5w\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14961,1268,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616278871'),(14962,1269,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"LrH8Yl6A4Z\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=LrH8Yl6A4Z\" data-secret=\"LrH8Yl6A4Z\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(14963,1269,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616278871'),(14964,1268,'_spam_meta_time','1616278871'),(14965,1268,'_submission_status','spam'),(14966,1269,'_spam_meta_time','1616278871'),(14967,1268,'_subject','[your-subject]'),(14968,1269,'_submission_status','spam'),(14969,1268,'_from','[your-name] <[your-email]>'),(14970,1269,'_subject','[your-subject]'),(14971,1268,'_from_name','[your-name]'),(14972,1269,'_from','[your-name] <[your-email]>'),(14973,1268,'_from_email','[your-email]'),(14974,1269,'_from_name','[your-name]'),(14975,1268,'_field_nombre','IMPORTANT NOTICE'),(14976,1269,'_from_email','[your-email]'),(14977,1268,'_field_email','info@domainregistrationcorp.com'),(14978,1269,'_field_nombre','IMPORTANT NOTICE'),(14979,1268,'_field_telefono','+1542384593234'),(14980,1269,'_field_email','info@domainregistrationcorp.com'),(14981,1268,'_field_asunto','IMPORTANT NOTICE'),(14982,1269,'_field_telefono','+1542384593234'),(14983,1268,'_field_mensaje','TERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 20 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.'),(14984,1269,'_field_asunto','IMPORTANT NOTICE'),(14985,1268,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14986,1269,'_field_mensaje','TERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 20 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.'),(14987,1268,'_meta','a:19:{s:13:\"serial_number\";i:11;s:9:\"remote_ip\";s:11:\"23.94.60.47\";s:10:\"user_agent\";s:122:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"20 de marzo de 2021\";s:4:\"time\";s:5:\"22:21\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14988,1269,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(14989,1268,'_akismet',NULL),(14990,1269,'_meta','a:19:{s:13:\"serial_number\";i:11;s:9:\"remote_ip\";s:11:\"23.94.60.47\";s:10:\"user_agent\";s:122:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"20 de marzo de 2021\";s:4:\"time\";s:5:\"22:21\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(14991,1268,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-20T22:21:02Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.29999999999999999;s:6:\"action\";s:11:\"contactform\";}}'),(14992,1269,'_akismet',NULL),(14993,1268,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.30) es inferior al umbral (0.50).\";}}'),(14994,1269,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-20T22:21:02Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.29999999999999999;s:6:\"action\";s:11:\"contactform\";}}'),(14995,1268,'_consent','a:0:{}'),(14996,1269,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:64:\"La puntuación de reCAPTCHA (0.30) es inferior al umbral (0.50).\";}}'),(14997,1268,'_hash','2d8808e35859edc7908ed51d5f843e7c'),(14998,1269,'_consent','a:0:{}'),(14999,1269,'_hash','2d8808e35859edc7908ed51d5f843e7c'),(15000,1270,'_oembed_822c46e2362028b5cd62c59b0b3abeb7','{{unknown}}'),(15001,1270,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"KZgnuk4d9K\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=KZgnuk4d9K\" data-secret=\"KZgnuk4d9K\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(15002,1270,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616292592'),(15003,1270,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"vPDwoa7Y3a\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=vPDwoa7Y3a\" data-secret=\"vPDwoa7Y3a\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(15004,1270,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616292592'),(15005,1270,'_spam_meta_time','1616292592'),(15006,1270,'_submission_status','spam'),(15007,1270,'_subject','[your-subject]'),(15008,1270,'_from','[your-name] <[your-email]>'),(15009,1270,'_from_name','[your-name]'),(15010,1270,'_from_email','[your-email]'),(15011,1270,'_field_nombre','AustinCaw'),(15012,1270,'_field_email','yourmail@gmail.com'),(15013,1270,'_field_telefono','85151626628'),(15014,1270,'_field_asunto','https://ether2x.net'),(15015,1270,'_field_mensaje',' \r\nDoubleETHEREUM - Double your ETHEREUM in 24 hours - Professional ETHEREUM Doubler Platform. \r\nClick : https://ether2x.net'),(15016,1270,'_field_submit','Enviar mensaje'),(15017,1270,'_fields','a:6:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;s:6:\"submit\";N;}'),(15018,1270,'_meta','a:19:{s:13:\"serial_number\";i:11;s:9:\"remote_ip\";s:12:\"135.148.2.77\";s:10:\"user_agent\";s:113:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"21 de marzo de 2021\";s:4:\"time\";s:5:\"02:09\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(15019,1270,'_akismet',NULL),(15020,1270,'_recaptcha','a:0:{}'),(15021,1270,'_spam_log','a:1:{i:0;a:2:{s:5:\"agent\";s:9:\"recaptcha\";s:6:\"reason\";s:48:\"El token de respuesta de reCAPTCHA está vacío.\";}}'),(15022,1270,'_consent','a:0:{}'),(15023,1270,'_hash','cd0f00dfb30403a6976666f431fb3372'),(15028,1271,'idioma','Castellano'),(15029,1271,'_idioma','field_5b02f1f144ec1'),(15032,1272,'_edit_lock','1616504038:1'),(15033,1273,'_wp_attached_file','2021/03/AI-machine.learning-deep-learning.png'),(15034,1273,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:599;s:6:\"height\";i:599;s:4:\"file\";s:45:\"2021/03/AI-machine.learning-deep-learning.png\";s:5:\"sizes\";a:4:{s:6:\"medium\";a:4:{s:4:\"file\";s:45:\"AI-machine.learning-deep-learning-300x300.png\";s:5:\"width\";i:300;s:6:\"height\";i:300;s:9:\"mime-type\";s:9:\"image/png\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:45:\"AI-machine.learning-deep-learning-150x150.png\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:9:\"image/png\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:45:\"AI-machine.learning-deep-learning-599x440.png\";s:5:\"width\";i:599;s:6:\"height\";i:440;s:9:\"mime-type\";s:9:\"image/png\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:45:\"AI-machine.learning-deep-learning-500x370.png\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:9:\"image/png\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15035,1273,'_wp_attachment_image_alt','Artifical Intelligente, machine learning y deep learning'),(15036,1272,'_edit_last','1'),(15037,1272,'idioma','Castellano'),(15038,1272,'_idioma','field_5b02f1f144ec1'),(15039,1274,'idioma','Castellano'),(15040,1274,'_idioma','field_5b02f1f144ec1'),(15041,1272,'_yoast_wpseo_content_score','90'),(15042,1272,'_yoast_wpseo_estimated-reading-time-minutes','6'),(15043,1272,'_yoast_wpseo_primary_category','11'),(15044,1275,'idioma','Castellano'),(15045,1275,'_idioma','field_5b02f1f144ec1'),(15046,1276,'_wp_attached_file','2021/03/AI-machine.learning-deep-learning2.jpg'),(15047,1276,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:283;s:6:\"height\";i:283;s:4:\"file\";s:46:\"2021/03/AI-machine.learning-deep-learning2.jpg\";s:5:\"sizes\";a:1:{s:9:\"thumbnail\";a:4:{s:4:\"file\";s:46:\"AI-machine.learning-deep-learning2-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15048,1276,'_wp_attachment_image_alt','Artificial Intelligente, machine learning y deep learning. Diferencias'),(15049,1277,'idioma','Castellano'),(15050,1277,'_idioma','field_5b02f1f144ec1'),(15051,1278,'idioma','Castellano'),(15052,1278,'_idioma','field_5b02f1f144ec1'),(15053,1279,'idioma','Castellano'),(15054,1279,'_idioma','field_5b02f1f144ec1'),(15055,1280,'idioma','Castellano'),(15056,1280,'_idioma','field_5b02f1f144ec1'),(15057,1281,'idioma','Castellano'),(15058,1281,'_idioma','field_5b02f1f144ec1'),(15059,1282,'idioma','Castellano'),(15060,1282,'_idioma','field_5b02f1f144ec1'),(15061,1283,'idioma','Castellano'),(15062,1283,'_idioma','field_5b02f1f144ec1'),(15063,1284,'idioma','Castellano'),(15064,1284,'_idioma','field_5b02f1f144ec1'),(15065,1285,'idioma','Castellano'),(15066,1285,'_idioma','field_5b02f1f144ec1'),(15067,1286,'idioma','Castellano'),(15068,1286,'_idioma','field_5b02f1f144ec1'),(15069,1287,'idioma','Castellano'),(15070,1287,'_idioma','field_5b02f1f144ec1'),(15071,1288,'_wp_attached_file','2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg'),(15072,1288,'_wp_attachment_metadata','a:5:{s:5:\"width\";i:1894;s:6:\"height\";i:810;s:4:\"file\";s:59:\"2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg\";s:5:\"sizes\";a:7:{s:6:\"medium\";a:4:{s:4:\"file\";s:59:\"inteligencia-artificial-clasificacion-aceitunas-300x128.jpg\";s:5:\"width\";i:300;s:6:\"height\";i:128;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:5:\"large\";a:4:{s:4:\"file\";s:60:\"inteligencia-artificial-clasificacion-aceitunas-1024x438.jpg\";s:5:\"width\";i:1024;s:6:\"height\";i:438;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"thumbnail\";a:4:{s:4:\"file\";s:59:\"inteligencia-artificial-clasificacion-aceitunas-150x150.jpg\";s:5:\"width\";i:150;s:6:\"height\";i:150;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:12:\"medium_large\";a:4:{s:4:\"file\";s:59:\"inteligencia-artificial-clasificacion-aceitunas-768x328.jpg\";s:5:\"width\";i:768;s:6:\"height\";i:328;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:9:\"1536x1536\";a:4:{s:4:\"file\";s:60:\"inteligencia-artificial-clasificacion-aceitunas-1536x657.jpg\";s:5:\"width\";i:1536;s:6:\"height\";i:657;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:11:\"imagen-post\";a:4:{s:4:\"file\";s:59:\"inteligencia-artificial-clasificacion-aceitunas-770x440.jpg\";s:5:\"width\";i:770;s:6:\"height\";i:440;s:9:\"mime-type\";s:10:\"image/jpeg\";}s:16:\"imagen-post-mini\";a:4:{s:4:\"file\";s:59:\"inteligencia-artificial-clasificacion-aceitunas-500x370.jpg\";s:5:\"width\";i:500;s:6:\"height\";i:370;s:9:\"mime-type\";s:10:\"image/jpeg\";}}s:10:\"image_meta\";a:12:{s:8:\"aperture\";s:1:\"0\";s:6:\"credit\";s:0:\"\";s:6:\"camera\";s:0:\"\";s:7:\"caption\";s:0:\"\";s:17:\"created_timestamp\";s:1:\"0\";s:9:\"copyright\";s:0:\"\";s:12:\"focal_length\";s:1:\"0\";s:3:\"iso\";s:1:\"0\";s:13:\"shutter_speed\";s:1:\"0\";s:5:\"title\";s:0:\"\";s:11:\"orientation\";s:1:\"0\";s:8:\"keywords\";a:0:{}}}'),(15073,1288,'_wp_attachment_image_alt','Inteligencia Artificial en la clasificación de aceitunas frescas'),(15075,1289,'idioma','Castellano'),(15076,1289,'_idioma','field_5b02f1f144ec1'),(15077,1272,'_yoast_wpseo_focuskw','Inteligencia Artificial: usos en la industria hortofrutícola'),(15078,1272,'_yoast_wpseo_title','Inteligencia Artificial: usos en la industria hortofrutícola %%sep%% %%sitename%%'),(15079,1272,'_yoast_wpseo_metadesc','Te contamos qué es la inteligencia artificial y todo sobre sus aplicaciones en el sector agrícola y hortofrutícola en particular.'),(15080,1272,'_yoast_wpseo_linkdex','63'),(15081,1272,'_thumbnail_id','1288'),(15082,1290,'idioma','Castellano'),(15083,1290,'_idioma','field_5b02f1f144ec1'),(15088,1272,'_wp_old_slug','todo-lo-que-debes-saber-sobre-inteligencia-artificial-y-su-aplicacion-en-la-industria-hortofruticola'),(15089,1291,'idioma','Castellano'),(15090,1291,'_idioma','field_5b02f1f144ec1'),(15099,1294,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"ZtfaEJ2ko8\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=ZtfaEJ2ko8\" data-secret=\"ZtfaEJ2ko8\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(15100,1294,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616541964'),(15101,1294,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"aYNQMpha0y\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=aYNQMpha0y\" data-secret=\"aYNQMpha0y\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(15102,1294,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616541964'),(15103,1294,'_submission_status','mail_sent'),(15104,1294,'_subject','[your-subject]'),(15105,1294,'_from','[your-name] <[your-email]>'),(15106,1294,'_from_name','[your-name]'),(15107,1294,'_from_email','[your-email]'),(15108,1294,'_field_nombre','IMPORTANT NOTICE'),(15109,1294,'_field_email','info@domainregistrationcorp.com'),(15110,1294,'_field_telefono','+1542384593234'),(15111,1294,'_field_asunto','IMPORTANT NOTICE'),(15112,1294,'_field_mensaje','TERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.'),(15113,1294,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(15114,1294,'_meta','a:19:{s:13:\"serial_number\";i:11;s:9:\"remote_ip\";s:13:\"23.94.195.158\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"23 de marzo de 2021\";s:4:\"time\";s:5:\"23:26\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(15115,1294,'_akismet',NULL),(15116,1294,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-23T23:25:54Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(15117,1294,'_spam_log','a:0:{}'),(15118,1294,'_consent','a:0:{}'),(15119,1294,'_hash','caac08037166a1d5fc1f9699fef37ddc'),(15120,1295,'_oembed_1e100c34eb7ae272e0da72759893f8c6','<blockquote class=\"wp-embedded-content\" data-secret=\"TEKnNXv9dC\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=TEKnNXv9dC\" data-secret=\"TEKnNXv9dC\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(15121,1295,'_oembed_time_1e100c34eb7ae272e0da72759893f8c6','1616541964'),(15122,1295,'_oembed_807fa3544382f14a6747428fe6bff708','<blockquote class=\"wp-embedded-content\" data-secret=\"JYejzPTSbx\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=JYejzPTSbx\" data-secret=\"JYejzPTSbx\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>'),(15123,1295,'_oembed_time_807fa3544382f14a6747428fe6bff708','1616541964'),(15124,1295,'_submission_status','mail_sent'),(15125,1295,'_subject','[your-subject]'),(15126,1295,'_from','[your-name] <[your-email]>'),(15127,1295,'_from_name','[your-name]'),(15128,1295,'_from_email','[your-email]'),(15129,1295,'_field_nombre','IMPORTANT NOTICE'),(15130,1295,'_field_email','info@domainregistrationcorp.com'),(15131,1295,'_field_telefono','+1542384593234'),(15132,1295,'_field_asunto','IMPORTANT NOTICE'),(15133,1295,'_field_mensaje','TERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.'),(15134,1295,'_fields','a:5:{s:6:\"nombre\";N;s:5:\"email\";N;s:8:\"Telefono\";N;s:6:\"asunto\";N;s:7:\"mensaje\";N;}'),(15135,1295,'_meta','a:19:{s:13:\"serial_number\";i:11;s:9:\"remote_ip\";s:13:\"23.94.195.158\";s:10:\"user_agent\";s:123:\"Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\";s:3:\"url\";s:36:\"https://www.ingivision.com/contacto/\";s:4:\"date\";s:19:\"23 de marzo de 2021\";s:4:\"time\";s:5:\"23:26\";s:7:\"post_id\";s:2:\"17\";s:9:\"post_name\";s:8:\"contacto\";s:10:\"post_title\";s:8:\"Contacto\";s:8:\"post_url\";s:36:\"https://www.ingivision.com/contacto/\";s:11:\"post_author\";s:10:\"admirae360\";s:17:\"post_author_email\";s:15:\"info@admirae.es\";s:10:\"site_title\";s:10:\"Ingivision\";s:16:\"site_description\";s:69:\"Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.\";s:8:\"site_url\";s:26:\"https://www.ingivision.com\";s:16:\"site_admin_email\";s:15:\"info@admirae.es\";s:10:\"user_login\";s:0:\"\";s:10:\"user_email\";s:0:\"\";s:17:\"user_display_name\";s:0:\"\";}'),(15136,1295,'_akismet',NULL),(15137,1295,'_recaptcha','a:3:{s:7:\"version\";s:3:\"3.0\";s:9:\"threshold\";d:0.5;s:8:\"response\";a:5:{s:7:\"success\";b:1;s:12:\"challenge_ts\";s:20:\"2021-03-23T23:25:54Z\";s:8:\"hostname\";s:18:\"www.ingivision.com\";s:5:\"score\";d:0.90000000000000002;s:6:\"action\";s:11:\"contactform\";}}'),(15138,1295,'_spam_log','a:0:{}'),(15139,1295,'_consent','a:0:{}'),(15140,1295,'_hash','caac08037166a1d5fc1f9699fef37ddc');
/*!40000 ALTER TABLE `ingi_postmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_posts`
--

DROP TABLE IF EXISTS `ingi_posts`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_posts` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_author` bigint(20) unsigned NOT NULL DEFAULT '0',
  `post_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_date_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_title` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_excerpt` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'publish',
  `comment_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `ping_status` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'open',
  `post_password` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `post_name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `to_ping` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `pinged` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_modified` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_modified_gmt` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `post_content_filtered` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `guid` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `menu_order` int(11) NOT NULL DEFAULT '0',
  `post_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'post',
  `post_mime_type` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `comment_count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`ID`),
  KEY `post_name` (`post_name`(191)),
  KEY `type_status_date` (`post_type`,`post_status`,`post_date`,`ID`),
  KEY `post_parent` (`post_parent`),
  KEY `post_author` (`post_author`)
) ENGINE=InnoDB AUTO_INCREMENT=1296 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_posts`
--

LOCK TABLES `ingi_posts` WRITE;
/*!40000 ALTER TABLE `ingi_posts` DISABLE KEYS */;
INSERT INTO `ingi_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (6,1,'2020-06-15 09:40:32','2020-06-15 09:40:32','','Inicio','','publish','closed','closed','','sistema-electronico-para-calibradores','','','2020-08-25 15:47:10','2020-08-25 15:47:10','',0,'https://ingivision.admirae.es/?page_id=6',12,'page','',0),(7,1,'2020-06-15 09:40:32','2020-06-15 09:40:32','','Inicio','','inherit','closed','closed','','6-revision-v1','','','2020-06-15 09:40:32','2020-06-15 09:40:32','',6,'https://ingivision.admirae.es/2020/06/15/6-revision-v1/',0,'revision','',0),(11,1,'2020-06-15 16:17:12','2020-06-15 16:17:12','','¿Por qué ingivision?','','publish','closed','closed','','porque-ingivision','','','2020-09-03 14:37:14','2020-09-03 14:37:14','',0,'https://ingivision.admirae.es/?page_id=11',23,'page','',0),(12,1,'2020-06-15 16:17:12','2020-06-15 16:17:12','','Porque ingivision?','','inherit','closed','closed','','11-revision-v1','','','2020-06-15 16:17:12','2020-06-15 16:17:12','',11,'https://ingivision.admirae.es/2020/06/15/11-revision-v1/',0,'revision','',0),(15,1,'2020-06-15 16:18:05','2020-06-15 16:18:05','','Ingivision','','publish','closed','closed','','ingivision','','','2020-08-13 12:04:42','2020-08-13 12:04:42','',0,'https://ingivision.admirae.es/?page_id=15',26,'page','',0),(16,1,'2020-06-15 16:18:05','2020-06-15 16:18:05','','Ingivision','','inherit','closed','closed','','15-revision-v1','','','2020-06-15 16:18:05','2020-06-15 16:18:05','',15,'https://ingivision.admirae.es/2020/06/15/15-revision-v1/',0,'revision','',0),(17,1,'2020-06-15 16:18:21','2020-06-15 16:18:21','','Contacto','','publish','closed','closed','','contacto','','','2020-09-09 15:47:20','2020-09-09 15:47:20','',0,'https://ingivision.admirae.es/?page_id=17',25,'page','',0),(18,1,'2020-06-15 16:18:21','2020-06-15 16:18:21','','Contacto','','inherit','closed','closed','','17-revision-v1','','','2020-06-15 16:18:21','2020-06-15 16:18:21','',17,'https://ingivision.admirae.es/2020/06/15/17-revision-v1/',0,'revision','',0),(19,1,'2020-06-15 16:18:51','2020-06-15 16:18:51','','Inicio Castellano','','inherit','closed','closed','','6-revision-v1','','','2020-06-15 16:18:51','2020-06-15 16:18:51','',6,'https://ingivision.admirae.es/2020/06/15/6-revision-v1/',0,'revision','',0),(20,1,'2020-06-15 16:49:44','2020-06-15 16:49:44',' ','','','publish','closed','closed','','20','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',0,'https://ingivision.admirae.es/?p=20',9,'nav_menu_item','',0),(23,1,'2020-06-15 16:49:44','2020-06-15 16:49:44',' ','','','publish','closed','closed','','23','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',0,'https://ingivision.admirae.es/?p=23',7,'nav_menu_item','',0),(25,1,'2020-06-17 08:40:46','2020-06-17 08:40:46',' ','','','publish','closed','closed','','inicio','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',0,'https://ingivision.admirae.es/?p=25',1,'nav_menu_item','',0),(27,1,'2020-06-17 15:56:45','2020-06-17 15:56:45','','Inicio','','inherit','closed','closed','','6-revision-v1','','','2020-06-17 15:56:45','2020-06-17 15:56:45','',6,'https://ingivision.admirae.es/2020/06/17/6-revision-v1/',0,'revision','',0),(29,1,'2020-06-18 10:47:21','2020-06-18 10:47:21','','Productos','','publish','closed','closed','','productos','','','2020-08-25 09:08:05','2020-08-25 09:08:05','',0,'https://ingivision.admirae.es/?page_id=29',13,'page','',0),(30,1,'2020-06-18 10:47:21','2020-06-18 10:47:21','','Productos','','inherit','closed','closed','','29-revision-v1','','','2020-06-18 10:47:21','2020-06-18 10:47:21','',29,'https://ingivision.admirae.es/2020/06/18/29-revision-v1/',0,'revision','',0),(31,1,'2020-06-18 10:47:40','2020-06-18 10:47:40','<!-- wp:heading -->\n<h2>\"Fruit sorter retrofit\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque. &nbsp;Esta actualización en máquinas que no son nueva&nbsp; es lo que llamamos retrofit.<br>Nuestros 3 productos, ingiSorter, ingiSorter+ e ingiGrader funcionan en cualquier tipo de máquina. Un retrofit te va a permitir recibir los beneficios de nuestro software de calibración (peso, color, y …) sin el desembolso de capital que implica reemplazar tu calibrador actual&nbsp; por otro nuevo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicio de instalación.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sin preocupaciones.<br>Así es nuestro servicio de instalación para ti. Te aseguramos la perfecta instalación de ingisorter en tus máquinas,&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Servicio de mantenimiento<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soporte</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque nuestro sistema es un sistema de fácil manejo, te damos soporte y formación tanto a tu equipo como a tu cliente final.<br>Tranquilo, unas pocas horas son suficientes para dominar nuestro software.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Actualizaciones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dentro de nuestra filosofía de mejora continua, incluimos la posibilidad de obtener actualizaciones periódicas de Ingisorter, Ingisorter+ e Ingigrader con las mejoras que vamos implementando para que siempre tengas la última tecnología en tus máquinas si así lo quieres.</p>\n<!-- /wp:paragraph -->','Servicios','','publish','closed','closed','','servicios','','','2020-09-03 14:12:00','2020-09-03 14:12:00','',0,'https://ingivision.admirae.es/?page_id=31',22,'page','',0),(32,1,'2020-06-18 10:47:40','2020-06-18 10:47:40','','Servicios','','inherit','closed','closed','','31-revision-v1','','','2020-06-18 10:47:40','2020-06-18 10:47:40','',31,'https://ingivision.admirae.es/2020/06/18/31-revision-v1/',0,'revision','',0),(33,1,'2020-06-18 10:47:57','2020-06-18 10:47:57','','Blog','','publish','closed','closed','','blog','','','2020-09-03 15:00:00','2020-09-03 15:00:00','',0,'https://ingivision.admirae.es/?page_id=33',24,'page','',0),(34,1,'2020-06-18 10:47:57','2020-06-18 10:47:57','','Blog','','inherit','closed','closed','','33-revision-v1','','','2020-06-18 10:47:57','2020-06-18 10:47:57','',33,'https://ingivision.admirae.es/2020/06/18/33-revision-v1/',0,'revision','',0),(35,1,'2020-06-18 10:49:42','2020-06-18 10:49:42',' ','','','publish','closed','closed','','35','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',0,'https://ingivision.admirae.es/?p=35',6,'nav_menu_item','',0),(36,1,'2020-06-18 10:49:42','2020-06-18 10:49:42',' ','','','publish','closed','closed','','36','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',0,'https://ingivision.admirae.es/?p=36',2,'nav_menu_item','',0),(39,1,'2020-06-30 11:57:12','2020-06-30 11:57:12','<div class=\"comment-form\">\r\n<p class=\"comment-form-author\">[text* nombre placeholder \"Nombre\"]</p>\r\n<p class=\"comment-form-email\">[email* email placeholder \"Email\"]</p>\r\n<p class=\"comment-form-author\">[tel* Telefono placeholder \"Telefono\"]</p>\r\n<p class=\"comment-form-email\">[text* asunto placeholder \"Asunto\"]</p>\r\n<div class=\"clearfix\"></div>\r\n<p class=\"comment-form-comment\">[textarea* mensaje placeholder \"Mensaje\"]</p>\r\n<p class=\"submit-form\">\r\n[submit  class:submit class:hvr-shutter-out-verticall \"Enviar mensaje\"]</p>\r\n</div>\n1\nSoclicitud de contacto de Ingivision\nIngivision <ingivision@ingivision.com>\ningivision@ingivision.com\nAsunto:[your-subject]\r\nDe: [your-name]\r\nEmail:[your-email]\r\nTelefono:[Telefono]\r\n\r\nCuerpo del mensaje:\r\n[mensaje]\r\n\r\n-- \r\nEste mensaje se ha enviado desde un formulario de contacto en Ingivision (www.ingivision.com)\n\n\n\n\n\nIngivision «[your-subject]»\nIngivision <wordpress@ingivision.admirae.es>\ninfo@admirae.es\nCuerpo del mensaje:\r\n[your-message]\r\n\r\n-- \r\nEste mensaje se ha enviado desde un formulario de contacto en Ingivision (https://ingivision.admirae.es)\nReply-To: info@admirae.es\n\n\n\nGracias por tu mensaje. Ha sido enviado.\nHa ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\nUno o más campos tienen un error. Por favor, revísalos e inténtalo de nuevo.\nHa ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\nDebes aceptar los términos y condiciones antes de enviar tu mensaje.\nEl campo es obligatorio.\nEl campo es demasiado largo.\nEl campo es demasiado corto.\nEl formato de fecha es incorrecto.\nLa fecha es anterior a la más temprana permitida.\nLa fecha es posterior a la más tardía permitida.\nHa ocurrido un error desconocido al subir el archivo.\nNo tienes permisos para subir archivos de este tipo.\nEl archivo es demasiado grande.\nHa ocurrido un error al subir el archivo.\nEl formato de número no es válido.\nEl número es menor que el mínimo permitido.\nEl número es mayor que el máximo permitido.\nLa respuesta al cuestionario no es correcta.\nLa dirección de correo electrónico que has introducido no es válida.\nLa URL no es válida.\nEl número de teléfono no es válido.','Formulario de contacto 1','','publish','closed','closed','','formulario-de-contacto-1','','','2020-10-28 18:54:05','2020-10-28 18:54:05','',0,'https://ingivision.admirae.es/?post_type=wpcf7_contact_form&#038;p=39',0,'wpcf7_contact_form','',0),(41,1,'2020-07-10 16:47:04','2020-07-10 16:47:04','','IngiSorter','','publish','closed','closed','','ingisorter','','','2020-09-09 17:40:48','2020-09-09 17:40:48','',29,'https://ingivision.admirae.es/?page_id=41',0,'page','',0),(42,1,'2020-07-10 16:47:04','2020-07-10 16:47:04','','IngiSorter','','inherit','closed','closed','','41-revision-v1','','','2020-07-10 16:47:04','2020-07-10 16:47:04','',41,'https://ingivision.admirae.es/2020/07/10/41-revision-v1/',0,'revision','',0),(43,1,'2020-07-10 16:47:51','2020-07-10 16:47:51','','IngiSorter+','','publish','closed','closed','','ingisorter-plus','','','2020-08-25 08:57:19','2020-08-25 08:57:19','',29,'https://ingivision.admirae.es/?page_id=43',0,'page','',0),(44,1,'2020-07-10 16:48:33','2020-07-10 16:48:33','','IngiGrader','','publish','closed','closed','','ingigrader','','','2020-08-25 09:00:00','2020-08-25 09:00:00','',29,'https://ingivision.admirae.es/?page_id=44',0,'page','',0),(45,1,'2020-07-10 16:47:51','2020-07-10 16:47:51','','IngiSorter+','','inherit','closed','closed','','43-revision-v1','','','2020-07-10 16:47:51','2020-07-10 16:47:51','',43,'https://ingivision.admirae.es/2020/07/10/43-revision-v1/',0,'revision','',0),(46,1,'2020-07-10 16:48:33','2020-07-10 16:48:33','','IngiGrader','','inherit','closed','closed','','44-revision-v1','','','2020-07-10 16:48:33','2020-07-10 16:48:33','',44,'https://ingivision.admirae.es/2020/07/10/44-revision-v1/',0,'revision','',0),(47,1,'2020-07-13 18:05:01','2020-07-13 18:05:01',' ','','','publish','closed','closed','','47','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',29,'https://ingivision.admirae.es/?p=47',5,'nav_menu_item','',0),(48,1,'2020-07-13 18:05:01','2020-07-13 18:05:01',' ','','','publish','closed','closed','','48','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',29,'https://ingivision.admirae.es/?p=48',4,'nav_menu_item','',0),(49,1,'2020-07-13 18:05:01','2020-07-13 18:05:01',' ','','','publish','closed','closed','','49','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',29,'https://ingivision.admirae.es/?p=49',3,'nav_menu_item','',0),(52,1,'2020-07-16 11:37:16','2020-07-16 11:37:16','','¿Por que ingivision?','','inherit','closed','closed','','11-revision-v1','','','2020-07-16 11:37:16','2020-07-16 11:37:16','',11,'https://ingivision.admirae.es/2020/07/16/11-revision-v1/',0,'revision','',0),(54,1,'2020-07-20 07:39:20','2020-07-20 07:39:20','','¿Por qué ingivision?','','inherit','closed','closed','','11-revision-v1','','','2020-07-20 07:39:20','2020-07-20 07:39:20','',11,'https://ingivision.admirae.es/2020/07/20/11-revision-v1/',0,'revision','',0),(55,1,'2020-07-27 09:55:36','2020-07-27 09:55:36','<!-- wp:heading -->\n<h2>Aviso legal y términos de uso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En este espacio, el USUARIO, podrá encontrar toda la información relativa a los términos y condiciones legales que definen las relaciones entre los usuarios y nosotros como responsables de esta web. Como usuario, es importante que conozcas estos términos antes de continuar tu navegación. Ingivision SLL.Como responsable de esta web, asume el compromiso de procesar la información de nuestros usuarios y clientes con plenas garantías y cumplir con los requisitos nacionales y europeos que regulan la recopilación y uso de los datos personales de nuestros usuarios. Esta web, por tanto, cumple rigurosamente con el RGPD (REGLAMENTO (UE) 2016/679 de protección de datos) y la LSSI-CE la Ley 34/2002, de 11 de julio, de servicios de la sociedad de la información y de comercio electrónico.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONDICIONES GENERALES DE USO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las presentes Condiciones Generales regulan el uso (incluyendo el mero acceso) de las páginas de la web, integrantes del sitio web de www.ingivision.com incluidos los contenidos y servicios puestos a disposición en ellas. Toda persona que acceda a la web, www.ingivision.com (“Usuario”) acepta someterse a las Condiciones Generales vigentes en cada momento del portal www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DATOS PERSONALES QUE RECABAMOS Y CÓMO LO HACEMOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Leer&nbsp;<a href=\"https://www.ingivision.com/politica-de-privacidad/\">Política de Privacidad</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMPROMISOS Y OBLIGACIONES DE LOS USUARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Usuario queda informado, y acepta, que el acceso a la presente web no supone, en modo alguno, el inicio de una relación comercial con www.ingivision.com. De esta forma, el usuario se compromete a utilizar el sitio Web, sus servicios y contenidos sin contravenir la legislación vigente, la buena fe y el orden público.<br>Queda prohibido el uso de la web, con fines ilícitos o lesivos, o que, de cualquier forma, puedan causar perjuicio o impedir el normal funcionamiento del sitio web. Respecto de los contenidos de esta web, se prohíbe:Su reproducción, distribución o modificación, total o parcial, a menos que se cuente con la autorización de sus legítimos titulares;Cualquier vulneración de los derechos del prestador o de los legítimos titulares;Su utilización para fines comerciales o publicitarios.<br><br>En la utilización de la web, www.ingivision.com, el Usuario se compromete a no llevar a cabo ninguna conducta que pudiera dañar la imagen, los intereses y los derechos de www.ingivision.com o de terceros o que pudiera dañar, inutilizar o sobrecargar el portal (indicar dominio) o que impidiera, de cualquier forma, la normal utilización de la web. No obstante, el Usuario debe ser consciente de que las medidas de seguridad de los sistemas informáticos en Internet no son enteramente fiables y que, por tanto www.ingivision.com no puede garantizar la inexistencia de virus u otros elementos que puedan producir alteraciones en los sistemas informáticos (software y hardware) del Usuario o en sus documentos electrónicos y ficheros contenidos en los mismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>MEDIDAS DE SEGURIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Los datos personales comunicados por el usuario a www.ingivision.com pueden ser almacenados en bases de datos automatizadas o no, cuya titularidad corresponde en exclusiva a www.ingivision.com, asumiendo ésta todas las medidas de índole técnica, organizativa y de seguridad que garantizan la confidencialidad, integridad y calidad de la información contenida en las mismas de acuerdo con lo establecido en la normativa vigente en protección de datos.<br>La comunicación entre los usuarios y www.ingivision.com utiliza un canal seguro, y los datos transmitidos son cifrados gracias a protocolos a https, por tanto, garantizamos las mejores condiciones de seguridad para que la confidencialidad de los usuarios esté garantizada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>RECLAMACIONES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>www.ingivision.com informa que existen hojas de reclamación a disposición de usuarios y clientes. El Usuario podrá realizar reclamaciones solicitando su hoja de reclamación o remitiendo un correo electrónico a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>&nbsp;indicando su nombre y apellidos, el servicio y/o producto adquirido y exponiendo los motivos de su reclamación.<br><br>El usuario/comprador podrá notificarnos la reclamación, bien a través de correo electrónico a:&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>, si lo desea adjuntando el siguiente formulario de reclamación: El servicio/producto: Adquirido el día: Nombre del usuario: Domicilio del usuario: Firma del usuario (solo si se presenta en papel): Fecha: Motivo de la reclamación:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PLATAFORMA DE RESOLUCIÓN DE CONFLICTOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por si puede ser de tu interés, para someter tus reclamaciones puedes utilizar también la plataforma de resolución de litigios que facilita la Comisión Europea y que se encuentra disponible en el siguiente enlace:&nbsp;<a href=\"http://ec.europa.eu/consumers/odr/\">http://ec.europa.eu/consumers/odr/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DERECHOS DE PROPIEDAD INTELECTUAL E INDUSTRIAL</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En virtud de lo dispuesto en los artículos 8 y 32.1, párrafo segundo, de la Ley de Propiedad Intelectual, quedan expresamente prohibidas la reproducción, la distribución y la comunicación pública, incluida su modalidad de puesta a disposición, de la totalidad o parte de los contenidos de esta página web, con fines comerciales, en cualquier soporte y por cualquier medio técnico, sin la autorización de www.ingivision.com. El usuario se compromete a respetar los derechos de Propiedad Intelectual e Industrial titularidad de www.ingivision.com.<br>El usuario conoce y acepta que la totalidad del sitio web, conteniendo sin carácter exhaustivo el texto, software, contenidos (incluyendo estructura, selección, ordenación y presentación de los mismos) podcast, fotografías, material audiovisual y gráficos, está protegida por marcas, derechos de autor y otros derechos legítimos, de acuerdo con los tratados internacionales en los que España es parte y otros derechos de propiedad y leyes de España. En el caso de que un usuario o un tercero consideren que se ha producido una violación de sus legítimos derechos de propiedad intelectual por la introducción de un determinado contenido en la web, deberá notificar dicha circunstancia a www.ingivision.com indicando:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos personales del interesado titular de los derechos presuntamente infringidos, o indicar la representación con la que actúa en caso de que la reclamación la presente un tercero distinto del interesado.</li><li>Señalar los contenidos protegidos por los derechos de propiedad intelectual y su ubicación en la web, la acreditación de los derechos de propiedad intelectual señalados y declaración expresa en la que el interesado se responsabiliza de la veracidad de las informaciones facilitadas en la notificación</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>ENLACES EXTERNOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las páginas de la web www.ingivision.com, podría proporcionar enlaces a otros sitios web propios y contenidos que son propiedad de terceros. El único objeto de los enlaces es proporcionar al Usuario la posibilidad de acceder a dichos enlaces. www.ingivision.com no se responsabiliza en ningún caso de los resultados que puedan derivarse al Usuario por acceso a dichos enlaces.<br>Asimismo, el usuario encontrará dentro de este sitio, páginas, promociones, programas de afiliados que acceden a los hábitos de navegación de los usuarios para establecer perfiles. Esta información siempre es anónima y no se identifica al usuario.<br><br>La Información que se proporcione en estos Sitios patrocinado o enlaces de afiliados está sujeta a las políticas de privacidad que se utilicen en dichos Sitios y no estará sujeta a esta política de privacidad. Por lo que recomendamos ampliamente a los Usuarios a revisar detalladamente las políticas de privacidad de los enlaces de afiliado.<br>El Usuario que se proponga establecer cualquier dispositivo técnico de enlace desde su sitio web al portal www.ingivision.com deberá obtener la autorización previa y escrita de www.ingivision.com El establecimiento del enlace no implica en ningún caso la existencia de relaciones entre www.ingivision.com y el propietario del sitio en el que se establezca el enlace, ni la aceptación o aprobación por parte de www.ingivision.com de sus contenidos o servicios</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>POLÍTICA DE COMENTARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En nuestra web y se permiten realizar comentarios para enriquecer los contenidos y realizar consultas. No se admitirán comentarios que no estén relacionados con la temática de esta web, que incluyan difamaciones, agravios, insultos, ataques personales o faltas de respeto en general hacia el autor o hacia otros miembros. También serán suprimidos los comentarios que contengan información que sea obviamente engañosa o falsa, así como los comentarios que contengan información personal, como, por ejemplo, domicilios privado o teléfonos y que vulneren nuestra política de protección de datos.<br>Se desestimará, igualmente, aquellos comentarios creados sólo con fines promocionales de una web, persona o colectivo y todo lo que pueda ser considerado spam en general.<br>No se permiten comentarios anónimos, así como aquellos realizados por una misma persona con distintos apodos. No se considerarán tampoco aquellos comentarios que intenten forzar un debate o una toma de postura por otro usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSIÓN DE GARANTÍAS Y RESPONSABILIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Prestador no otorga ninguna garantía ni se hace responsable, en ningún caso, de los daños y perjuicios de cualquier naturaleza que pudieran traer causa de:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>La falta de disponibilidad, mantenimiento y efectivo funcionamiento de la web, o de sus servicios y contenidos;</li><li>La existencia de virus, programas maliciosos o lesivos en los contenidos;</li><li>El uso ilícito, negligente, fraudulento o contrario a este Aviso Legal;</li><li>La falta de licitud, calidad, fiabilidad, utilidad y disponibilidad de los servicios prestados por terceros y puestos a disposición de los usuarios en el sitio web.</li><li>El prestador no se hace responsable bajo ningún concepto de los daños que pudieran dimanar del uso ilegal o indebido de la presente página web.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>LEY APLICABLE Y JURISDICCIÓN</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con carácter general las relaciones entre www.ingivision.com con los Usuarios de sus servicios telemáticos, presentes en esta web se encuentran sometidas a la legislación y jurisdicción españolas y a los tribunales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACTO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En caso de que cualquier Usuario tuviese alguna duda acerca de estas Condiciones legales o cualquier comentario sobre el portal www.ingivision.com, por favor diríjase a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De parte del equipo que formamos Ingivision SLL te agradecemos el tiempo dedicado en leer este Aviso Legal</p>\n<!-- /wp:paragraph -->','Aviso legal','','publish','closed','closed','','aviso-legal','','','2020-08-31 09:37:07','2020-08-31 09:37:07','',0,'https://ingivision.admirae.es/?page_id=55',17,'page','',0),(56,1,'2020-07-27 09:55:36','2020-07-27 09:55:36','','Aviso legal','','inherit','closed','closed','','55-revision-v1','','','2020-07-27 09:55:36','2020-07-27 09:55:36','',55,'https://ingivision.admirae.es/2020/07/27/55-revision-v1/',0,'revision','',0),(58,1,'2020-07-27 09:58:45','2020-07-27 09:58:45','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong>&nbsp;INGIVISION SLL<br><strong>Domicilio social:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong>&nbsp;B12893624<br><strong>Teléfono:</strong>&nbsp;+34 964 86 16 55<br><strong>Correo Electrónico:</strong>&nbsp;ingivision@ingivision.com<br><strong>Nombre del dominio:</strong>&nbsp;www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','publish','closed','closed','','politica-de-privacidad','','','2020-08-31 09:34:15','2020-08-31 09:34:15','',0,'https://ingivision.admirae.es/?page_id=58',16,'page','',0),(59,1,'2020-07-27 09:58:45','2020-07-27 09:58:45','','Política de privacidad','','inherit','closed','closed','','58-revision-v1','','','2020-07-27 09:58:45','2020-07-27 09:58:45','',58,'https://ingivision.admirae.es/2020/07/27/58-revision-v1/',0,'revision','',0),(60,1,'2020-07-27 09:59:30','2020-07-27 09:59:30','<!-- wp:heading -->\n<h2>Aviso legal y términos de uso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En este espacio, el USUARIO, podrá encontrar toda la información relativa a los términos y condiciones legales que definen las relaciones entre los usuarios y nosotros como responsables de esta web. Como usuario, es importante que conozcas estos términos antes de continuar tu navegación. Ingivision SLL.Como responsable de esta web, asume el compromiso de procesar la información de nuestros usuarios y clientes con plenas garantías y cumplir con los requisitos nacionales y europeos que regulan la recopilación y uso de los datos personales de nuestros usuarios. Esta web, por tanto, cumple rigurosamente con el RGPD (REGLAMENTO (UE) 2016/679 de protección de datos) y la LSSI-CE la Ley 34/2002, de 11 de julio, de servicios de la sociedad de la información y de comercio electrónico.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONDICIONES GENERALES DE USO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las presentes Condiciones Generales regulan el uso (incluyendo el mero acceso) de las páginas de la web, integrantes del sitio web de www.ingivision.com incluidos los contenidos y servicios puestos a disposición en ellas. Toda persona que acceda a la web, www.ingivision.com (“Usuario”) acepta someterse a las Condiciones Generales vigentes en cada momento del portal www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DATOS PERSONALES QUE RECABAMOS Y CÓMO LO HACEMOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Leer&nbsp;<a href=\"https://www.ingivision.com/politica-de-privacidad/\">Política de Privacidad</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMPROMISOS Y OBLIGACIONES DE LOS USUARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Usuario queda informado, y acepta, que el acceso a la presente web no supone, en modo alguno, el inicio de una relación comercial con www.ingivision.com. De esta forma, el usuario se compromete a utilizar el sitio Web, sus servicios y contenidos sin contravenir la legislación vigente, la buena fe y el orden público.<br>Queda prohibido el uso de la web, con fines ilícitos o lesivos, o que, de cualquier forma, puedan causar perjuicio o impedir el normal funcionamiento del sitio web. Respecto de los contenidos de esta web, se prohíbe:Su reproducción, distribución o modificación, total o parcial, a menos que se cuente con la autorización de sus legítimos titulares;Cualquier vulneración de los derechos del prestador o de los legítimos titulares;Su utilización para fines comerciales o publicitarios.<br><br>En la utilización de la web, www.ingivision.com, el Usuario se compromete a no llevar a cabo ninguna conducta que pudiera dañar la imagen, los intereses y los derechos de www.ingivision.com o de terceros o que pudiera dañar, inutilizar o sobrecargar el portal (indicar dominio) o que impidiera, de cualquier forma, la normal utilización de la web. No obstante, el Usuario debe ser consciente de que las medidas de seguridad de los sistemas informáticos en Internet no son enteramente fiables y que, por tanto www.ingivision.com no puede garantizar la inexistencia de virus u otros elementos que puedan producir alteraciones en los sistemas informáticos (software y hardware) del Usuario o en sus documentos electrónicos y ficheros contenidos en los mismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>MEDIDAS DE SEGURIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Los datos personales comunicados por el usuario a www.ingivision.com pueden ser almacenados en bases de datos automatizadas o no, cuya titularidad corresponde en exclusiva a www.ingivision.com, asumiendo ésta todas las medidas de índole técnica, organizativa y de seguridad que garantizan la confidencialidad, integridad y calidad de la información contenida en las mismas de acuerdo con lo establecido en la normativa vigente en protección de datos.<br>La comunicación entre los usuarios y www.ingivision.com utiliza un canal seguro, y los datos transmitidos son cifrados gracias a protocolos a https, por tanto, garantizamos las mejores condiciones de seguridad para que la confidencialidad de los usuarios esté garantizada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>RECLAMACIONES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>www.ingivision.com informa que existen hojas de reclamación a disposición de usuarios y clientes. El Usuario podrá realizar reclamaciones solicitando su hoja de reclamación o remitiendo un correo electrónico a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>&nbsp;indicando su nombre y apellidos, el servicio y/o producto adquirido y exponiendo los motivos de su reclamación.<br><br>El usuario/comprador podrá notificarnos la reclamación, bien a través de correo electrónico a:&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>, si lo desea adjuntando el siguiente formulario de reclamación: El servicio/producto: Adquirido el día: Nombre del usuario: Domicilio del usuario: Firma del usuario (solo si se presenta en papel): Fecha: Motivo de la reclamación:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PLATAFORMA DE RESOLUCIÓN DE CONFLICTOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por si puede ser de tu interés, para someter tus reclamaciones puedes utilizar también la plataforma de resolución de litigios que facilita la Comisión Europea y que se encuentra disponible en el siguiente enlace:&nbsp;<a href=\"http://ec.europa.eu/consumers/odr/\">http://ec.europa.eu/consumers/odr/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DERECHOS DE PROPIEDAD INTELECTUAL E INDUSTRIAL</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En virtud de lo dispuesto en los artículos 8 y 32.1, párrafo segundo, de la Ley de Propiedad Intelectual, quedan expresamente prohibidas la reproducción, la distribución y la comunicación pública, incluida su modalidad de puesta a disposición, de la totalidad o parte de los contenidos de esta página web, con fines comerciales, en cualquier soporte y por cualquier medio técnico, sin la autorización de www.ingivision.com. El usuario se compromete a respetar los derechos de Propiedad Intelectual e Industrial titularidad de www.ingivision.com.<br>El usuario conoce y acepta que la totalidad del sitio web, conteniendo sin carácter exhaustivo el texto, software, contenidos (incluyendo estructura, selección, ordenación y presentación de los mismos) podcast, fotografías, material audiovisual y gráficos, está protegida por marcas, derechos de autor y otros derechos legítimos, de acuerdo con los tratados internacionales en los que España es parte y otros derechos de propiedad y leyes de España. En el caso de que un usuario o un tercero consideren que se ha producido una violación de sus legítimos derechos de propiedad intelectual por la introducción de un determinado contenido en la web, deberá notificar dicha circunstancia a www.ingivision.com indicando:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos personales del interesado titular de los derechos presuntamente infringidos, o indicar la representación con la que actúa en caso de que la reclamación la presente un tercero distinto del interesado.</li><li>Señalar los contenidos protegidos por los derechos de propiedad intelectual y su ubicación en la web, la acreditación de los derechos de propiedad intelectual señalados y declaración expresa en la que el interesado se responsabiliza de la veracidad de las informaciones facilitadas en la notificación</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>ENLACES EXTERNOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las páginas de la web www.ingivision.com, podría proporcionar enlaces a otros sitios web propios y contenidos que son propiedad de terceros. El único objeto de los enlaces es proporcionar al Usuario la posibilidad de acceder a dichos enlaces. www.ingivision.com no se responsabiliza en ningún caso de los resultados que puedan derivarse al Usuario por acceso a dichos enlaces.<br>Asimismo, el usuario encontrará dentro de este sitio, páginas, promociones, programas de afiliados que acceden a los hábitos de navegación de los usuarios para establecer perfiles. Esta información siempre es anónima y no se identifica al usuario.<br><br>La Información que se proporcione en estos Sitios patrocinado o enlaces de afiliados está sujeta a las políticas de privacidad que se utilicen en dichos Sitios y no estará sujeta a esta política de privacidad. Por lo que recomendamos ampliamente a los Usuarios a revisar detalladamente las políticas de privacidad de los enlaces de afiliado.<br>El Usuario que se proponga establecer cualquier dispositivo técnico de enlace desde su sitio web al portal www.ingivision.com deberá obtener la autorización previa y escrita de www.ingivision.com El establecimiento del enlace no implica en ningún caso la existencia de relaciones entre www.ingivision.com y el propietario del sitio en el que se establezca el enlace, ni la aceptación o aprobación por parte de www.ingivision.com de sus contenidos o servicios</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>POLÍTICA DE COMENTARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En nuestra web y se permiten realizar comentarios para enriquecer los contenidos y realizar consultas. No se admitirán comentarios que no estén relacionados con la temática de esta web, que incluyan difamaciones, agravios, insultos, ataques personales o faltas de respeto en general hacia el autor o hacia otros miembros. También serán suprimidos los comentarios que contengan información que sea obviamente engañosa o falsa, así como los comentarios que contengan información personal, como, por ejemplo, domicilios privado o teléfonos y que vulneren nuestra política de protección de datos.<br>Se desestimará, igualmente, aquellos comentarios creados sólo con fines promocionales de una web, persona o colectivo y todo lo que pueda ser considerado spam en general.<br>No se permiten comentarios anónimos, así como aquellos realizados por una misma persona con distintos apodos. No se considerarán tampoco aquellos comentarios que intenten forzar un debate o una toma de postura por otro usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSIÓN DE GARANTÍAS Y RESPONSABILIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Prestador no otorga ninguna garantía ni se hace responsable, en ningún caso, de los daños y perjuicios de cualquier naturaleza que pudieran traer causa de:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>La falta de disponibilidad, mantenimiento y efectivo funcionamiento de la web, o de sus servicios y contenidos;</li><li>La existencia de virus, programas maliciosos o lesivos en los contenidos;</li><li>El uso ilícito, negligente, fraudulento o contrario a este Aviso Legal;</li><li>La falta de licitud, calidad, fiabilidad, utilidad y disponibilidad de los servicios prestados por terceros y puestos a disposición de los usuarios en el sitio web.</li><li>El prestador no se hace responsable bajo ningún concepto de los daños que pudieran dimanar del uso ilegal o indebido de la presente página web.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>LEY APLICABLE Y JURISDICCIÓN</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con carácter general las relaciones entre www.ingivision.com con los Usuarios de sus servicios telemáticos, presentes en esta web se encuentran sometidas a la legislación y jurisdicción españolas y a los tribunales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACTO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En caso de que cualquier Usuario tuviese alguna duda acerca de estas Condiciones legales o cualquier comentario sobre el portal www.ingivision.com, por favor diríjase a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De parte del equipo que formamos Ingivision SLL te agradecemos el tiempo dedicado en leer este Aviso Legal</p>\n<!-- /wp:paragraph -->','Aviso legal','','inherit','closed','closed','','55-revision-v1','','','2020-07-27 09:59:30','2020-07-27 09:59:30','',55,'https://ingivision.admirae.es/2020/07/27/55-revision-v1/',0,'revision','',0),(61,1,'2020-07-27 10:31:25','2020-07-27 10:31:25','<!-- wp:heading -->\n<h2>Política de Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En esta web se utilizan cookies de terceros y propias para conseguir que tengas una mejor experiencia de navegación, puedas compartir contenido en redes sociales y para que podamos obtener estadísticas de los usuarios.<br><br>Puedes evitar la descarga de cookies a través de la configuración de tu navegador, evitando que las cookies se almacenen en su dispositivo.<br><br>Como propietario de este sitio web, te comunico que no utilizamos ninguna información personal procedente de cookies, tan sólo realizamos estadísticas generales de visitas que no suponen ninguna información personal.<br><br>Es muy importante que leas la presente política de cookies y comprendas que, si continúas navegando, consideraremos que aceptas su uso.<br><br>Según los términos incluidos en el artículo 22.2 de la Ley 34/2002 de Servicios de la Sociedad de la Información y Comercio Electrónico, si continúas navegando, estarás prestando tu consentimiento para el empleo de los referidos mecanismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Entidad Responsable</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La entidad responsable de la recogida, procesamiento y utilización de tus datos personales, en el sentido establecido por la Ley de Protección de Datos Personales es la página www.ingivision.com, propiedad de Ingivision SLL – Av. de la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué son las cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies son un conjunto de datos que un servidor deposita en el navegador del usuario para recoger la información de registro estándar de Internet y la información del comportamiento de los visitantes en un sitio web. Es decir, se trata de pequeños archivos de texto que quedan almacenados en el disco duro del ordenador y que sirven para identificar al usuario cuando se conecta nuevamente al sitio web. Su objetivo es registrar la visita del usuario y guardar cierta información. Su uso es común y frecuente en la web ya que permite a las páginas funcionar de manera más eficiente y conseguir una mayor personalización y análisis sobre el comportamiento del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué tipos de cookies existen?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies utilizadas en nuestro sitio web, son de sesión y de terceros, y nos permiten almacenar y acceder a información relativa al idioma, el tipo de navegador utilizado, y otras características generales predefinidas por el usuario, así como, seguir y analizar la actividad que lleva a cabo, con el objeto de introducir mejoras y prestar nuestros servicios de una manera más eficiente y personalizada.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las cookies, en función de su permanencia, pueden dividirse en cookies de sesión o permanentes. Las que expiran cuando el usuario cierra el navegador. Las que expiran en función de cuando se cumpla el objetivo para el que sirven (por ejemplo, para que el usuario se mantenga identificado en los servicios de Ingivision SLL) o bien cuando se borran manualmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Nombre</td><td>Tipo</td><td>Caducidad</td><td>Finalidad</td><td>Clase</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 años</td><td>Se usa para distinguir usuarios y sesiones.</td><td>No Exenta</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutos</td><td>Se usa para determinar nuevas sesiones o visitas</td><td>No Exenta</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>Al finalizar la sesión</td><td>Se configura para su uso con Urchin</td><td>No Exenta</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 meses</td><td>Almacena el origen o la campaña que explica cómo el usuario ha llegado hasta la página web</td><td>No Exenta</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, en función de su objetivo, las cookies pueden clasificarse de la siguiente forma:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de rendimiento</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de Cookie recuerda sus preferencias para las herramientas que se encuentran en los servicios, por lo que no tiene que volver a configurar el servicio cada vez que usted visita. A modo de ejemplo, en esta tipología se incluyen: Ajustes de volumen de reproductores de vídeo o sonido. Las velocidades de transmisión de vídeo que sean compatibles con su navegador. Los objetos guardados en el “carrito de la compra” en los servicios de e-commerce tales como tiendas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de geo-localización</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estas cookies son utilizadas para averiguar en qué país se encuentra cuando se solicita un servicio. Esta cookie es totalmente anónima, y sólo se utiliza para ayudar a orientar el contenido a su ubicación.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de registro</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies de registro se generan una vez que el usuario se ha registrado o posteriormente ha abierto su sesión, y se utilizan para identificarle en los servicios con los siguientes objetivos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mantener al usuario identificado de forma que, si cierra un servicio, el navegador o el ordenador y en otro momento u otro día vuelve a entrar en dicho servicio, seguirá identificado, facilitando así su navegación sin tener que volver a identificarse. Esta funcionalidad se puede suprimir si el usuario pulsa la funcionalidad [cerrar sesión], de forma que esta cookie se elimina y la próxima vez que entre en el servicio el usuario tendrá que iniciar sesión para estar identificado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Comprobar si el usuario está autorizado para acceder a ciertos servicios, por ejemplo, para participar en un concurso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, algunos servicios pueden utilizar conectores con redes sociales tales como Facebook o Twitter. Cuando el usuario se registra en un servicio con credenciales de una red social, autoriza a la red social a guardar una Cookie persistente que recuerda su identidad y le garantiza acceso a los servicios hasta que expira. El usuario puede borrar esta Cookie y revocar el acceso a los servicios mediante redes sociales actualizando sus preferencias en la red social que específica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de analíticas</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cada vez que un usuario visita un servicio, una herramienta de un proveedor externo genera una cookie analítica en el ordenador del usuario. Esta cookie que sólo se genera en la visita, servirá en próximas visitas a los servicios de Ingivision SLL para identificar de forma anónima al visitante. Los objetivos principales que se persiguen son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Permitir la identificación anónima de los usuarios navegantes a través de la cookie (identifica navegadores y dispositivos, no personas) y por lo tanto la contabilización aproximada del número de visitantes y su tendencia en el tiempo.<br>Identificar de forma anónima los contenidos más visitados y por lo tanto más atractivos para los usuarios Saber si el usuario que está accediendo es nuevo o repite visita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Importante: Salvo que el usuario decida registrarse en un servicio de Ingivision SLL, la cookie nunca irá asociada a ningún dato de carácter personal que pueda identificarle. Dichas cookies sólo serán utilizadas con propósitos estadísticos que ayuden a la optimización de la experiencia de los usuarios en el sitio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de publicidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de cookies permiten ampliar la información de los anuncios mostrados a cada usuario anónimo en los servicios de Ingivision SLL. Entre otros, se almacena la duración o frecuencia de visualización de posiciones publicitarias, la interacción con las mismas, o los patrones de navegación y/o comportamientos del usuario ya que ayudan a conformar un perfil de interés publicitario. De este modo, permiten ofrecer publicidad afín a los intereses del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies publicitarias de terceros</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Además de la publicidad gestionada por las webs de Ingivision SLL en sus servicios, las webs de Ingivision SLL ofrecen a sus anunciantes la opción de servir anuncios a través de terceros (“Ad-Servers”). De este modo, estos terceros pueden almacenar cookies enviadas desde los servicios de Ingivision SLL procedentes de los navegadores de los usuarios, así como acceder a los datos que en ellas se guardan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las empresas que generan estas cookies tienen sus propias políticas de privacidad. En la actualidad, las webs de Ingivision SLL utilizan la plataforma Doubleclick (Google) para gestionar estos servicios. Para más información, acuda a</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://www.google.es/policies/privacy/ads/#toc-doubleclick\">http://www.google.es/policies/privacy/ads/#toc-doubleclick</a>&nbsp;y a&nbsp;<a href=\"http://www.google.es/policies/privacy/ads/\">http://www.google.es/policies/privacy/ads/</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Cómo puedo deshabilitar las cookies en mi navegador?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se pueden configurar los diferentes navegadores para avisar al usuario de la recepción de cookies y, si se desea, impedir su instalación en el equipo. Asimismo, el usuario puede revisar en su navegador qué cookies tiene instaladas y cuál es el plazo de caducidad de las mismas, pudiendo eliminarlas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para ampliar esta información consulte las instrucciones y manuales de su navegador:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Google Chrome:&nbsp;<a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Internet Explorer:&nbsp;<a href=\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions\">http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Mozilla Firefox:&nbsp;<a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we%20\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Safari:&nbsp;<a href=\"http://www.apple.com/es/privacy/use-of-cookies/%20\">http://www.apple.com/es/privacy/use-of-cookies/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Opera:&nbsp;<a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si desea dejar de ser seguido por Google Analytics visite:&nbsp;<a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Actualizaciones y cambios en la política de privacidad/cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las webs de Ingivision SLL pueden modificar esta Política de Cookies en función de exigencias legislativas, reglamentarias, o con la finalidad de adaptar dicha política a las instrucciones dictadas por la Agencia Española de Protección de Datos, por ello se aconseja a los usuarios que la visiten periódicamente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cuando se produzcan cambios significativos en esta Política de Cookies, estos se comunicarán a los usuarios bien mediante la web o a través de correo electrónico a los usuarios registrados.</p>\n<!-- /wp:paragraph -->','Cookies','','publish','closed','closed','','cookies','','','2020-08-31 09:43:38','2020-08-31 09:43:38','',0,'https://ingivision.admirae.es/?page_id=61',18,'page','',0),(62,1,'2020-07-27 10:31:25','2020-07-27 10:31:25','','Cookies','','inherit','closed','closed','','61-revision-v1','','','2020-07-27 10:31:25','2020-07-27 10:31:25','',61,'https://ingivision.admirae.es/2020/07/27/61-revision-v1/',0,'revision','',0),(63,1,'2020-07-27 10:36:43','2020-07-27 10:36:43','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong>&nbsp;INGIVISION SLL<br><strong>Domicilio social:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong>&nbsp;B12893624<br><strong>Teléfono:</strong>&nbsp;+34 964 86 16 55<br><strong>Correo Electrónico:</strong>&nbsp;ingivision@ingivision.com<br><strong>Contacto:</strong><br><strong>Nombre del dominio:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules, Castelló, Spain</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','inherit','closed','closed','','58-revision-v1','','','2020-07-27 10:36:43','2020-07-27 10:36:43','',58,'https://ingivision.admirae.es/2020/07/27/58-revision-v1/',0,'revision','',0),(64,1,'2020-07-27 10:36:50','2020-07-27 10:36:50','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong> INGIVISION SLL<br><strong>Domicilio social:</strong> Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong> B12893624<br><strong>Teléfono:</strong> +34 964 86 16 55<br><strong>Correo Electrónico:</strong> ingivision@ingivision.com<br><strong>Nombre del dominio:</strong> Av. de la Constitució, 71, 12520 Nules, Castelló, Spain</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','inherit','closed','closed','','58-revision-v1','','','2020-07-27 10:36:50','2020-07-27 10:36:50','',58,'https://ingivision.admirae.es/2020/07/27/58-revision-v1/',0,'revision','',0),(65,1,'2020-07-27 10:37:20','2020-07-27 10:37:20','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong> INGIVISION SLL<br><strong>Domicilio social:</strong> Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong> B12893624<br><strong>Teléfono:</strong> +34 964 86 16 55<br><strong>Correo Electrónico:</strong> ingivision@ingivision.com<br><strong>Nombre del dominio:</strong> www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','inherit','closed','closed','','58-revision-v1','','','2020-07-27 10:37:20','2020-07-27 10:37:20','',58,'https://ingivision.admirae.es/2020/07/27/58-revision-v1/',0,'revision','',0),(66,1,'2020-07-27 10:55:34','2020-07-27 10:55:34','<!-- wp:heading -->\n<h2>Política de Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En esta web se utilizan cookies de terceros y propias para conseguir que tengas una mejor experiencia de navegación, puedas compartir contenido en redes sociales y para que podamos obtener estadísticas de los usuarios.<br><br>Puedes evitar la descarga de cookies a través de la configuración de tu navegador, evitando que las cookies se almacenen en su dispositivo.<br><br>Como propietario de este sitio web, te comunico que no utilizamos ninguna información personal procedente de cookies, tan sólo realizamos estadísticas generales de visitas que no suponen ninguna información personal.<br><br>Es muy importante que leas la presente política de cookies y comprendas que, si continúas navegando, consideraremos que aceptas su uso.<br><br>Según los términos incluidos en el artículo 22.2 de la Ley 34/2002 de Servicios de la Sociedad de la Información y Comercio Electrónico, si continúas navegando, estarás prestando tu consentimiento para el empleo de los referidos mecanismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Entidad Responsable</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La entidad responsable de la recogida, procesamiento y utilización de tus datos personales, en el sentido establecido por la Ley de Protección de Datos Personales es la página www.ingivision.com, propiedad de Ingivision SLL – Av. de la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué son las cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies son un conjunto de datos que un servidor deposita en el navegador del usuario para recoger la información de registro estándar de Internet y la información del comportamiento de los visitantes en un sitio web. Es decir, se trata de pequeños archivos de texto que quedan almacenados en el disco duro del ordenador y que sirven para identificar al usuario cuando se conecta nuevamente al sitio web. Su objetivo es registrar la visita del usuario y guardar cierta información. Su uso es común y frecuente en la web ya que permite a las páginas funcionar de manera más eficiente y conseguir una mayor personalización y análisis sobre el comportamiento del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué tipos de cookies existen?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies utilizadas en nuestro sitio web, son de sesión y de terceros, y nos permiten almacenar y acceder a información relativa al idioma, el tipo de navegador utilizado, y otras características generales predefinidas por el usuario, así como, seguir y analizar la actividad que lleva a cabo, con el objeto de introducir mejoras y prestar nuestros servicios de una manera más eficiente y personalizada.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las cookies, en función de su permanencia, pueden dividirse en cookies de sesión o permanentes. Las que expiran cuando el usuario cierra el navegador. Las que expiran en función de cuando se cumpla el objetivo para el que sirven (por ejemplo, para que el usuario se mantenga identificado en los servicios de Ingivision SLL) o bien cuando se borran manualmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Nombre</td><td>Tipo</td><td>Caducidad</td><td>Finalidad</td><td>Clase</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 años</td><td>Se usa para distinguir usuarios y sesiones.</td><td>No Exenta</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutos</td><td>Se usa para determinar nuevas sesiones o visitas</td><td>No Exenta</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>Al finalizar la sesión</td><td>Se configura para su uso con Urchin</td><td>No Exenta</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 meses</td><td>Almacena el origen o la campaña que explica cómo el usuario ha llegado hasta la página web</td><td>No Exenta</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, en función de su objetivo, las cookies pueden clasificarse de la siguiente forma:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de rendimiento</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de Cookie recuerda sus preferencias para las herramientas que se encuentran en los servicios, por lo que no tiene que volver a configurar el servicio cada vez que usted visita. A modo de ejemplo, en esta tipología se incluyen: Ajustes de volumen de reproductores de vídeo o sonido. Las velocidades de transmisión de vídeo que sean compatibles con su navegador. Los objetos guardados en el “carrito de la compra” en los servicios de e-commerce tales como tiendas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de geo-localización</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estas cookies son utilizadas para averiguar en qué país se encuentra cuando se solicita un servicio. Esta cookie es totalmente anónima, y sólo se utiliza para ayudar a orientar el contenido a su ubicación.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de registro</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies de registro se generan una vez que el usuario se ha registrado o posteriormente ha abierto su sesión, y se utilizan para identificarle en los servicios con los siguientes objetivos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mantener al usuario identificado de forma que, si cierra un servicio, el navegador o el ordenador y en otro momento u otro día vuelve a entrar en dicho servicio, seguirá identificado, facilitando así su navegación sin tener que volver a identificarse. Esta funcionalidad se puede suprimir si el usuario pulsa la funcionalidad [cerrar sesión], de forma que esta cookie se elimina y la próxima vez que entre en el servicio el usuario tendrá que iniciar sesión para estar identificado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Comprobar si el usuario está autorizado para acceder a ciertos servicios, por ejemplo, para participar en un concurso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, algunos servicios pueden utilizar conectores con redes sociales tales como Facebook o Twitter. Cuando el usuario se registra en un servicio con credenciales de una red social, autoriza a la red social a guardar una Cookie persistente que recuerda su identidad y le garantiza acceso a los servicios hasta que expira. El usuario puede borrar esta Cookie y revocar el acceso a los servicios mediante redes sociales actualizando sus preferencias en la red social que específica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de analíticas</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cada vez que un usuario visita un servicio, una herramienta de un proveedor externo genera una cookie analítica en el ordenador del usuario. Esta cookie que sólo se genera en la visita, servirá en próximas visitas a los servicios de Ingivision SLL para identificar de forma anónima al visitante. Los objetivos principales que se persiguen son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Permitir la identificación anónima de los usuarios navegantes a través de la cookie (identifica navegadores y dispositivos, no personas) y por lo tanto la contabilización aproximada del número de visitantes y su tendencia en el tiempo.<br>Identificar de forma anónima los contenidos más visitados y por lo tanto más atractivos para los usuarios Saber si el usuario que está accediendo es nuevo o repite visita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Importante: Salvo que el usuario decida registrarse en un servicio de Ingivision SLL, la cookie nunca irá asociada a ningún dato de carácter personal que pueda identificarle. Dichas cookies sólo serán utilizadas con propósitos estadísticos que ayuden a la optimización de la experiencia de los usuarios en el sitio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de publicidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de cookies permiten ampliar la información de los anuncios mostrados a cada usuario anónimo en los servicios de Ingivision SLL. Entre otros, se almacena la duración o frecuencia de visualización de posiciones publicitarias, la interacción con las mismas, o los patrones de navegación y/o comportamientos del usuario ya que ayudan a conformar un perfil de interés publicitario. De este modo, permiten ofrecer publicidad afín a los intereses del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies publicitarias de terceros</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Además de la publicidad gestionada por las webs de Ingivision SLL en sus servicios, las webs de Ingivision SLL ofrecen a sus anunciantes la opción de servir anuncios a través de terceros (“Ad-Servers”). De este modo, estos terceros pueden almacenar cookies enviadas desde los servicios de Ingivision SLL procedentes de los navegadores de los usuarios, así como acceder a los datos que en ellas se guardan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las empresas que generan estas cookies tienen sus propias políticas de privacidad. En la actualidad, las webs de Ingivision SLL utilizan la plataforma Doubleclick (Google) para gestionar estos servicios. Para más información, acuda a</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://www.google.es/policies/privacy/ads/#toc-doubleclick\">http://www.google.es/policies/privacy/ads/#toc-doubleclick</a>&nbsp;y a&nbsp;<a href=\"http://www.google.es/policies/privacy/ads/\">http://www.google.es/policies/privacy/ads/</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Cómo puedo deshabilitar las cookies en mi navegador?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se pueden configurar los diferentes navegadores para avisar al usuario de la recepción de cookies y, si se desea, impedir su instalación en el equipo. Asimismo, el usuario puede revisar en su navegador qué cookies tiene instaladas y cuál es el plazo de caducidad de las mismas, pudiendo eliminarlas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para ampliar esta información consulte las instrucciones y manuales de su navegador:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Google Chrome:&nbsp;<a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Internet Explorer:&nbsp;<a href=\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions\">http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Mozilla Firefox:&nbsp;<a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we%20\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Safari:&nbsp;<a href=\"http://www.apple.com/es/privacy/use-of-cookies/%20\">http://www.apple.com/es/privacy/use-of-cookies/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Opera:&nbsp;<a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si desea dejar de ser seguido por Google Analytics visite:&nbsp;<a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Actualizaciones y cambios en la política de privacidad/cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las webs de Ingivision SLL pueden modificar esta Política de Cookies en función de exigencias legislativas, reglamentarias, o con la finalidad de adaptar dicha política a las instrucciones dictadas por la Agencia Española de Protección de Datos, por ello se aconseja a los usuarios que la visiten periódicamente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cuando se produzcan cambios significativos en esta Política de Cookies, estos se comunicarán a los usuarios bien mediante la web o a través de correo electrónico a los usuarios registrados.</p>\n<!-- /wp:paragraph -->','Cookies','','inherit','closed','closed','','61-revision-v1','','','2020-07-27 10:55:34','2020-07-27 10:55:34','',61,'https://ingivision.admirae.es/2020/07/27/61-revision-v1/',0,'revision','',0),(71,1,'2020-08-04 08:55:38','2020-08-04 08:55:38','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizamos todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Nos referimos a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogénea y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','publish','closed','closed','','que-es-control-de-calidad-en-frutas','','','2021-02-23 09:53:25','2021-02-23 09:53:25','',0,'https://ingivision.admirae.es/?p=71',0,'post','',0),(72,1,'2020-08-04 08:48:51','2020-08-04 08:48:51','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 08:48:51','2020-08-04 08:48:51','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(73,1,'2020-08-04 08:55:38','2020-08-04 08:55:38','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y si quieres añadir algún punto de vista o aportar algo al post, nos encantará leer tu comentario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 08:55:38','2020-08-04 08:55:38','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(76,1,'2020-08-04 11:25:34','2020-08-04 11:25:34','','calidad-en-las-frutas-hortalizas','','inherit','open','closed','','calidad-en-las-frutas-hortalizas','','','2020-08-04 11:26:09','2020-08-04 11:26:09','',0,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg',0,'attachment','image/jpeg',0),(77,1,'2020-08-04 11:28:55','2020-08-04 11:28:55','','calibrado-de-frutas','','inherit','open','closed','','calibrado-de-frutas','','','2020-08-04 11:29:15','2020-08-04 11:29:15','',0,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas.jpg',0,'attachment','image/jpeg',0),(78,1,'2020-08-04 11:29:24','2020-08-04 11:29:24','','control-calidad-hortofruticola','','inherit','open','closed','','control-calidad-hortofruticola','','','2020-08-04 11:29:52','2020-08-04 11:29:52','',0,'https://ingivision.admirae.es/wp-content/uploads/2020/08/control-calidad-hortofruticola.png',0,'attachment','image/png',0),(79,1,'2020-08-04 11:52:19','2020-08-04 11:52:19','','vlcsnap-2020-06-18-13h20m26s577','','inherit','open','closed','','vlcsnap-2020-06-18-13h20m26s577','','','2020-08-04 11:52:19','2020-08-04 11:52:19','',71,'https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577.png',0,'attachment','image/png',0),(82,1,'2020-08-04 13:37:38','2020-08-04 13:37:38','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 13:37:38','2020-08-04 13:37:38','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(84,1,'2020-08-04 13:51:52','2020-08-04 13:51:52','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 13:51:52','2020-08-04 13:51:52','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(85,1,'2020-08-04 13:52:35','2020-08-04 13:52:35','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 13:52:35','2020-08-04 13:52:35','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(87,1,'2020-08-04 14:53:45','2020-08-04 14:53:45','','home1','','inherit','open','closed','','home1','','','2020-08-04 14:53:45','2020-08-04 14:53:45','',0,'https://ingivision.admirae.es/wp-content/uploads/2020/08/home1.png',0,'attachment','image/png',0),(88,1,'2020-08-04 14:56:40','2020-08-04 14:56:40',' ','','','publish','closed','closed','','88','','','2021-01-18 12:57:18','2021-01-18 12:57:18','',0,'https://ingivision.admirae.es/?p=88',8,'nav_menu_item','',0),(89,1,'2020-08-04 15:07:41','2020-08-04 15:07:41','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 15:07:41','2020-08-04 15:07:41','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(90,1,'2020-08-04 15:10:06','2020-08-04 15:10:06','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 15:10:06','2020-08-04 15:10:06','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(91,1,'2020-08-04 15:10:41','2020-08-04 15:10:41','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 15:10:41','2020-08-04 15:10:41','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(92,1,'2020-08-04 15:10:54','2020-08-04 15:10:54','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogéneo y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-04 15:10:54','2020-08-04 15:10:54','',71,'https://ingivision.admirae.es/2020/08/04/71-revision-v1/',0,'revision','',0),(93,1,'2020-08-04 16:59:16','2020-08-04 16:59:16','<!-- wp:heading -->\n<h2>\"Fruit sorter retrofit\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.  Esta actualización en máquinas que no son nueva  es lo que llamamos retrofit.<br>Nuestros 3 productos, ingiSorter, ingiSorter+ e ingiGrader funcionan en cualquier tipo de máquina. Un retrofit te va a permitir recibir los beneficios de nuestro software de calibración (peso, color, y …) sin el desembolso de capital que implica reemplazar tu calibrador actual  por otro nuevo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicio de instalación.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sin preocupaciones.<br>Así es nuestro servicio de instalación para ti. Te aseguramos la perfecta instalación de ingisorter en tus máquinas, </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Servicio de mantenimiento<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soporte</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque nuestro sistema es un sistema de fácil manejo, te damos soporte y formación tanto a tu equipo como a tu cliente final.<br>Tranquilo, unas pocas horas son suficientes para dominar nuestro software.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Actualizaciones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dentro de nuestra filosofía de mejora continua, incluimos la posibilidad de obtener actualizaciones periódicas de Ingisorter, Ingisorter+ e Ingigrader con las mejoras que vamos implementando para que siempre tengas la última tecnología en tus máquinas si así lo quieres.</p>\n<!-- /wp:paragraph -->','Servicios','','inherit','closed','closed','','31-revision-v1','','','2020-08-04 16:59:16','2020-08-04 16:59:16','',31,'https://ingivision.admirae.es/2020/08/04/31-revision-v1/',0,'revision','',0),(94,1,'2020-08-04 17:58:22','2020-08-04 17:58:22','<!-- wp:heading -->\n<h2>\"Fruit sorter retrofit\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque. &nbsp;Esta actualización en máquinas que no son nueva&nbsp; es lo que llamamos retrofit.<br>Nuestros 3 productos, ingiSorter, ingiSorter+ e ingiGrader funcionan en cualquier tipo de máquina. Un retrofit te va a permitir recibir los beneficios de nuestro software de calibración (peso, color, y …) sin el desembolso de capital que implica reemplazar tu calibrador actual&nbsp; por otro nuevo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicio de instalación.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sin preocupaciones.<br>Así es nuestro servicio de instalación para ti. Te aseguramos la perfecta instalación de ingisorter en tus máquinas,&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Servicio de mantenimiento<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soporte</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque nuestro sistema es un sistema de fácil manejo, te damos soporte y formación tanto a tu equipo como a tu cliente final.<br>Tranquilo, unas pocas horas son suficientes para dominar nuestro software.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Actualizaciones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dentro de nuestra filosofía de mejora continua, incluimos la posibilidad de obtener actualizaciones periódicas de Ingisorter, Ingisorter+ e Ingigrader con las mejoras que vamos implementando para que siempre tengas la última tecnología en tus máquinas si así lo quieres.</p>\n<!-- /wp:paragraph -->','Servicios','','inherit','closed','closed','','31-revision-v1','','','2020-08-04 17:58:22','2020-08-04 17:58:22','',31,'https://ingivision.admirae.es/2020/08/04/31-revision-v1/',0,'revision','',0),(95,1,'2020-08-05 10:17:44','2020-08-05 10:17:44','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogénea y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-05 10:17:44','2020-08-05 10:17:44','',71,'https://ingivision.admirae.es/2020/08/05/71-revision-v1/',0,'revision','',0),(97,1,'2020-08-13 11:55:05','2020-08-13 11:55:05','a:7:{s:8:\"location\";a:2:{i:0;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"page\";}}i:1;a:1:{i:0;a:3:{s:5:\"param\";s:9:\"post_type\";s:8:\"operator\";s:2:\"==\";s:5:\"value\";s:4:\"post\";}}}s:8:\"position\";s:4:\"side\";s:5:\"style\";s:7:\"default\";s:15:\"label_placement\";s:3:\"top\";s:21:\"instruction_placement\";s:5:\"label\";s:14:\"hide_on_screen\";s:0:\"\";s:11:\"description\";s:0:\"\";}','Idioma','idioma','publish','closed','closed','','group_5bcdb6454b6f8','','','2020-08-18 15:12:06','2020-08-18 15:12:06','',0,'https://ingivision.admirae.es/?p=97',1,'acf-field-group','',0),(98,1,'2020-08-13 11:55:05','2020-08-13 11:55:05','a:13:{s:4:\"type\";s:6:\"select\";s:12:\"instructions\";s:20:\"Selecciona el idioma\";s:8:\"required\";i:1;s:17:\"conditional_logic\";i:0;s:7:\"wrapper\";a:3:{s:5:\"width\";s:0:\"\";s:5:\"class\";s:0:\"\";s:2:\"id\";s:0:\"\";}s:7:\"choices\";a:2:{s:10:\"Castellano\";s:10:\"Castellano\";s:6:\"Ingles\";s:6:\"Ingles\";}s:13:\"default_value\";s:10:\"Castellano\";s:10:\"allow_null\";i:0;s:8:\"multiple\";i:0;s:2:\"ui\";i:0;s:13:\"return_format\";s:5:\"value\";s:4:\"ajax\";i:0;s:11:\"placeholder\";s:0:\"\";}','idioma','idioma','publish','closed','closed','','field_5b02f1f144ec1','','','2020-08-13 11:55:29','2020-08-13 11:55:29','',97,'https://ingivision.admirae.es/?post_type=acf-field&#038;p=98',0,'acf-field','',0),(99,1,'2020-08-13 12:12:32','2020-08-13 12:12:32','<!-- wp:heading {\"level\":1} -->\n<h1>ELECTRONIC CALIBRATION SYSTEM</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>The difficulty of acheiving simplicity.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Like you, we love simplicity, which is why we developed and implemented our easy-to-use electronic calibration system. We think that simple is best. We looked at how easy it is to use Google, Netflix, and WhatsApp, and we brought that simplicity to our system so that anyone can use it anywhere.<br>Implmenting our software in your machines gives:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"https://www.ingivision.com/en/#\">Fewer components.</a></li><li><a href=\"https://www.ingivision.com/en/#\">A single program adaptable to any type of calibration.</a></li><li><a href=\"https://www.ingivision.com/en/#\">Effectiveness and efficiency in the fruit and vegetable grading process.</a></li><li><a href=\"https://www.ingivision.com/en/#\">Excellent money value.</a></li><li><a href=\"https://www.ingivision.com/en/#\">Superior performance in evaluating weight, size, color, shape and fruit defects. Up to 30 pieces/second.</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/#\">Learn About Our System</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>OUR SOLUTIONS</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>Electronic systems for any type of sorter</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingisorter.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/services/service1.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/Ingisorter-icono.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><a href=\"https://www.ingivision.com/en/products/ingisorter/\">ingiSorter</a></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our software is very competitive<br>in price and it is our best selling<br>product.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><a href=\"https://www.ingivision.com/en/products/ingisorter/\">READ MORE</a></h4>\n<!-- /wp:heading -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingisorter-plus.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/services/service2.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/Ingisorter-polus-icono.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><a href=\"https://www.ingivision.com/en/products/ingisorter-2/\">IngiSorter+</a></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This has all the features of the IngiSorter, but comes with a plus: more multicapture optical functions, color/surface ratio, etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><a href=\"https://www.ingivision.com/en/products/ingisorter-2/\">READ MORE</a></h4>\n<!-- /wp:heading -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingigrader.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/services/service3.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingigrader-icono.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><a href=\"https://www.ingivision.com/en/products/ingigrader/\">ingiGrader</a></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This one has all the features of the IngiSorter+ but with a developed artificial intelligence system in order to detect external defects on the fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><a href=\"https://www.ingivision.com/en/products/ingigrader/\">READ MORE</a></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>We have more than 20 years experience installing our fruit and vegeatble grading systems.</strong>At INGIVISION, we have installed more than 400 systems throughout the world.<img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home9.jpg\" alt=\"image\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Calibradores</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>What is said about us:</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>Satisfied customers:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home1.png\" alt=\"image\">Jordi RuizManager</li><li><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home8.png\" alt=\"image\">Javier Córdoba LinaresManager</li><li><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home9.png\" alt=\"image\">Andrés Daniel SoleraLogistics Operations and Commercial Manager</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>”I met Alejandro and Vicente at the fair, and they immediately made me feel confident. I was surprised by how quickly they responded, offering me just what I needed to improve the results of my grading line”<strong>25 NOV, 2017</strong></li><li>“We have a fruit and vegetable machinery workshop. We needed a company that would give us the optical technology for our machinery and optical hardware because we are in charge of the mechanics. With INGVISION, we found the perfect ally”<strong>7 AGO, 2018</strong></li><li>“To date, we have added INGIVISION´s IngiSorter products in 25 new grading lines. The INGVISION´s team came to install the first ones and taught us how to use them. The software is very intuitive and is personalized with our logo and language. 100% recomendable”<strong>12 ENE, 2015</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><a href=\"https://www.ingivision.com/en/#\">1</a></li><li><a href=\"https://www.ingivision.com/en/#\">2</a></li><li><a href=\"https://www.ingivision.com/en/#\">3</a></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>WHY INGIVISION?</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>We want to be your “external electronic deparment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We know that developing the electronics for machinery is complex. Therefore, we would like to help you by being your “external electronic deparment.”</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>01User-friendly software</li><li>02Free forever general updates</li><li>03After-sales service. We do not lose contact with you after installing our systems. We will continue to give the support you need.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/\">Learn More</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home13.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home4.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Adaptable electronic and computer system for fruit graders</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADAPTABLE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>YOUR DOUBTS</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>Frequently asked questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What does our classification system include?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not included</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What is special about our software?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Does this system offer sufficent guarantees?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/#\">more than 20 years of experience in developing and implementing electronic</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/#\">+34 964 86 16 55</a>REQUEST YOUR BUDGET NOW&nbsp;READY IN 24H</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home20.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>FEEL FREE TO CONTACT US<strong>Increases the effectiveness and efficency of the fruit and vegetable sorting process.</strong></p>\n<!-- /wp:paragraph -->','Home','','publish','closed','closed','','en','','','2020-09-01 07:56:06','2020-09-01 07:56:06','',0,'https://ingivision.admirae.es/?page_id=99',34,'page','',0),(100,1,'2020-08-13 14:57:40','2020-08-13 14:57:40','<!-- wp:heading -->\n<h2>PRIVACY</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible - who is responsible for data processing?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identity:</strong>&nbsp;INGIVISION SLL<br><strong>Registered office:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong>&nbsp;B12893624<br><strong>Telephone:</strong>&nbsp;+34 964 86 16 55<br><strong>Email:</strong>&nbsp;ingivision@ingivision.com<br><strong>Domain name:</strong>&nbsp;www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purposes - for what purposes do we process your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In compliance with the provisions of the European Regulation 2016/679 General Data Protection, we inform you that we will treat the data you provide us to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Manage the contracting of services that you carry out through the Platform, as well as the corresponding billing and delivery.</li><li>Periodically send communications about services, events and news related to the activities developed by INGIVISION SLL, by any means (telephone, postal mail or email), unless otherwise indicated or the user opposes or revokes their consent.</li><li>Send commercial and / or promotional information related to the contracted service sector and added value for end users, unless otherwise indicated or the user opposes or revokes their consent.</li><li>Complying with the legally established obligations, as well as verifying compliance with contractual obligations, included the prevention of fraud.</li><li>Transfer of data to organizations and authorities, as long as they are required in accordance with the legal and regulatory provisions.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Data categories - What data do we process?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derived from the aforementioned purposes, in INGIVISION SLL we manage the following categories of data:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Identifying data</li><li>Electronic communications metadata</li><li>Commercial information data. In the event that the user provides data from third parties, they declare that they have their consent and undertake to transfer the information contained in this clause, exempting INGIVISION SLL from any responsibility in this regard.</li><li>However, INGIVISION SLL may carry out the verifications to verify this fact, adopting the corresponding due diligence measures, in accordance with the data protection regulations.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimation - what is the legitimacy for the processing of your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The processing of data whose purpose is to send periodic bulletins (newslettering) about services, events and news related to our professional activity is based on the consent of the interested party, expressly requested to carry out said treatments, in accordance with current regulations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition, the legitimacy for the processing of data related to offers or collaborations is based on the consent of the user who submits their data, which can be withdrawn at any time, although this may affect the possible fluid communication and obstruction of processes. you want to do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, the data may be used to comply with the legal obligations applicable to INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Data Conservation Period - How long will we keep your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL will keep the personal data of the users only for the time necessary to carry out the purposes for which they were collected, as long as it does not revoke the consents granted. Subsequently, if necessary, it will keep the information blocked during the legally established periods.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Recipients To which recipients will your data be communicated?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your data may be accessed by those providers that provide services to INGIVISION SLL, such as hosting services, marketing tools and content systems or other professionals, when such communication is legally necessary, or for the execution of the contracted services.<br><br>INGIVISION SLL, has signed the corresponding treatment order contracts with each of the providers that provide services to INGIVISION SLL, with the aim of guaranteeing that said providers will treat your data in accordance with the provisions of current legislation.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They may also be transferred to the State Security Forces and Bodies in cases where there is a legal obligation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Banks and financial entities, for the collection of services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Public administrations with competence in the sectors of activity, when established by current regulations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Information Security - What security measures do we implement to take care of your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To protect the different types of data reflected in this privacy policy, it will carry out the necessary technical security measures to prevent its loss, manipulation, dissemination or alteration.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encryption of information on INGIVISION SLL\'s own servers</li><li>Other measures that prevent access to user data by third parties</li><li>In those cases in which INGIVISION SLL has service providers for the maintenance of the platform that are outside the European Union, these international transfers have been regularized according to the commitment of</li><li>INGIVISION SLL with the protection, integrity and security of users\' personal data.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Rights - What are your rights when you provide us with your data and how can you exercise them?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You have the right to obtain confirmation about whether INGIVISION SLL is treating personal data that concerns you, or not. Likewise, you have the right to access your personal data, as well as to request the rectification of inaccurate data or, where appropriate, request its deletion when, among other reasons, the data is no longer necessary for the purposes for which it was collected.<br><br>In certain circumstances, you may request the limitation of the processing of your data, in which case we will only keep it for the exercise or defense of claims.<br><br>In certain circumstances and for reasons related to your particular situation, you may oppose the processing of your data. INGIVISION SLL will stop processing the data, except for compelling legitimate reasons, or the exercise or defense of possible claims. Likewise, you can exercise the right to data portability, as well as withdraw the consents provided at any time, without affecting the legality of the treatment based on the consent prior to its withdrawal. <br><br>If you wish to make use of any of your rights, you can contact <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>. <br><br>Finally, we inform you that you can contact the Spanish Data Protection Agency and other competent public bodies for any claim arising from the processing of your personal data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modification of the privacy policy</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL may modify this Privacy Policy at any time, the successive versions being published on the Website. In any case, INGIVISION SLL will communicate with prior notice the modifications to this policy that affect users so that they can accept them. This Privacy Policy is updated on 12/27/2018 INGIVISION SLL (Spain). All rights reserved. <br><br>If you wish, you can also consult our Cookies Policy Legal notice<br></p>\n<!-- /wp:paragraph -->','Privacy Policy','','publish','closed','closed','','politica-de-privacidad','','','2020-09-09 16:11:29','2020-09-09 16:11:29','',99,'https://ingivision.admirae.es/?page_id=100',3,'page','',0),(101,1,'2020-08-13 14:56:47','2020-08-13 14:56:47','<!-- wp:heading -->\n<h2>Legal notice and terms of use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In this space, the USER will be able to find all the information related to the legal terms and conditions that define the relationships between users and us as responsible for this website. As a user, it is important that you know these terms before continuing your navigation. Ingivision SLL. As responsible for this website, it assumes the commitment to process the information of our users and clients with full guarantees and to comply with the national and European requirements that regulate the collection and use of the personal data of our users. This website, therefore, strictly complies with the RGPD (REGULATION (EU) 2016/679 on data protection) and the LSSI-CE Law 34/2002, of July 11, on services of the information society and electronic commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>GENERAL CONDITIONS OF USE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These General Conditions regulate the use (including mere access) of the web pages, members of the www.ingivision.com website, including the contents and services made available in them. Any person who accesses the web, www.ingivision.com (\"User\") agrees to be bound by the General Conditions in force at all times of the www.ingivision.com portal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PERSONAL DATA WE COLLECT AND HOW WE DO IT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Read Privacy Policy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMITMENTS AND OBLIGATIONS OF THE USERS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The User is informed, and accepts, that access to this website does not imply, in any way, the beginning of a commercial relationship with www.ingivision.com. In this way, the user agrees to use the website, its services and content without violating current legislation, good faith and public order.<br>The use of the website is prohibited, for illegal or harmful purposes, or that, in any way, may cause damage or prevent the normal functioning of the website. Regarding the contents of this website, its reproduction, distribution or modification, in whole or in part, unless it has the authorization of its legitimate owners is prohibited.&nbsp; Any violation of the rights of the provider or of the legitimate owners and&nbsp; its use for commercial or advertising purposes is also prohibited.<br><br>When using the website, www.ingivision.com, the User agrees not to carry out any conduct that could damage the image, interests and rights of www.ingivision.com or third parties or that could damage, disable or overload the portal (indicate domain) or prevent in any way the normal use of the web. However, the User must be aware that the security measures of computer systems on the Internet are not entirely reliable and therefore www.ingivision.com cannot guarantee the absence of viruses or other elements that may cause alterations in the computer systems (software and hardware) of the User or in their electronic documents and files contained therein.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>SECURITY MEASURES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>L</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The personal data communicated by the user to www.ingivision.com can be stored or not in automated databases&nbsp; whose ownership corresponds exclusively to www.ingivision.com. INGIVISION SLL takes responsibility for&nbsp; all the technical, organizational and security measures that guarantee the confidentiality, integrity and quality of the information contained therein in accordance with the provisions of current regulations on data protection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL (www.ingivision.com) uses a secure channel to communicate with its users. The transmitted data is encrypted thanks to https protocols, therefore, INGIVISION SLL guarantees the best security conditions so that confidentiality of the users is guaranteed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CLAIMS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Claim sheets are available to users and customers.&nbsp; Users may make claims by requesting the claim form or by sending an email to&nbsp; <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a> indicating&nbsp; name and surname, the service and / or product purchased and stating the reasons for their claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user/buyer may notify us of the claim either by e-mail to ingivision invigision.com****attaching the following claim form: The service/product, date of purchase, user´s name and address, signature (only if presented on paper) date of claim, and reason for claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONFLICT RESOLUTION PLATFORM</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In submitting a claim, the dispute resolution platform provided by the European Commission can also be used. It is available at the following link: <a href=\"http://ee.europa.eu/consumers/ord\">http://ee.europa.eu/consumers/ord</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>NTELLECTUAL AND INDUSTRIAL PROPERTY RIGHTS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Personal data of the interested party who owns the rights allegedly infringed, or indicate the representation with which he acts in the event that the claim is presented by a third party other than the interested party.</li><li>Point out the contents protected by intellectual property rights and their location on the web, the accreditation of the intellectual property rights indicated and an express declaration in which the interested party is responsible for the veracity of the information provided in the notification.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXTERNAL LINKS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>for the veracity of the information provided in the notification EXTERNAL LINKS The pages of the web www.ingivision.com, could provide links to other own websites and content that are owned by third parties. The sole purpose of the links is to provide the User with the possibility of accessing said links. www.ingivision.com is not responsible in any case for the results that may be derived to the User by accessing said links.<br><br>Likewise, the user will find within this site, pages, promotions, affiliate programs that access the browsing habits of users to establish profiles. This information is always anonymous and the user is not identified.<br><br>Information provided on these sponsored Sites or affiliate links is subject to the privacy policies used on those Sites and will not be subject to this privacy policy. Therefore, we highly recommend Users to carefully review the privacy policies of affiliate links.<br><br>The User who intends to establish any technical link device from his website to the www.ingivision.com portal must obtain the prior written authorization of www.ingivision.com The establishment of the link does not imply in any case the existence of relations between www .ingivision.com and the owner of the site where the link is established, nor the acceptance or approval by www.ingivision.com of its contents or services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMENTS POLICY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On our website and comments are allowed to enrich the content and make inquiries. Comments that are not related to the theme of this website, which include defamations, grievances, insults, personal attacks or general disrespect towards the author or other members will not be accepted. Comments that contain information that is obviously misleading or false, as well as comments that contain personal information, such as, for example, private addresses or telephones and that violate our data protection policy, will also be deleted. <br><br>Likewise, those comments created only for promotional purposes of a website, person or group and everything that may be considered spam in general will be rejected. Anonymous comments are not allowed, as well as those made by the same person with different nicknames. Comments that try to force a debate or take a position by another user will not be considered either.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSION OF GUARANTEES AND RESPONSIBILITY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Provider does not grant any guarantee nor is it responsible, in any case, for damages of any nature that could be caused by:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>The lack of availability, maintenance and effective operation of the web, or of its services and contents.</li><li>The existence of viruses, malicious or harmful programs in the contents.</li><li>The illicit, negligent, fraudulent use or contrary to this Legal Notice.</li><li>The lack of legality, quality, reliability, usefulness and availability of the services provided by third parties and made available to users on the website.</li><li>&nbsp;The provider is not responsible under any circumstances for damages that may arise from the illegal or improper use of this website.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>APPLICABLE LAW AND JURISDICTION</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the relations between www.ingivision.com with the Users of its telematic services, present on this website, are subject to Spanish legislation and jurisdiction and to the courts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In case any User has any questions about these Legal Conditions or any comment on the www.ingivision.com portal, please contact<br> ingivision@ingivision.com On behalf of the team that make up Ingivision SLL, we thank you for the time dedicated to reading this Legal Notice</p>\n<!-- /wp:paragraph -->','Legal notice','','publish','closed','closed','','aviso-legal','','','2020-09-09 15:59:19','2020-09-09 15:59:19','',99,'https://ingivision.admirae.es/?page_id=101',3,'page','',0),(102,1,'2020-08-13 14:57:16','2020-08-13 14:57:16','<!-- wp:heading -->\n<h2>Cookies policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On this website, third-party and own cookies are used to ensure that you have a better browsing experience, you can share content on social networks and so that we can obtain user statistics.<br><br> You can prevent the download of cookies through your browser settings, preventing cookies from being stored on your device. As the owner of this website, I inform you that we do not use any personal information from cookies, we only carry out general statistics of visits that do not involve any personal information. <br><br>It is very important that you read this cookie policy and understand that, if you continue browsing, we will consider that you accept its use. <br><br>According to the terms included in article 22.2 of Law 34/2002 on Services of the Information Society and Electronic Commerce, if you continue browsing, you will be giving your consent for the use of the aforementioned mechanisms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible Entity</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The entity responsible for the collection, processing and use of your personal data, in the sense established by the Personal Data Protection Law is the page www.ingivision.com, owned by Ingivision SLL - Av. De la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>What are cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;Cookies are a set of data that a server deposits in the user\'s browser to collect standard Internet registration information and information on the behavior of visitors to a website. <br>In other words, these are small text files that are stored on the computer\'s hard drive and that serve to identify the user when they connect to the website again. Its purpose is to record the user\'s visit and save certain information. Its use is common and frequent on the web since it allows the pages to function more efficiently and achieve greater personalization and analysis of user&nbsp;behavior</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What types of cookies are there?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The cookies used on our website are session and third-party cookies which enable us to store, access information regarding&nbsp; the language, the type of browser used, and other general characteristics predefined by the user. We&nbsp; are also able to follow and analyze the activity carried out in order to introduce improvements and provide our services in a more efficent and personalized way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on their permanence, cookies can be divided into session or permanent cookies, those that expire when the user closes the browser, and those that expire when their purpose is fulfilled (for example, the user remains identified in the services of INGIVSION SLL) and lastly when the cookies are deleted manually.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Name</td><td>Type</td><td>Date of Expiry</td><td>Purpose</td><td>Class</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 years</td><td>Identify user and session.</td><td>Not exempt</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutes</td><td>Identify session<br></td><td>Not exempt</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>When session is over</td><td>Configure for Urchin</td><td>Not exempt</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 months</td><td>Store origin or user<br>Trail to get web page</td><td>Not exempt</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Depending on the objective, cookies can be classified as follows:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Performance</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies remembers your preferences for the tools found in the services so you do not have to reconfigure the service each time you visit. To give&nbsp; two examples, this typology includes volumen settings for video or sound players&nbsp; as well as video transmission speeds that are compatible with your browser. Preformance cookies also store the “Shopping cart” objects in e-commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Geo-location</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These cookies are used to find out which country you are in when a service is requested. They are completely anonymous and their purpose is to help guide content to your location.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Registration cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once the user has registered or subsequently opened a session, registration cookies are generated and are used to identify the user in the services with the following objectives. <br><br>Firstly, registration cookies keep the users identified so that when a session or computer is closed, when the users re-enter, they continue to be identified.This function can be surpressed by pressing the close session thereby eliminating the cookie. <br><br>However, the next time the users enter the service, their identification will have to be reestablished. Secondly, these cookies check if the users are authorized to access certain services, for example, to enter a contest. Additionally, some services may use connectors with social networks such as Facebook or Twitter. <br><br>When the user registers in a&nbsp; social network service with credentials, the network is authorized to save a persistent cookie that remembers the user´s identity to guarantee access to its services until the date of expiry. Updating preferences on the user´s experience site deletes and revokes cookie access to the social network services.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Analytic cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Every time a user visits a service, a tool from an external provider generates an analytical cookie on the user´s computer.This type of cookie is only generated during the visit but will serve, in future visits to INGIVISION SLL services, to identify the visitor in an anonymous way. The principal objectives of these cookies are&nbsp; to allow the identification of the users who are browsing in an anonymous way via the cookie. In other words,&nbsp; the cookie identifies the browser and devices but not the identity of the user. The sole purpose of these cookies is to count the number of visitors to a site and the users´ preferences over a period of time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;The second objective allows for knowing if the user is new one. It is important to point out that unless the user decides to register for an INGIVISION SLL service, the analytic cookie will never be associated with any personal data that could identify the user. Analytic cookies are only for&nbsp; statistical purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Advertising cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies permits diffusion of the information given in the advertisement, which is shown to each anonymous user of the services of INGIVISION SLL. The duration or frequency of views, the interaction with them, the browsing patterns and/or user behavior are stored and later used to form a profile of advertising interest. In this way, advertising cookies allow advertising to fit the interests of the user.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to the advertising managed by&nbsp; the INGIVISION SLL websites, the company offers its advertisers the option of showing advertisements using third-parties, (“Ad-Servers”). These third parties are permitted to store cookies sent from INGIVISION SLL services from their users´ browsers. The third parties can also access this data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The companies that generate the above types of cookies have their own privacy policies. INGIVISION SLL currently uses the Google Doubleclick platform to manage these services. For more information go to <a href=\"https://google.es/policies/privacy/ads/#toc-doublelick\">https://google.es/policies/privacy/ads/#toc-doublelick</a> and <a href=\"http://www.google.es/policies/privacy/ads/\">www.google.es/policies/privacy/ads/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How can cookies be deleted from your browser?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Diffrent browsers can be programmed to notify the user that cookies have been received and prevent them from being installed. The user can also check the browser to see which cookies have been installed and their date of expiry in order to eliminate them.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more, consult the instructions and browser manuals as well as the administration of cookies found in Google Chrome, <a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a>. For managing cookies in Internet Explorer, go to&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:embed {\"url\":\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\"} -->\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttp://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\n</div></figure>\n<!-- /wp:embed -->\n\n<!-- wp:paragraph -->\n<p>More information about the administration of cookies can be found in: Mozilla Firefox <a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a>&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Safari: <a href=\"http://www.apple.com/es/privacy/use-of-cookies\">http://www.apple.com/es/privacy/use-of-cookies</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Opera: <a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To stop being followed by Google Analytics, go to <a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More information about cookies and online advertising based on behavior and online privacy can be found at the following link: <a href=\"http://www.youronlinechoices.com/es\">http://www.youronlinechoices.com/es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Google Analytics data protection: <a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;How Google Analylitics uses cookies: <a href=\"https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs</a>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Updates and changes in the Cookie Privacy Policy.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For updates and changes in the Cookie Privacy Policy, INGIVISION SLL may modify this policy if there are any&nbsp; changes in the legislative and regulatory requirements or instructions issued by the Spanish Data Protection Agency. Users are advised to periodically check updates. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if there are any significant changes, registered users will be notified through the web or email.&nbsp;</p>\n<!-- /wp:paragraph -->','Cookies','','publish','closed','closed','','cookies','','','2020-09-09 15:53:10','2020-09-09 15:53:10','',99,'https://ingivision.admirae.es/?page_id=102',3,'page','',0),(103,1,'2020-08-13 14:58:48','2020-08-13 14:58:48','<!-- wp:heading -->\n<h2></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Services','','publish','closed','closed','','services','','','2020-09-24 18:13:02','2020-09-24 18:13:02','',99,'https://ingivision.admirae.es/?page_id=103',3,'page','',0),(104,1,'2020-08-13 14:56:39','2020-08-13 14:56:39','','Why Ingivision','','publish','closed','closed','','why-ingivision','','','2020-09-24 18:42:49','2020-09-24 18:42:49','',99,'https://ingivision.admirae.es/?page_id=104',0,'page','',0),(105,1,'2020-08-13 14:56:55','2020-08-13 14:56:55','','Blog','','publish','closed','closed','','blog','','','2020-09-09 15:26:19','2020-09-09 15:26:19','',99,'https://ingivision.admirae.es/?page_id=105',3,'page','',0),(106,1,'2020-08-13 14:57:02','2020-08-13 14:57:02','','Contact','','publish','closed','closed','','contact','','','2020-09-09 15:32:35','2020-09-09 15:32:35','',99,'https://ingivision.admirae.es/?page_id=106',3,'page','',0),(107,1,'2020-08-13 14:57:23','2020-08-13 14:57:23','','Ingivision','','publish','closed','closed','','ingivision','','','2020-08-13 14:57:23','2020-08-13 14:57:23','',99,'https://ingivision.admirae.es/?page_id=107',3,'page','',0),(108,1,'2020-08-13 14:57:49','2020-08-13 14:57:49','','Products','','publish','closed','closed','','products','','','2020-09-09 17:23:34','2020-09-09 17:23:34','',99,'https://ingivision.admirae.es/?page_id=108',3,'page','',0),(109,1,'2020-08-13 14:58:11','2020-08-13 14:58:11','','IngiGrader','','publish','closed','closed','','ingigrader','','','2020-09-24 12:22:31','2020-09-24 12:22:31','',108,'https://ingivision.admirae.es/?page_id=109',6,'page','',0),(110,1,'2020-08-13 14:58:21','2020-08-13 14:58:21','','IngiSorter','','publish','closed','closed','','ingisorter','','','2020-09-24 11:59:29','2020-09-24 11:59:29','',108,'https://ingivision.admirae.es/?page_id=110',1,'page','',0),(111,1,'2020-08-13 14:58:29','2020-08-13 14:58:29','','IngiSorter+','','publish','closed','closed','','ingisorter-2','','','2020-09-24 12:11:02','2020-09-24 12:11:02','',108,'https://ingivision.admirae.es/?page_id=111',3,'page','',0),(112,1,'2020-08-13 14:57:33','2020-08-13 14:57:33','','Nuestro sistema','','publish','closed','closed','','nuestro-sistema','','','2020-08-13 14:57:33','2020-08-13 14:57:33','',99,'https://ingivision.admirae.es/?page_id=112',3,'page','',0),(115,1,'2020-08-13 12:09:23','2020-08-13 12:09:23','','IngiGrader','','inherit','closed','closed','','109-revision-v1','','','2020-08-13 12:09:23','2020-08-13 12:09:23','',109,'https://ingivision.admirae.es/2020/08/13/109-revision-v1/',0,'revision','',0),(116,1,'2020-08-13 12:09:32','2020-08-13 12:09:32','','IngiSorter','','inherit','closed','closed','','110-revision-v1','','','2020-08-13 12:09:32','2020-08-13 12:09:32','',110,'https://ingivision.admirae.es/2020/08/13/110-revision-v1/',0,'revision','',0),(117,1,'2020-08-13 12:09:41','2020-08-13 12:09:41','','IngiSorter+','','inherit','closed','closed','','111-revision-v1','','','2020-08-13 12:09:41','2020-08-13 12:09:41','',111,'https://ingivision.admirae.es/2020/08/13/111-revision-v1/',0,'revision','',0),(118,1,'2020-08-13 12:10:31','2020-08-13 12:10:31','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong> INGIVISION SLL<br><strong>Domicilio social:</strong> Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong> B12893624<br><strong>Teléfono:</strong> +34 964 86 16 55<br><strong>Correo Electrónico:</strong> ingivision@ingivision.com<br><strong>Nombre del dominio:</strong> www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','inherit','closed','closed','','100-revision-v1','','','2020-08-13 12:10:31','2020-08-13 12:10:31','',100,'https://ingivision.admirae.es/2020/08/13/100-revision-v1/',0,'revision','',0),(119,1,'2020-08-13 12:10:37','2020-08-13 12:10:37','<!-- wp:heading -->\n<h2>Aviso legal y términos de uso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En este espacio, el USUARIO, podrá encontrar toda la información relativa a los términos y condiciones legales que definen las relaciones entre los usuarios y nosotros como responsables de esta web. Como usuario, es importante que conozcas estos términos antes de continuar tu navegación. Ingivision SLL.Como responsable de esta web, asume el compromiso de procesar la información de nuestros usuarios y clientes con plenas garantías y cumplir con los requisitos nacionales y europeos que regulan la recopilación y uso de los datos personales de nuestros usuarios. Esta web, por tanto, cumple rigurosamente con el RGPD (REGLAMENTO (UE) 2016/679 de protección de datos) y la LSSI-CE la Ley 34/2002, de 11 de julio, de servicios de la sociedad de la información y de comercio electrónico.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONDICIONES GENERALES DE USO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las presentes Condiciones Generales regulan el uso (incluyendo el mero acceso) de las páginas de la web, integrantes del sitio web de www.ingivision.com incluidos los contenidos y servicios puestos a disposición en ellas. Toda persona que acceda a la web, www.ingivision.com (“Usuario”) acepta someterse a las Condiciones Generales vigentes en cada momento del portal www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DATOS PERSONALES QUE RECABAMOS Y CÓMO LO HACEMOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Leer&nbsp;<a href=\"https://www.ingivision.com/politica-de-privacidad/\">Política de Privacidad</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMPROMISOS Y OBLIGACIONES DE LOS USUARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Usuario queda informado, y acepta, que el acceso a la presente web no supone, en modo alguno, el inicio de una relación comercial con www.ingivision.com. De esta forma, el usuario se compromete a utilizar el sitio Web, sus servicios y contenidos sin contravenir la legislación vigente, la buena fe y el orden público.<br>Queda prohibido el uso de la web, con fines ilícitos o lesivos, o que, de cualquier forma, puedan causar perjuicio o impedir el normal funcionamiento del sitio web. Respecto de los contenidos de esta web, se prohíbe:Su reproducción, distribución o modificación, total o parcial, a menos que se cuente con la autorización de sus legítimos titulares;Cualquier vulneración de los derechos del prestador o de los legítimos titulares;Su utilización para fines comerciales o publicitarios.<br><br>En la utilización de la web, www.ingivision.com, el Usuario se compromete a no llevar a cabo ninguna conducta que pudiera dañar la imagen, los intereses y los derechos de www.ingivision.com o de terceros o que pudiera dañar, inutilizar o sobrecargar el portal (indicar dominio) o que impidiera, de cualquier forma, la normal utilización de la web. No obstante, el Usuario debe ser consciente de que las medidas de seguridad de los sistemas informáticos en Internet no son enteramente fiables y que, por tanto www.ingivision.com no puede garantizar la inexistencia de virus u otros elementos que puedan producir alteraciones en los sistemas informáticos (software y hardware) del Usuario o en sus documentos electrónicos y ficheros contenidos en los mismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>MEDIDAS DE SEGURIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Los datos personales comunicados por el usuario a www.ingivision.com pueden ser almacenados en bases de datos automatizadas o no, cuya titularidad corresponde en exclusiva a www.ingivision.com, asumiendo ésta todas las medidas de índole técnica, organizativa y de seguridad que garantizan la confidencialidad, integridad y calidad de la información contenida en las mismas de acuerdo con lo establecido en la normativa vigente en protección de datos.<br>La comunicación entre los usuarios y www.ingivision.com utiliza un canal seguro, y los datos transmitidos son cifrados gracias a protocolos a https, por tanto, garantizamos las mejores condiciones de seguridad para que la confidencialidad de los usuarios esté garantizada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>RECLAMACIONES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>www.ingivision.com informa que existen hojas de reclamación a disposición de usuarios y clientes. El Usuario podrá realizar reclamaciones solicitando su hoja de reclamación o remitiendo un correo electrónico a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>&nbsp;indicando su nombre y apellidos, el servicio y/o producto adquirido y exponiendo los motivos de su reclamación.<br><br>El usuario/comprador podrá notificarnos la reclamación, bien a través de correo electrónico a:&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>, si lo desea adjuntando el siguiente formulario de reclamación: El servicio/producto: Adquirido el día: Nombre del usuario: Domicilio del usuario: Firma del usuario (solo si se presenta en papel): Fecha: Motivo de la reclamación:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PLATAFORMA DE RESOLUCIÓN DE CONFLICTOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por si puede ser de tu interés, para someter tus reclamaciones puedes utilizar también la plataforma de resolución de litigios que facilita la Comisión Europea y que se encuentra disponible en el siguiente enlace:&nbsp;<a href=\"http://ec.europa.eu/consumers/odr/\">http://ec.europa.eu/consumers/odr/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DERECHOS DE PROPIEDAD INTELECTUAL E INDUSTRIAL</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En virtud de lo dispuesto en los artículos 8 y 32.1, párrafo segundo, de la Ley de Propiedad Intelectual, quedan expresamente prohibidas la reproducción, la distribución y la comunicación pública, incluida su modalidad de puesta a disposición, de la totalidad o parte de los contenidos de esta página web, con fines comerciales, en cualquier soporte y por cualquier medio técnico, sin la autorización de www.ingivision.com. El usuario se compromete a respetar los derechos de Propiedad Intelectual e Industrial titularidad de www.ingivision.com.<br>El usuario conoce y acepta que la totalidad del sitio web, conteniendo sin carácter exhaustivo el texto, software, contenidos (incluyendo estructura, selección, ordenación y presentación de los mismos) podcast, fotografías, material audiovisual y gráficos, está protegida por marcas, derechos de autor y otros derechos legítimos, de acuerdo con los tratados internacionales en los que España es parte y otros derechos de propiedad y leyes de España. En el caso de que un usuario o un tercero consideren que se ha producido una violación de sus legítimos derechos de propiedad intelectual por la introducción de un determinado contenido en la web, deberá notificar dicha circunstancia a www.ingivision.com indicando:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos personales del interesado titular de los derechos presuntamente infringidos, o indicar la representación con la que actúa en caso de que la reclamación la presente un tercero distinto del interesado.</li><li>Señalar los contenidos protegidos por los derechos de propiedad intelectual y su ubicación en la web, la acreditación de los derechos de propiedad intelectual señalados y declaración expresa en la que el interesado se responsabiliza de la veracidad de las informaciones facilitadas en la notificación</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>ENLACES EXTERNOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las páginas de la web www.ingivision.com, podría proporcionar enlaces a otros sitios web propios y contenidos que son propiedad de terceros. El único objeto de los enlaces es proporcionar al Usuario la posibilidad de acceder a dichos enlaces. www.ingivision.com no se responsabiliza en ningún caso de los resultados que puedan derivarse al Usuario por acceso a dichos enlaces.<br>Asimismo, el usuario encontrará dentro de este sitio, páginas, promociones, programas de afiliados que acceden a los hábitos de navegación de los usuarios para establecer perfiles. Esta información siempre es anónima y no se identifica al usuario.<br><br>La Información que se proporcione en estos Sitios patrocinado o enlaces de afiliados está sujeta a las políticas de privacidad que se utilicen en dichos Sitios y no estará sujeta a esta política de privacidad. Por lo que recomendamos ampliamente a los Usuarios a revisar detalladamente las políticas de privacidad de los enlaces de afiliado.<br>El Usuario que se proponga establecer cualquier dispositivo técnico de enlace desde su sitio web al portal www.ingivision.com deberá obtener la autorización previa y escrita de www.ingivision.com El establecimiento del enlace no implica en ningún caso la existencia de relaciones entre www.ingivision.com y el propietario del sitio en el que se establezca el enlace, ni la aceptación o aprobación por parte de www.ingivision.com de sus contenidos o servicios</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>POLÍTICA DE COMENTARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En nuestra web y se permiten realizar comentarios para enriquecer los contenidos y realizar consultas. No se admitirán comentarios que no estén relacionados con la temática de esta web, que incluyan difamaciones, agravios, insultos, ataques personales o faltas de respeto en general hacia el autor o hacia otros miembros. También serán suprimidos los comentarios que contengan información que sea obviamente engañosa o falsa, así como los comentarios que contengan información personal, como, por ejemplo, domicilios privado o teléfonos y que vulneren nuestra política de protección de datos.<br>Se desestimará, igualmente, aquellos comentarios creados sólo con fines promocionales de una web, persona o colectivo y todo lo que pueda ser considerado spam en general.<br>No se permiten comentarios anónimos, así como aquellos realizados por una misma persona con distintos apodos. No se considerarán tampoco aquellos comentarios que intenten forzar un debate o una toma de postura por otro usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSIÓN DE GARANTÍAS Y RESPONSABILIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Prestador no otorga ninguna garantía ni se hace responsable, en ningún caso, de los daños y perjuicios de cualquier naturaleza que pudieran traer causa de:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>La falta de disponibilidad, mantenimiento y efectivo funcionamiento de la web, o de sus servicios y contenidos;</li><li>La existencia de virus, programas maliciosos o lesivos en los contenidos;</li><li>El uso ilícito, negligente, fraudulento o contrario a este Aviso Legal;</li><li>La falta de licitud, calidad, fiabilidad, utilidad y disponibilidad de los servicios prestados por terceros y puestos a disposición de los usuarios en el sitio web.</li><li>El prestador no se hace responsable bajo ningún concepto de los daños que pudieran dimanar del uso ilegal o indebido de la presente página web.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>LEY APLICABLE Y JURISDICCIÓN</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con carácter general las relaciones entre www.ingivision.com con los Usuarios de sus servicios telemáticos, presentes en esta web se encuentran sometidas a la legislación y jurisdicción españolas y a los tribunales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACTO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En caso de que cualquier Usuario tuviese alguna duda acerca de estas Condiciones legales o cualquier comentario sobre el portal www.ingivision.com, por favor diríjase a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De parte del equipo que formamos Ingivision SLL te agradecemos el tiempo dedicado en leer este Aviso Legal</p>\n<!-- /wp:paragraph -->','Aviso legal','','inherit','closed','closed','','101-revision-v1','','','2020-08-13 12:10:37','2020-08-13 12:10:37','',101,'https://ingivision.admirae.es/2020/08/13/101-revision-v1/',0,'revision','',0),(120,1,'2020-08-13 12:10:41','2020-08-13 12:10:41','<!-- wp:heading -->\n<h2>Política de Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En esta web se utilizan cookies de terceros y propias para conseguir que tengas una mejor experiencia de navegación, puedas compartir contenido en redes sociales y para que podamos obtener estadísticas de los usuarios.<br><br>Puedes evitar la descarga de cookies a través de la configuración de tu navegador, evitando que las cookies se almacenen en su dispositivo.<br><br>Como propietario de este sitio web, te comunico que no utilizamos ninguna información personal procedente de cookies, tan sólo realizamos estadísticas generales de visitas que no suponen ninguna información personal.<br><br>Es muy importante que leas la presente política de cookies y comprendas que, si continúas navegando, consideraremos que aceptas su uso.<br><br>Según los términos incluidos en el artículo 22.2 de la Ley 34/2002 de Servicios de la Sociedad de la Información y Comercio Electrónico, si continúas navegando, estarás prestando tu consentimiento para el empleo de los referidos mecanismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Entidad Responsable</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La entidad responsable de la recogida, procesamiento y utilización de tus datos personales, en el sentido establecido por la Ley de Protección de Datos Personales es la página www.ingivision.com, propiedad de Ingivision SLL – Av. de la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué son las cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies son un conjunto de datos que un servidor deposita en el navegador del usuario para recoger la información de registro estándar de Internet y la información del comportamiento de los visitantes en un sitio web. Es decir, se trata de pequeños archivos de texto que quedan almacenados en el disco duro del ordenador y que sirven para identificar al usuario cuando se conecta nuevamente al sitio web. Su objetivo es registrar la visita del usuario y guardar cierta información. Su uso es común y frecuente en la web ya que permite a las páginas funcionar de manera más eficiente y conseguir una mayor personalización y análisis sobre el comportamiento del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué tipos de cookies existen?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies utilizadas en nuestro sitio web, son de sesión y de terceros, y nos permiten almacenar y acceder a información relativa al idioma, el tipo de navegador utilizado, y otras características generales predefinidas por el usuario, así como, seguir y analizar la actividad que lleva a cabo, con el objeto de introducir mejoras y prestar nuestros servicios de una manera más eficiente y personalizada.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las cookies, en función de su permanencia, pueden dividirse en cookies de sesión o permanentes. Las que expiran cuando el usuario cierra el navegador. Las que expiran en función de cuando se cumpla el objetivo para el que sirven (por ejemplo, para que el usuario se mantenga identificado en los servicios de Ingivision SLL) o bien cuando se borran manualmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Nombre</td><td>Tipo</td><td>Caducidad</td><td>Finalidad</td><td>Clase</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 años</td><td>Se usa para distinguir usuarios y sesiones.</td><td>No Exenta</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutos</td><td>Se usa para determinar nuevas sesiones o visitas</td><td>No Exenta</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>Al finalizar la sesión</td><td>Se configura para su uso con Urchin</td><td>No Exenta</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 meses</td><td>Almacena el origen o la campaña que explica cómo el usuario ha llegado hasta la página web</td><td>No Exenta</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, en función de su objetivo, las cookies pueden clasificarse de la siguiente forma:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de rendimiento</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de Cookie recuerda sus preferencias para las herramientas que se encuentran en los servicios, por lo que no tiene que volver a configurar el servicio cada vez que usted visita. A modo de ejemplo, en esta tipología se incluyen: Ajustes de volumen de reproductores de vídeo o sonido. Las velocidades de transmisión de vídeo que sean compatibles con su navegador. Los objetos guardados en el “carrito de la compra” en los servicios de e-commerce tales como tiendas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de geo-localización</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estas cookies son utilizadas para averiguar en qué país se encuentra cuando se solicita un servicio. Esta cookie es totalmente anónima, y sólo se utiliza para ayudar a orientar el contenido a su ubicación.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de registro</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies de registro se generan una vez que el usuario se ha registrado o posteriormente ha abierto su sesión, y se utilizan para identificarle en los servicios con los siguientes objetivos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mantener al usuario identificado de forma que, si cierra un servicio, el navegador o el ordenador y en otro momento u otro día vuelve a entrar en dicho servicio, seguirá identificado, facilitando así su navegación sin tener que volver a identificarse. Esta funcionalidad se puede suprimir si el usuario pulsa la funcionalidad [cerrar sesión], de forma que esta cookie se elimina y la próxima vez que entre en el servicio el usuario tendrá que iniciar sesión para estar identificado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Comprobar si el usuario está autorizado para acceder a ciertos servicios, por ejemplo, para participar en un concurso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, algunos servicios pueden utilizar conectores con redes sociales tales como Facebook o Twitter. Cuando el usuario se registra en un servicio con credenciales de una red social, autoriza a la red social a guardar una Cookie persistente que recuerda su identidad y le garantiza acceso a los servicios hasta que expira. El usuario puede borrar esta Cookie y revocar el acceso a los servicios mediante redes sociales actualizando sus preferencias en la red social que específica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de analíticas</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cada vez que un usuario visita un servicio, una herramienta de un proveedor externo genera una cookie analítica en el ordenador del usuario. Esta cookie que sólo se genera en la visita, servirá en próximas visitas a los servicios de Ingivision SLL para identificar de forma anónima al visitante. Los objetivos principales que se persiguen son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Permitir la identificación anónima de los usuarios navegantes a través de la cookie (identifica navegadores y dispositivos, no personas) y por lo tanto la contabilización aproximada del número de visitantes y su tendencia en el tiempo.<br>Identificar de forma anónima los contenidos más visitados y por lo tanto más atractivos para los usuarios Saber si el usuario que está accediendo es nuevo o repite visita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Importante: Salvo que el usuario decida registrarse en un servicio de Ingivision SLL, la cookie nunca irá asociada a ningún dato de carácter personal que pueda identificarle. Dichas cookies sólo serán utilizadas con propósitos estadísticos que ayuden a la optimización de la experiencia de los usuarios en el sitio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de publicidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de cookies permiten ampliar la información de los anuncios mostrados a cada usuario anónimo en los servicios de Ingivision SLL. Entre otros, se almacena la duración o frecuencia de visualización de posiciones publicitarias, la interacción con las mismas, o los patrones de navegación y/o comportamientos del usuario ya que ayudan a conformar un perfil de interés publicitario. De este modo, permiten ofrecer publicidad afín a los intereses del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies publicitarias de terceros</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Además de la publicidad gestionada por las webs de Ingivision SLL en sus servicios, las webs de Ingivision SLL ofrecen a sus anunciantes la opción de servir anuncios a través de terceros (“Ad-Servers”). De este modo, estos terceros pueden almacenar cookies enviadas desde los servicios de Ingivision SLL procedentes de los navegadores de los usuarios, así como acceder a los datos que en ellas se guardan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las empresas que generan estas cookies tienen sus propias políticas de privacidad. En la actualidad, las webs de Ingivision SLL utilizan la plataforma Doubleclick (Google) para gestionar estos servicios. Para más información, acuda a</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://www.google.es/policies/privacy/ads/#toc-doubleclick\">http://www.google.es/policies/privacy/ads/#toc-doubleclick</a>&nbsp;y a&nbsp;<a href=\"http://www.google.es/policies/privacy/ads/\">http://www.google.es/policies/privacy/ads/</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Cómo puedo deshabilitar las cookies en mi navegador?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se pueden configurar los diferentes navegadores para avisar al usuario de la recepción de cookies y, si se desea, impedir su instalación en el equipo. Asimismo, el usuario puede revisar en su navegador qué cookies tiene instaladas y cuál es el plazo de caducidad de las mismas, pudiendo eliminarlas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para ampliar esta información consulte las instrucciones y manuales de su navegador:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Google Chrome:&nbsp;<a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Internet Explorer:&nbsp;<a href=\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions\">http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Mozilla Firefox:&nbsp;<a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we%20\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Safari:&nbsp;<a href=\"http://www.apple.com/es/privacy/use-of-cookies/%20\">http://www.apple.com/es/privacy/use-of-cookies/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Opera:&nbsp;<a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si desea dejar de ser seguido por Google Analytics visite:&nbsp;<a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Actualizaciones y cambios en la política de privacidad/cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las webs de Ingivision SLL pueden modificar esta Política de Cookies en función de exigencias legislativas, reglamentarias, o con la finalidad de adaptar dicha política a las instrucciones dictadas por la Agencia Española de Protección de Datos, por ello se aconseja a los usuarios que la visiten periódicamente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cuando se produzcan cambios significativos en esta Política de Cookies, estos se comunicarán a los usuarios bien mediante la web o a través de correo electrónico a los usuarios registrados.</p>\n<!-- /wp:paragraph -->','Cookies','','inherit','closed','closed','','102-revision-v1','','','2020-08-13 12:10:41','2020-08-13 12:10:41','',102,'https://ingivision.admirae.es/2020/08/13/102-revision-v1/',0,'revision','',0),(121,1,'2020-08-13 12:10:43','2020-08-13 12:10:43','<!-- wp:heading -->\n<h2>\"Fruit sorter retrofit\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque. &nbsp;Esta actualización en máquinas que no son nueva&nbsp; es lo que llamamos retrofit.<br>Nuestros 3 productos, ingiSorter, ingiSorter+ e ingiGrader funcionan en cualquier tipo de máquina. Un retrofit te va a permitir recibir los beneficios de nuestro software de calibración (peso, color, y …) sin el desembolso de capital que implica reemplazar tu calibrador actual&nbsp; por otro nuevo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicio de instalación.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sin preocupaciones.<br>Así es nuestro servicio de instalación para ti. Te aseguramos la perfecta instalación de ingisorter en tus máquinas,&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Servicio de mantenimiento<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soporte</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque nuestro sistema es un sistema de fácil manejo, te damos soporte y formación tanto a tu equipo como a tu cliente final.<br>Tranquilo, unas pocas horas son suficientes para dominar nuestro software.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Actualizaciones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dentro de nuestra filosofía de mejora continua, incluimos la posibilidad de obtener actualizaciones periódicas de Ingisorter, Ingisorter+ e Ingigrader con las mejoras que vamos implementando para que siempre tengas la última tecnología en tus máquinas si así lo quieres.</p>\n<!-- /wp:paragraph -->','Servicios','','inherit','closed','closed','','103-revision-v1','','','2020-08-13 12:10:43','2020-08-13 12:10:43','',103,'https://ingivision.admirae.es/2020/08/13/103-revision-v1/',0,'revision','',0),(122,1,'2020-08-13 12:10:46','2020-08-13 12:10:46','','¿Por qué ingivision?','','inherit','closed','closed','','104-revision-v1','','','2020-08-13 12:10:46','2020-08-13 12:10:46','',104,'https://ingivision.admirae.es/2020/08/13/104-revision-v1/',0,'revision','',0),(123,1,'2020-08-13 12:10:48','2020-08-13 12:10:48','','Blog','','inherit','closed','closed','','105-revision-v1','','','2020-08-13 12:10:48','2020-08-13 12:10:48','',105,'https://ingivision.admirae.es/2020/08/13/105-revision-v1/',0,'revision','',0),(124,1,'2020-08-13 12:10:51','2020-08-13 12:10:51','','Contacto','','inherit','closed','closed','','106-revision-v1','','','2020-08-13 12:10:51','2020-08-13 12:10:51','',106,'https://ingivision.admirae.es/2020/08/13/106-revision-v1/',0,'revision','',0),(125,1,'2020-08-13 12:10:55','2020-08-13 12:10:55','','Ingivision','','inherit','closed','closed','','107-revision-v1','','','2020-08-13 12:10:55','2020-08-13 12:10:55','',107,'https://ingivision.admirae.es/2020/08/13/107-revision-v1/',0,'revision','',0),(126,1,'2020-08-13 12:10:59','2020-08-13 12:10:59','','Productos','','inherit','closed','closed','','108-revision-v1','','','2020-08-13 12:10:59','2020-08-13 12:10:59','',108,'https://ingivision.admirae.es/2020/08/13/108-revision-v1/',0,'revision','',0),(127,1,'2020-08-13 12:11:03','2020-08-13 12:11:03','','Nuestro sistema','','inherit','closed','closed','','112-revision-v1','','','2020-08-13 12:11:03','2020-08-13 12:11:03','',112,'https://ingivision.admirae.es/2020/08/13/112-revision-v1/',0,'revision','',0),(129,1,'2020-08-13 12:11:46','2020-08-13 12:11:46','','Inicio ingles','','inherit','closed','closed','','99-revision-v1','','','2020-08-13 12:11:46','2020-08-13 12:11:46','',99,'https://ingivision.admirae.es/2020/08/13/99-revision-v1/',0,'revision','',0),(130,1,'2020-08-13 12:11:47','2020-08-13 12:11:47','','Inicio ingles','','inherit','closed','closed','','99-revision-v1','','','2020-08-13 12:11:47','2020-08-13 12:11:47','',99,'https://ingivision.admirae.es/2020/08/13/99-revision-v1/',0,'revision','',0),(131,1,'2020-08-13 13:45:39','2020-08-13 13:45:39',' ','','','publish','closed','closed','','131','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',0,'https://ingivision.admirae.es/?p=131',1,'nav_menu_item','',0),(132,1,'2020-08-13 13:46:51','2020-08-13 13:46:51','','Home','','inherit','closed','closed','','99-revision-v1','','','2020-08-13 13:46:51','2020-08-13 13:46:51','',99,'https://ingivision.admirae.es/2020/08/13/99-revision-v1/',0,'revision','',0),(133,1,'2020-08-13 14:56:40','2020-08-13 14:56:40','','¿Por qué ingivision?','','inherit','closed','closed','','104-revision-v1','','','2020-08-13 14:56:40','2020-08-13 14:56:40','',104,'https://ingivision.admirae.es/2020/08/13/104-revision-v1/',0,'revision','',0),(134,1,'2020-08-13 14:56:47','2020-08-13 14:56:47','<!-- wp:heading -->\n<h2>Aviso legal y términos de uso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En este espacio, el USUARIO, podrá encontrar toda la información relativa a los términos y condiciones legales que definen las relaciones entre los usuarios y nosotros como responsables de esta web. Como usuario, es importante que conozcas estos términos antes de continuar tu navegación. Ingivision SLL.Como responsable de esta web, asume el compromiso de procesar la información de nuestros usuarios y clientes con plenas garantías y cumplir con los requisitos nacionales y europeos que regulan la recopilación y uso de los datos personales de nuestros usuarios. Esta web, por tanto, cumple rigurosamente con el RGPD (REGLAMENTO (UE) 2016/679 de protección de datos) y la LSSI-CE la Ley 34/2002, de 11 de julio, de servicios de la sociedad de la información y de comercio electrónico.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONDICIONES GENERALES DE USO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las presentes Condiciones Generales regulan el uso (incluyendo el mero acceso) de las páginas de la web, integrantes del sitio web de www.ingivision.com incluidos los contenidos y servicios puestos a disposición en ellas. Toda persona que acceda a la web, www.ingivision.com (“Usuario”) acepta someterse a las Condiciones Generales vigentes en cada momento del portal www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DATOS PERSONALES QUE RECABAMOS Y CÓMO LO HACEMOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Leer&nbsp;<a href=\"https://www.ingivision.com/politica-de-privacidad/\">Política de Privacidad</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMPROMISOS Y OBLIGACIONES DE LOS USUARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Usuario queda informado, y acepta, que el acceso a la presente web no supone, en modo alguno, el inicio de una relación comercial con www.ingivision.com. De esta forma, el usuario se compromete a utilizar el sitio Web, sus servicios y contenidos sin contravenir la legislación vigente, la buena fe y el orden público.<br>Queda prohibido el uso de la web, con fines ilícitos o lesivos, o que, de cualquier forma, puedan causar perjuicio o impedir el normal funcionamiento del sitio web. Respecto de los contenidos de esta web, se prohíbe:Su reproducción, distribución o modificación, total o parcial, a menos que se cuente con la autorización de sus legítimos titulares;Cualquier vulneración de los derechos del prestador o de los legítimos titulares;Su utilización para fines comerciales o publicitarios.<br><br>En la utilización de la web, www.ingivision.com, el Usuario se compromete a no llevar a cabo ninguna conducta que pudiera dañar la imagen, los intereses y los derechos de www.ingivision.com o de terceros o que pudiera dañar, inutilizar o sobrecargar el portal (indicar dominio) o que impidiera, de cualquier forma, la normal utilización de la web. No obstante, el Usuario debe ser consciente de que las medidas de seguridad de los sistemas informáticos en Internet no son enteramente fiables y que, por tanto www.ingivision.com no puede garantizar la inexistencia de virus u otros elementos que puedan producir alteraciones en los sistemas informáticos (software y hardware) del Usuario o en sus documentos electrónicos y ficheros contenidos en los mismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>MEDIDAS DE SEGURIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Los datos personales comunicados por el usuario a www.ingivision.com pueden ser almacenados en bases de datos automatizadas o no, cuya titularidad corresponde en exclusiva a www.ingivision.com, asumiendo ésta todas las medidas de índole técnica, organizativa y de seguridad que garantizan la confidencialidad, integridad y calidad de la información contenida en las mismas de acuerdo con lo establecido en la normativa vigente en protección de datos.<br>La comunicación entre los usuarios y www.ingivision.com utiliza un canal seguro, y los datos transmitidos son cifrados gracias a protocolos a https, por tanto, garantizamos las mejores condiciones de seguridad para que la confidencialidad de los usuarios esté garantizada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>RECLAMACIONES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>www.ingivision.com informa que existen hojas de reclamación a disposición de usuarios y clientes. El Usuario podrá realizar reclamaciones solicitando su hoja de reclamación o remitiendo un correo electrónico a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>&nbsp;indicando su nombre y apellidos, el servicio y/o producto adquirido y exponiendo los motivos de su reclamación.<br><br>El usuario/comprador podrá notificarnos la reclamación, bien a través de correo electrónico a:&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>, si lo desea adjuntando el siguiente formulario de reclamación: El servicio/producto: Adquirido el día: Nombre del usuario: Domicilio del usuario: Firma del usuario (solo si se presenta en papel): Fecha: Motivo de la reclamación:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PLATAFORMA DE RESOLUCIÓN DE CONFLICTOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por si puede ser de tu interés, para someter tus reclamaciones puedes utilizar también la plataforma de resolución de litigios que facilita la Comisión Europea y que se encuentra disponible en el siguiente enlace:&nbsp;<a href=\"http://ec.europa.eu/consumers/odr/\">http://ec.europa.eu/consumers/odr/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>DERECHOS DE PROPIEDAD INTELECTUAL E INDUSTRIAL</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En virtud de lo dispuesto en los artículos 8 y 32.1, párrafo segundo, de la Ley de Propiedad Intelectual, quedan expresamente prohibidas la reproducción, la distribución y la comunicación pública, incluida su modalidad de puesta a disposición, de la totalidad o parte de los contenidos de esta página web, con fines comerciales, en cualquier soporte y por cualquier medio técnico, sin la autorización de www.ingivision.com. El usuario se compromete a respetar los derechos de Propiedad Intelectual e Industrial titularidad de www.ingivision.com.<br>El usuario conoce y acepta que la totalidad del sitio web, conteniendo sin carácter exhaustivo el texto, software, contenidos (incluyendo estructura, selección, ordenación y presentación de los mismos) podcast, fotografías, material audiovisual y gráficos, está protegida por marcas, derechos de autor y otros derechos legítimos, de acuerdo con los tratados internacionales en los que España es parte y otros derechos de propiedad y leyes de España. En el caso de que un usuario o un tercero consideren que se ha producido una violación de sus legítimos derechos de propiedad intelectual por la introducción de un determinado contenido en la web, deberá notificar dicha circunstancia a www.ingivision.com indicando:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos personales del interesado titular de los derechos presuntamente infringidos, o indicar la representación con la que actúa en caso de que la reclamación la presente un tercero distinto del interesado.</li><li>Señalar los contenidos protegidos por los derechos de propiedad intelectual y su ubicación en la web, la acreditación de los derechos de propiedad intelectual señalados y declaración expresa en la que el interesado se responsabiliza de la veracidad de las informaciones facilitadas en la notificación</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>ENLACES EXTERNOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las páginas de la web www.ingivision.com, podría proporcionar enlaces a otros sitios web propios y contenidos que son propiedad de terceros. El único objeto de los enlaces es proporcionar al Usuario la posibilidad de acceder a dichos enlaces. www.ingivision.com no se responsabiliza en ningún caso de los resultados que puedan derivarse al Usuario por acceso a dichos enlaces.<br>Asimismo, el usuario encontrará dentro de este sitio, páginas, promociones, programas de afiliados que acceden a los hábitos de navegación de los usuarios para establecer perfiles. Esta información siempre es anónima y no se identifica al usuario.<br><br>La Información que se proporcione en estos Sitios patrocinado o enlaces de afiliados está sujeta a las políticas de privacidad que se utilicen en dichos Sitios y no estará sujeta a esta política de privacidad. Por lo que recomendamos ampliamente a los Usuarios a revisar detalladamente las políticas de privacidad de los enlaces de afiliado.<br>El Usuario que se proponga establecer cualquier dispositivo técnico de enlace desde su sitio web al portal www.ingivision.com deberá obtener la autorización previa y escrita de www.ingivision.com El establecimiento del enlace no implica en ningún caso la existencia de relaciones entre www.ingivision.com y el propietario del sitio en el que se establezca el enlace, ni la aceptación o aprobación por parte de www.ingivision.com de sus contenidos o servicios</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>POLÍTICA DE COMENTARIOS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En nuestra web y se permiten realizar comentarios para enriquecer los contenidos y realizar consultas. No se admitirán comentarios que no estén relacionados con la temática de esta web, que incluyan difamaciones, agravios, insultos, ataques personales o faltas de respeto en general hacia el autor o hacia otros miembros. También serán suprimidos los comentarios que contengan información que sea obviamente engañosa o falsa, así como los comentarios que contengan información personal, como, por ejemplo, domicilios privado o teléfonos y que vulneren nuestra política de protección de datos.<br>Se desestimará, igualmente, aquellos comentarios creados sólo con fines promocionales de una web, persona o colectivo y todo lo que pueda ser considerado spam en general.<br>No se permiten comentarios anónimos, así como aquellos realizados por una misma persona con distintos apodos. No se considerarán tampoco aquellos comentarios que intenten forzar un debate o una toma de postura por otro usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSIÓN DE GARANTÍAS Y RESPONSABILIDAD</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El Prestador no otorga ninguna garantía ni se hace responsable, en ningún caso, de los daños y perjuicios de cualquier naturaleza que pudieran traer causa de:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>La falta de disponibilidad, mantenimiento y efectivo funcionamiento de la web, o de sus servicios y contenidos;</li><li>La existencia de virus, programas maliciosos o lesivos en los contenidos;</li><li>El uso ilícito, negligente, fraudulento o contrario a este Aviso Legal;</li><li>La falta de licitud, calidad, fiabilidad, utilidad y disponibilidad de los servicios prestados por terceros y puestos a disposición de los usuarios en el sitio web.</li><li>El prestador no se hace responsable bajo ningún concepto de los daños que pudieran dimanar del uso ilegal o indebido de la presente página web.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>LEY APLICABLE Y JURISDICCIÓN</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con carácter general las relaciones entre www.ingivision.com con los Usuarios de sus servicios telemáticos, presentes en esta web se encuentran sometidas a la legislación y jurisdicción españolas y a los tribunales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACTO</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En caso de que cualquier Usuario tuviese alguna duda acerca de estas Condiciones legales o cualquier comentario sobre el portal www.ingivision.com, por favor diríjase a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De parte del equipo que formamos Ingivision SLL te agradecemos el tiempo dedicado en leer este Aviso Legal</p>\n<!-- /wp:paragraph -->','Aviso legal','','inherit','closed','closed','','101-revision-v1','','','2020-08-13 14:56:47','2020-08-13 14:56:47','',101,'https://ingivision.admirae.es/2020/08/13/101-revision-v1/',0,'revision','',0),(135,1,'2020-08-13 14:56:55','2020-08-13 14:56:55','','Blog','','inherit','closed','closed','','105-revision-v1','','','2020-08-13 14:56:55','2020-08-13 14:56:55','',105,'https://ingivision.admirae.es/2020/08/13/105-revision-v1/',0,'revision','',0),(136,1,'2020-08-13 14:57:02','2020-08-13 14:57:02','','Contacto','','inherit','closed','closed','','106-revision-v1','','','2020-08-13 14:57:02','2020-08-13 14:57:02','',106,'https://ingivision.admirae.es/2020/08/13/106-revision-v1/',0,'revision','',0),(137,1,'2020-08-13 14:57:16','2020-08-13 14:57:16','<!-- wp:heading -->\n<h2>Política de Cookies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En esta web se utilizan cookies de terceros y propias para conseguir que tengas una mejor experiencia de navegación, puedas compartir contenido en redes sociales y para que podamos obtener estadísticas de los usuarios.<br><br>Puedes evitar la descarga de cookies a través de la configuración de tu navegador, evitando que las cookies se almacenen en su dispositivo.<br><br>Como propietario de este sitio web, te comunico que no utilizamos ninguna información personal procedente de cookies, tan sólo realizamos estadísticas generales de visitas que no suponen ninguna información personal.<br><br>Es muy importante que leas la presente política de cookies y comprendas que, si continúas navegando, consideraremos que aceptas su uso.<br><br>Según los términos incluidos en el artículo 22.2 de la Ley 34/2002 de Servicios de la Sociedad de la Información y Comercio Electrónico, si continúas navegando, estarás prestando tu consentimiento para el empleo de los referidos mecanismos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Entidad Responsable</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La entidad responsable de la recogida, procesamiento y utilización de tus datos personales, en el sentido establecido por la Ley de Protección de Datos Personales es la página www.ingivision.com, propiedad de Ingivision SLL – Av. de la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué son las cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies son un conjunto de datos que un servidor deposita en el navegador del usuario para recoger la información de registro estándar de Internet y la información del comportamiento de los visitantes en un sitio web. Es decir, se trata de pequeños archivos de texto que quedan almacenados en el disco duro del ordenador y que sirven para identificar al usuario cuando se conecta nuevamente al sitio web. Su objetivo es registrar la visita del usuario y guardar cierta información. Su uso es común y frecuente en la web ya que permite a las páginas funcionar de manera más eficiente y conseguir una mayor personalización y análisis sobre el comportamiento del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Qué tipos de cookies existen?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies utilizadas en nuestro sitio web, son de sesión y de terceros, y nos permiten almacenar y acceder a información relativa al idioma, el tipo de navegador utilizado, y otras características generales predefinidas por el usuario, así como, seguir y analizar la actividad que lleva a cabo, con el objeto de introducir mejoras y prestar nuestros servicios de una manera más eficiente y personalizada.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las cookies, en función de su permanencia, pueden dividirse en cookies de sesión o permanentes. Las que expiran cuando el usuario cierra el navegador. Las que expiran en función de cuando se cumpla el objetivo para el que sirven (por ejemplo, para que el usuario se mantenga identificado en los servicios de Ingivision SLL) o bien cuando se borran manualmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Nombre</td><td>Tipo</td><td>Caducidad</td><td>Finalidad</td><td>Clase</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 años</td><td>Se usa para distinguir usuarios y sesiones.</td><td>No Exenta</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutos</td><td>Se usa para determinar nuevas sesiones o visitas</td><td>No Exenta</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>Al finalizar la sesión</td><td>Se configura para su uso con Urchin</td><td>No Exenta</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 meses</td><td>Almacena el origen o la campaña que explica cómo el usuario ha llegado hasta la página web</td><td>No Exenta</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, en función de su objetivo, las cookies pueden clasificarse de la siguiente forma:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de rendimiento</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de Cookie recuerda sus preferencias para las herramientas que se encuentran en los servicios, por lo que no tiene que volver a configurar el servicio cada vez que usted visita. A modo de ejemplo, en esta tipología se incluyen: Ajustes de volumen de reproductores de vídeo o sonido. Las velocidades de transmisión de vídeo que sean compatibles con su navegador. Los objetos guardados en el “carrito de la compra” en los servicios de e-commerce tales como tiendas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de geo-localización</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estas cookies son utilizadas para averiguar en qué país se encuentra cuando se solicita un servicio. Esta cookie es totalmente anónima, y sólo se utiliza para ayudar a orientar el contenido a su ubicación.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de registro</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las cookies de registro se generan una vez que el usuario se ha registrado o posteriormente ha abierto su sesión, y se utilizan para identificarle en los servicios con los siguientes objetivos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Mantener al usuario identificado de forma que, si cierra un servicio, el navegador o el ordenador y en otro momento u otro día vuelve a entrar en dicho servicio, seguirá identificado, facilitando así su navegación sin tener que volver a identificarse. Esta funcionalidad se puede suprimir si el usuario pulsa la funcionalidad [cerrar sesión], de forma que esta cookie se elimina y la próxima vez que entre en el servicio el usuario tendrá que iniciar sesión para estar identificado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Comprobar si el usuario está autorizado para acceder a ciertos servicios, por ejemplo, para participar en un concurso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Adicionalmente, algunos servicios pueden utilizar conectores con redes sociales tales como Facebook o Twitter. Cuando el usuario se registra en un servicio con credenciales de una red social, autoriza a la red social a guardar una Cookie persistente que recuerda su identidad y le garantiza acceso a los servicios hasta que expira. El usuario puede borrar esta Cookie y revocar el acceso a los servicios mediante redes sociales actualizando sus preferencias en la red social que específica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de analíticas</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Cada vez que un usuario visita un servicio, una herramienta de un proveedor externo genera una cookie analítica en el ordenador del usuario. Esta cookie que sólo se genera en la visita, servirá en próximas visitas a los servicios de Ingivision SLL para identificar de forma anónima al visitante. Los objetivos principales que se persiguen son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Permitir la identificación anónima de los usuarios navegantes a través de la cookie (identifica navegadores y dispositivos, no personas) y por lo tanto la contabilización aproximada del número de visitantes y su tendencia en el tiempo.<br>Identificar de forma anónima los contenidos más visitados y por lo tanto más atractivos para los usuarios Saber si el usuario que está accediendo es nuevo o repite visita.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Importante: Salvo que el usuario decida registrarse en un servicio de Ingivision SLL, la cookie nunca irá asociada a ningún dato de carácter personal que pueda identificarle. Dichas cookies sólo serán utilizadas con propósitos estadísticos que ayuden a la optimización de la experiencia de los usuarios en el sitio.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies de publicidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Este tipo de cookies permiten ampliar la información de los anuncios mostrados a cada usuario anónimo en los servicios de Ingivision SLL. Entre otros, se almacena la duración o frecuencia de visualización de posiciones publicitarias, la interacción con las mismas, o los patrones de navegación y/o comportamientos del usuario ya que ayudan a conformar un perfil de interés publicitario. De este modo, permiten ofrecer publicidad afín a los intereses del usuario.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Cookies publicitarias de terceros</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Además de la publicidad gestionada por las webs de Ingivision SLL en sus servicios, las webs de Ingivision SLL ofrecen a sus anunciantes la opción de servir anuncios a través de terceros (“Ad-Servers”). De este modo, estos terceros pueden almacenar cookies enviadas desde los servicios de Ingivision SLL procedentes de los navegadores de los usuarios, así como acceder a los datos que en ellas se guardan.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las empresas que generan estas cookies tienen sus propias políticas de privacidad. En la actualidad, las webs de Ingivision SLL utilizan la plataforma Doubleclick (Google) para gestionar estos servicios. Para más información, acuda a</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"http://www.google.es/policies/privacy/ads/#toc-doubleclick\">http://www.google.es/policies/privacy/ads/#toc-doubleclick</a>&nbsp;y a&nbsp;<a href=\"http://www.google.es/policies/privacy/ads/\">http://www.google.es/policies/privacy/ads/</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>¿Cómo puedo deshabilitar las cookies en mi navegador?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se pueden configurar los diferentes navegadores para avisar al usuario de la recepción de cookies y, si se desea, impedir su instalación en el equipo. Asimismo, el usuario puede revisar en su navegador qué cookies tiene instaladas y cuál es el plazo de caducidad de las mismas, pudiendo eliminarlas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para ampliar esta información consulte las instrucciones y manuales de su navegador:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Google Chrome:&nbsp;<a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Internet Explorer:&nbsp;<a href=\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions\">http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Mozilla Firefox:&nbsp;<a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we%20\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Safari:&nbsp;<a href=\"http://www.apple.com/es/privacy/use-of-cookies/%20\">http://www.apple.com/es/privacy/use-of-cookies/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Para más información sobre la administración de las cookies en Opera:&nbsp;<a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si desea dejar de ser seguido por Google Analytics visite:&nbsp;<a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Actualizaciones y cambios en la política de privacidad/cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Las webs de Ingivision SLL pueden modificar esta Política de Cookies en función de exigencias legislativas, reglamentarias, o con la finalidad de adaptar dicha política a las instrucciones dictadas por la Agencia Española de Protección de Datos, por ello se aconseja a los usuarios que la visiten periódicamente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cuando se produzcan cambios significativos en esta Política de Cookies, estos se comunicarán a los usuarios bien mediante la web o a través de correo electrónico a los usuarios registrados.</p>\n<!-- /wp:paragraph -->','Cookies','','inherit','closed','closed','','102-revision-v1','','','2020-08-13 14:57:16','2020-08-13 14:57:16','',102,'https://ingivision.admirae.es/2020/08/13/102-revision-v1/',0,'revision','',0),(138,1,'2020-08-13 14:57:23','2020-08-13 14:57:23','','Ingivision','','inherit','closed','closed','','107-revision-v1','','','2020-08-13 14:57:23','2020-08-13 14:57:23','',107,'https://ingivision.admirae.es/2020/08/13/107-revision-v1/',0,'revision','',0),(139,1,'2020-08-13 14:57:33','2020-08-13 14:57:33','','Nuestro sistema','','inherit','closed','closed','','112-revision-v1','','','2020-08-13 14:57:33','2020-08-13 14:57:33','',112,'https://ingivision.admirae.es/2020/08/13/112-revision-v1/',0,'revision','',0),(140,1,'2020-08-13 14:57:40','2020-08-13 14:57:40','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong>&nbsp;INGIVISION SLL<br><strong>Domicilio social:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong>&nbsp;B12893624<br><strong>Teléfono:</strong>&nbsp;+34 964 86 16 55<br><strong>Correo Electrónico:</strong>&nbsp;ingivision@ingivision.com<br><strong>Nombre del dominio:</strong>&nbsp;www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','inherit','closed','closed','','100-revision-v1','','','2020-08-13 14:57:40','2020-08-13 14:57:40','',100,'https://ingivision.admirae.es/2020/08/13/100-revision-v1/',0,'revision','',0),(141,1,'2020-08-13 14:57:41','2020-08-13 14:57:41','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong>&nbsp;INGIVISION SLL<br><strong>Domicilio social:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong>&nbsp;B12893624<br><strong>Teléfono:</strong>&nbsp;+34 964 86 16 55<br><strong>Correo Electrónico:</strong>&nbsp;ingivision@ingivision.com<br><strong>Nombre del dominio:</strong>&nbsp;www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','inherit','closed','closed','','100-revision-v1','','','2020-08-13 14:57:41','2020-08-13 14:57:41','',100,'https://ingivision.admirae.es/2020/08/13/100-revision-v1/',0,'revision','',0),(142,1,'2020-08-13 14:57:50','2020-08-13 14:57:50','','Productos','','inherit','closed','closed','','108-revision-v1','','','2020-08-13 14:57:50','2020-08-13 14:57:50','',108,'https://ingivision.admirae.es/2020/08/13/108-revision-v1/',0,'revision','',0),(143,1,'2020-08-13 14:58:13','2020-08-13 14:58:13','','IngiGrader','','inherit','closed','closed','','109-revision-v1','','','2020-08-13 14:58:13','2020-08-13 14:58:13','',109,'https://ingivision.admirae.es/2020/08/13/109-revision-v1/',0,'revision','',0),(144,1,'2020-08-13 14:58:23','2020-08-13 14:58:23','','IngiSorter','','inherit','closed','closed','','110-revision-v1','','','2020-08-13 14:58:23','2020-08-13 14:58:23','',110,'https://ingivision.admirae.es/2020/08/13/110-revision-v1/',0,'revision','',0),(145,1,'2020-08-13 14:58:31','2020-08-13 14:58:31','','IngiSorter+','','inherit','closed','closed','','111-revision-v1','','','2020-08-13 14:58:31','2020-08-13 14:58:31','',111,'https://ingivision.admirae.es/2020/08/13/111-revision-v1/',0,'revision','',0),(147,1,'2020-08-13 14:58:49','2020-08-13 14:58:49','<!-- wp:heading -->\n<h2>\"Fruit sorter retrofit\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque. &nbsp;Esta actualización en máquinas que no son nueva&nbsp; es lo que llamamos retrofit.<br>Nuestros 3 productos, ingiSorter, ingiSorter+ e ingiGrader funcionan en cualquier tipo de máquina. Un retrofit te va a permitir recibir los beneficios de nuestro software de calibración (peso, color, y …) sin el desembolso de capital que implica reemplazar tu calibrador actual&nbsp; por otro nuevo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicio de instalación.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sin preocupaciones.<br>Así es nuestro servicio de instalación para ti. Te aseguramos la perfecta instalación de ingisorter en tus máquinas,&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Servicio de mantenimiento<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soporte</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque nuestro sistema es un sistema de fácil manejo, te damos soporte y formación tanto a tu equipo como a tu cliente final.<br>Tranquilo, unas pocas horas son suficientes para dominar nuestro software.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Actualizaciones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dentro de nuestra filosofía de mejora continua, incluimos la posibilidad de obtener actualizaciones periódicas de Ingisorter, Ingisorter+ e Ingigrader con las mejoras que vamos implementando para que siempre tengas la última tecnología en tus máquinas si así lo quieres.</p>\n<!-- /wp:paragraph -->','Servicios','','inherit','closed','closed','','103-revision-v1','','','2020-08-13 14:58:49','2020-08-13 14:58:49','',103,'https://ingivision.admirae.es/2020/08/13/103-revision-v1/',0,'revision','',0),(148,1,'2020-08-18 15:09:42','2020-08-18 15:09:42','<!-- wp:paragraph -->\n<p>Are you one of those who look at the physique or do you fall in love with the interior? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You may have a clear answer if we are talking about people. But what happens when we talk about fruit or vegetables? Do you think the same way? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>69% of consumers prioritize quality as the reason that most influences their purchase decision, compared to 24% who buy fruit and vegetables motivated by the appearance or presentation of the product. <em>(Source: YouGov for Alimarket Great Consumption)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;If you work in the fruit and vegetable sector, do not miss this post in which I analyze all the important points related to quality control in fruits and vegetables. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But what do we understand by quality in fruits and vegetables? At this point it is necessary to start with the definition of quality, don\'t you think?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definition of quality</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The word \"quality\" comes from the Latin qualitas, which means quality or attribute of an object. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, today a fairly accepted meaning would be \"degree of excellence or superiority\"<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We say that a product is of higher quality when it surpasses another product in one or more attributes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quality is, therefore, a concept that has a clear subjective component. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each consumer applies his own personal filter to determine the quality of the same food.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, the concept of quality has been&nbsp; changing over time. For example, what was once&nbsp; considered a quality tomato, today might not be. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let us briefly see what&nbsp; the current concept is.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Evolution of quality in fruits and vegetables</strong>.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;Today the total consumption of fruit and vegetables has increased compared to previous decades due to&nbsp; different causes such as: concern about a healthier diet, lack of time to cook, increase in popularity&nbsp; of veganism and other diets based on the consumption of vegetables in Western societies, etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the other hand, and as we have seen, there is a growing demand for <strong>top quality fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Years ago, growers, merchants and consumers decided upon their own quality standards without a unifying criteria.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, nowadays and taking into account that the price of fruit is determined by its quality level, standards need to be established.<br><br>The higher the quality of the fruit, the higher the price and profit. Hence the interest of producers and merchants to search for excellence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What the consumer values ​​is the appearance, taste and nutrients that fresh and seasonal fruits provide. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For their part, producers are continuously innovating with varieties of fruit and vegetables and which aspects, such as ripeness, taste and freshness are prioritized.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, and how could it be otherwise, there is legislation that regulates the entire issue of quality within a territory, both at national, European and international level with numerous regulatory bodies. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of this standardization is to establish a common point in international trade and to provide a criterion that allows determining the minimum quality to be met.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>What parameters define the quality of fruits and vegetables and what parameters influence the quality of the fruits?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To set the standards of quality, the ripeness of the fruit is the most important factor. Exterior aspects and some technical factors must be considered as well.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The main components of the quality of fresh fruits and vegetables are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>The typical aspects of each variety of fruit</strong></li><li><strong><strong>The absence of defects&nbsp;</strong></strong><br>It is important to point out that defects do not affect the edibleness of a fruit. <br><br>However, fruit with physical or morphological defects is rejected by the majority of consumers. These defects can occur during growth due to various causes such as climate, irrigation, fertilization, etc.<br></li><li><strong><strong>Adequate development and ripeness</strong><br></strong>Consumers likes fresh and edible fruit. <br><br>Freshness is undrestood to be the shortest possible time elapsing between the time of harvest and the time of purchase.<br><br>Ripeness is the exact time for harvesting when the fruit is firm, colorful, and flavourful. <br>After all, who does not like to eat a good sweet orange with its characteristic aroma or a crunchy apple? <br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Size<br></strong>Considering the size or caliber of the fruit, three different qualities are established: <strong>extra fruit, first quality fruit, second class fruit</strong>.<br></li><li><strong>Homogeneity<br></strong>Homogeneity is sought both in the caliber of the fruits and in the color they present and level of ripeness of each batch.<strong><br></strong></li><li><strong>Packaging / presentation<br></strong>Worrying physical defects can occur during the packaging process. Mishandling of the fruit can cause bruises in the fruit. <br><br>Sprouting and rootings in bulbs and roots are two other problems that can occur in inadequate packaging.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>How is the fruit evaluated in a quality control?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are three types of evaluation.<br><br>The first is sensory evaluation.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Sensory evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In sensory evaluation, in which five aspects are considered. They are color, size and weight, texture, taste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color is to be uniform in appearance, homogeneous and shiny&nbsp;</li><li>Size and weight are to be similar among the fruits.</li><li>Texture means the fruit is firm and ripe.</li><li>Taste is the smell and flavor of the fruit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Technical evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ph, humidity, and firmness are the three components also valued in analyzing fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Microbiological and chemical tests</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Microbiological and chemical tests are carried out to discover the presence of any microorganisims in the fruit.&nbsp; </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of these tests is to determine what chemicals the plant has been treated with during the growth and ripening process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Fruit and vegetable quality control and its phases</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the time of harvest, if the collection is done by hand, a first “filtering” of the fruit is carried out by discarding the pieces of fruit that do not meet the standards mentioned previously.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once the fruit has been transferred to the sorting place, four steps take place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Positioning<br></strong>This involves placing the frui ton the production lines for calibration and classification.<br></li><li><strong>Classification and identification<br></strong>The pieces of fruit are classified and separated by category according to the size, weight, and size of diameter. <br><br>Any small stones and pieces of dirt are removed at this stage.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defects<br></strong>Defects are detected to eliminate the fruits that cannot be taken to the sales shelf.<br></li><li><strong>Final check and packaging<br></strong>In this phase, the fruit is protected so that it can withstand transport. It will be boxed and put on pallets.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>How to carry out the quality process in fruits in an automated way</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The horticultural industrial sector is focused on finding solutions that will improve each of the above mentioned phases of quality control.&nbsp; <br><br>In the market, there are many machines and robotic elements that optimize these different stages. These are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Faster calibrators.<br></li><li>Specialized software in the dectection of parameters such as color, size, weight.<br></li><li>Applied artificial intelligence systems capable of detecting exterior and interior defects in the fruit.<br></li><li>Versitile and compact palletizers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The&nbsp; above examples show the advances in this field and how rapidly they are changing the industry, which is now&nbsp; termed&nbsp; Industry 4.0.&nbsp; Industry 4.0 is simply a new way of organizing production based on new technologies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The fruit and vegetable sector has opted to mechanize all the processes that take place in the warehouse to the upmost. By doing so, the interconnected warehouses allows data to flow in real time so quick and accurate decisions can be made.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><strong>What does Invigision propose for you?</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We have developed a low cost electronic calibration system suitable for any new or old calibrator.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The software is capable of detecting weight, siz, color, density, shape, and exterior fruit defects among other variable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Other important characteristics of our system are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Component reduction.<br></li><li>A single program adapts to any type of calibration for almost every kind of fruit such as cherries, citrus fruits, tomatoes, avocados, mangoes, melons, watermelons, and even some types of pumpkins.<br></li><li>Excellent value for money.<br></li><li>High performance in weight, size, color, shape, and defects evaluations.&nbsp; Up to 30 units of fruit/second.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>If you are looking to save time and increase the effectiveness and efficiency of&nbsp; your product lines, take a look at our full sizing software programs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Sources: Ministry of Industry, Commerce and Tourism, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','What is quality control in fruits?','','publish','closed','closed','','what-is-quality-control-in-fruits','','','2020-08-18 15:12:32','2020-08-18 15:12:32','',0,'https://ingivision.admirae.es/?p=148',0,'post','',0),(149,1,'2020-08-14 08:46:09','2020-08-14 08:46:09','<!-- wp:paragraph -->\n<p>Are you one of those who look at the physique or do you fall in love with the interior? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You may have a clear answer if we are talking about people. But what happens when we talk about fruit or vegetables? Do you think the same way? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>69% of consumers prioritize quality as the reason that most influences their purchase decision, compared to 24% who buy fruit and vegetables motivated by the appearance or presentation of the product. <em>(Source: YouGov for Alimarket Great Consumption)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> If you work in the fruit and vegetable sector, do not miss this post in which I analyze all the important points related to quality control in fruits and vegetables. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But what do we understand by quality in fruits and vegetables? At this point it is necessary to start with the definition of quality, don\'t you think?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definition of quality</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The word \"quality\" comes from the Latin qualitas, which means quality or attribute of an object. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, today a fairly accepted meaning would be \"degree of excellence or superiority\"<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We say that a product is of higher quality when it surpasses another product in one or more attributes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quality is, therefore, a concept that has a clear subjective component. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each consumer applies his own personal filter to determine the quality of the same food.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, the concept of quality has been  changing over time. For example, what was once  considered a quality tomato, today might not be. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let us briefly see what  the current concept is.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Evolution of quality in fruits and vegetables</strong>.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;Today the total consumption of fruit and vegetables has increased compared to previous decades due to&nbsp; different causes such as: concern about a healthier diet, lack of time to cook, increase in popularity&nbsp; of veganism and other diets based on the consumption of vegetables in Western societies, etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the other hand, and as we have seen, there is a growing demand for <strong>top quality fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Years ago, growers, merchants and consumers decided upon their own quality standards without a unifying criteria.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, nowadays and taking into account that the price of fruit is determined by its quality level, standards need to be established.<br><br>The higher the quality of the fruit, the higher the price and profit. Hence the interest of producers and merchants to search for excellence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What the consumer values ​​is the appearance, taste and nutrients that fresh and seasonal fruits provide. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For their part, producers are continuously innovating with varieties of fruit and vegetables and which aspects, such as ripeness, taste and freshness are prioritized.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, and how could it be otherwise, there is legislation that regulates the entire issue of quality within a territory, both at national, European and international level with numerous regulatory bodies. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of this standardization is to establish a common point in international trade and to provide a criterion that allows determining the minimum quality to be met.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>What parameters define the quality of fruits and vegetables and what parameters influence the quality of the fruits?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To set the standards of quality, the ripeness of the fruit is the most important factor. Exterior aspects and some technical factors must be considered as well.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The main components of the quality of fresh fruits and vegetables are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>The typical aspects of each variety of fruit</strong></li><li><strong><strong>The absence of defects </strong></strong><br>It is important to point out that defects do not affect the edibleness of a fruit. <br><br>However, fruit with physical or morphological defects is rejected by the majority of consumers. These defects can occur during growth due to various causes such as climate, irrigation, fertilization, etc.<br></li><li><strong><strong>Adequate development and ripeness</strong><br></strong>Consumers likes fresh and edible fruit. <br><br>Freshness is undrestood to be the shortest possible time elapsing between the time of harvest and the time of purchase.<br><br>Ripeness is the exact time for harvesting when the fruit is firm, colorful, and flavourful. <br>After all, who does not like to eat a good sweet orange with its characteristic aroma or a crunchy apple? <br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Size<br></strong>Considering the size or caliber of the fruit, three different qualities are established: <strong>extra fruit, first quality fruit, second class fruit</strong>.<br></li><li><strong>Homogeneity<br></strong>Homogeneity is sought both in the caliber of the fruits and in the color they present and level of ripeness of each batch.<strong><br></strong></li><li><strong>Packaging / presentation<br></strong>Worrying physical defects can occur during the packaging process. Mishandling of the fruit can cause bruises in the fruit. <br><br>Sprouting and rootings in bulbs and roots are two other problems that can occur in inadequate packaging.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>How is the fruit evaluated in a quality control?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are three types of evaluation.<br><br>The first is sensory evaluation.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Sensory evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In sensory evaluation, in which five aspects are considered. They are color, size and weight, texture, taste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color is to be uniform in appearance, homogeneous and shiny </li><li>Size and weight are to be similar among the fruits.</li><li>Texture means the fruit is firm and ripe.</li><li>Taste is the smell and flavor of the fruit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Technical evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ph, humidity, and firmness are the three components also valued in analyzing fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Microbiological and chemical tests</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Microbiological and chemical tests are carried out to discover the presence of any microorganisims in the fruit.  </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of these tests is to determine what chemicals the plant has been treated with during the growth and ripening process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Fruit and vegetable quality control and its phases</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the time of harvest, if the collection is done by hand, a first “filtering” of the fruit is carried out by discarding the pieces of fruit that do not meet the standards mentioned previously.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once the fruit has been transferred to the sorting place, four steps take place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Positioning<br></strong>This involves placing the frui ton the production lines for calibration and classification.<br></li><li><strong>Classification and identification<br></strong>The pieces of fruit are classified and separated by category according to the size, weight, and size of diameter. <br><br>Any small stones and pieces of dirt are removed at this stage.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defects<br></strong>Defects are detected to eliminate the fruits that cannot be taken to the sales shelf.<br></li><li><strong>Final check and packaging<br></strong>In this phase, the fruit is protected so that it can withstand transport. It will be boxed and put on pallets.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>How to carry out the quality process in fruits in an automated way</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The horticultural industrial sector is focused on finding solutions that will improve each of the above mentioned phases of quality control.  <br><br>In the market, there are many machines and robotic elements that optimize these different stages. These are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Faster calibrators.<br></li><li>Specialized software in the dectection of parameters such as color, size, weight.<br></li><li>Applied artificial intelligence systems capable of detecting exterior and interior defects in the fruit.<br></li><li>Versitile and compact palletizers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The&nbsp; above examples show the advances in this field and how rapidly they are changing the industry, which is now&nbsp; termed&nbsp; Industry 4.0.&nbsp; Industry 4.0 is simply a new way of organizing production based on new technologies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The fruit and vegetable sector has opted to mechanize all the processes that take place in the warehouse to the upmost. By doing so, the interconnected warehouses allows data to flow in real time so quick and accurate decisions can be made.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><strong>What does Invigision propose for you?</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We have developed a low cost electronic calibration system suitable for any new or old calibrator.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The software is capable of detecting weight, siz, color, density, shape, and exterior fruit defects among other variable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Other important characteristics of our system are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Component reduction.<br></li><li>A single program adapts to any type of calibration for almost every kind of fruit such as cherries, citrus fruits, tomatoes, avocados, mangoes, melons, watermelons, and even some types of pumpkins.<br></li><li>Excellent value for money.<br></li><li>High performance in weight, size, color, shape, and defects evaluations.  Up to 30 units of fruit/second.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>If you are looking to save time and increase the effectiveness and efficiency of  your product lines, take a look at our full sizing software programs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Sources: Ministry of Industry, Commerce and Tourism, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','What is quality control in fruits?','','inherit','closed','closed','','148-revision-v1','','','2020-08-14 08:46:09','2020-08-14 08:46:09','',148,'https://ingivision.admirae.es/2020/08/14/148-revision-v1/',0,'revision','',0),(151,1,'2020-08-14 09:02:03','2020-08-14 09:02:03','<!-- wp:heading -->\n<h2>PRIVACY</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible - who is responsible for data processing?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identity:</strong> INGIVISION SLL<br><strong>Registered office:</strong> Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong> B12893624<br><strong>Telephone:</strong> +34 964 86 16 55<br><strong>Email:</strong> ingivision@ingivision.com<br><strong>Domain name:</strong> www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purposes - for what purposes do we process your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In compliance with the provisions of the European Regulation 2016/679 General Data Protection, we inform you that we will treat the data you provide us to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Manage the contracting of services that you carry out through the Platform, as well as the corresponding billing and delivery.</li><li>Periodically send communications about services, events and news related to the activities developed by INGIVISION SLL, by any means (telephone, postal mail or email), unless otherwise indicated or the user opposes or revokes their consent.</li><li>Send commercial and / or promotional information related to the contracted service sector and added value for end users, unless otherwise indicated or the user opposes or revokes their consent.</li><li>Complying with the legally established obligations, as well as verifying compliance with contractual obligations, included the prevention of fraud.</li><li>Transfer of data to organizations and authorities, as long as they are required in accordance with the legal and regulatory provisions.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Data categories - What data do we process?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derived from the aforementioned purposes, in INGIVISION SLL we manage the following categories of data:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Identifying data</li><li>Electronic communications metadata</li><li>Commercial information data. In the event that the user provides data from third parties, they declare that they have their consent and undertake to transfer the information contained in this clause, exempting INGIVISION SLL from any responsibility in this regard.</li><li>However, INGIVISION SLL may carry out the verifications to verify this fact, adopting the corresponding due diligence measures, in accordance with the data protection regulations.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimation - what is the legitimacy for the processing of your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The processing of data whose purpose is to send periodic bulletins (newslettering) about services, events and news related to our professional activity is based on the consent of the interested party, expressly requested to carry out said treatments, in accordance with current regulations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition, the legitimacy for the processing of data related to offers or collaborations is based on the consent of the user who submits their data, which can be withdrawn at any time, although this may affect the possible fluid communication and obstruction of processes. you want to do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, the data may be used to comply with the legal obligations applicable to INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Data Conservation Period - How long will we keep your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL will keep the personal data of the users only for the time necessary to carry out the purposes for which they were collected, as long as it does not revoke the consents granted. Subsequently, if necessary, it will keep the information blocked during the legally established periods.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Recipients To which recipients will your data be communicated?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your data may be accessed by those providers that provide services to INGIVISION SLL, such as hosting services, marketing tools and content systems or other professionals, when such communication is legally necessary, or for the execution of the contracted services.<br><br>INGIVISION SLL, has signed the corresponding treatment order contracts with each of the providers that provide services to INGIVISION SLL, with the aim of guaranteeing that said providers will treat your data in accordance with the provisions of current legislation.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They may also be transferred to the State Security Forces and Bodies in cases where there is a legal obligation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Banks and financial entities, for the collection of services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Public administrations with competence in the sectors of activity, when established by current regulations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Information Security - What security measures do we implement to take care of your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To protect the different types of data reflected in this privacy policy, it will carry out the necessary technical security measures to prevent its loss, manipulation, dissemination or alteration.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encryption of information on INGIVISION SLL\'s own servers</li><li>Other measures that prevent access to user data by third parties</li><li>In those cases in which INGIVISION SLL has service providers for the maintenance of the platform that are outside the European Union, these international transfers have been regularized according to the commitment of</li><li>INGIVISION SLL with the protection, integrity and security of users\' personal data.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Rights - What are your rights when you provide us with your data and how can you exercise them?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You have the right to obtain confirmation about whether INGIVISION SLL is treating personal data that concerns you, or not. Likewise, you have the right to access your personal data, as well as to request the rectification of inaccurate data or, where appropriate, request its deletion when, among other reasons, the data is no longer necessary for the purposes for which it was collected.<br><br>In certain circumstances, you may request the limitation of the processing of your data, in which case we will only keep it for the exercise or defense of claims.<br><br>In certain circumstances and for reasons related to your particular situation, you may oppose the processing of your data. INGIVISION SLL will stop processing the data, except for compelling legitimate reasons, or the exercise or defense of possible claims. Likewise, you can exercise the right to data portability, as well as withdraw the consents provided at any time, without affecting the legality of the treatment based on the consent prior to its withdrawal. <br><br>If you wish to make use of any of your rights, you can contact <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>. <br><br>Finally, we inform you that you can contact the Spanish Data Protection Agency and other competent public bodies for any claim arising from the processing of your personal data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modification of the privacy policy</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL may modify this Privacy Policy at any time, the successive versions being published on the Website. In any case, INGIVISION SLL will communicate with prior notice the modifications to this policy that affect users so that they can accept them. This Privacy Policy is updated on 12/27/2018 INGIVISION SLL (Spain). All rights reserved. <br><br>If you wish, you can also consult our Cookies Policy Legal notice<br></p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','100-revision-v1','','','2020-08-14 09:02:03','2020-08-14 09:02:03','',100,'https://ingivision.admirae.es/2020/08/14/100-revision-v1/',0,'revision','',0),(152,1,'2020-08-14 09:15:13','2020-08-14 09:15:13','<!-- wp:heading -->\n<h2>Legal notice and terms of use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In this space, the USER will be able to find all the information related to the legal terms and conditions that define the relationships between users and us as responsible for this website. As a user, it is important that you know these terms before continuing your navigation. Ingivision SLL. As responsible for this website, it assumes the commitment to process the information of our users and clients with full guarantees and to comply with the national and European requirements that regulate the collection and use of the personal data of our users. This website, therefore, strictly complies with the RGPD (REGULATION (EU) 2016/679 on data protection) and the LSSI-CE Law 34/2002, of July 11, on services of the information society and electronic commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>GENERAL CONDITIONS OF USE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These General Conditions regulate the use (including mere access) of the web pages, members of the www.ingivision.com website, including the contents and services made available in them. Any person who accesses the web, www.ingivision.com (\"User\") agrees to be bound by the General Conditions in force at all times of the www.ingivision.com portal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PERSONAL DATA WE COLLECT AND HOW WE DO IT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Read Privacy Policy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMITMENTS AND OBLIGATIONS OF THE USERS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The User is informed, and accepts, that access to this website does not imply, in any way, the beginning of a commercial relationship with www.ingivision.com. In this way, the user agrees to use the website, its services and content without violating current legislation, good faith and public order.<br>The use of the website is prohibited, for illegal or harmful purposes, or that, in any way, may cause damage or prevent the normal functioning of the website. Regarding the contents of this website, its reproduction, distribution or modification, in whole or in part, unless it has the authorization of its legitimate owners is prohibited.  Any violation of the rights of the provider or of the legitimate owners and  its use for commercial or advertising purposes is also prohibited.<br><br>When using the website, www.ingivision.com, the User agrees not to carry out any conduct that could damage the image, interests and rights of www.ingivision.com or third parties or that could damage, disable or overload the portal (indicate domain) or prevent in any way the normal use of the web. However, the User must be aware that the security measures of computer systems on the Internet are not entirely reliable and therefore www.ingivision.com cannot guarantee the absence of viruses or other elements that may cause alterations in the computer systems (software and hardware) of the User or in their electronic documents and files contained therein. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>SECURITY MEASURES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>L</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The personal data communicated by the user to www.ingivision.com can be stored or not in automated databases  whose ownership corresponds exclusively to www.ingivision.com. INGIVISION SLL takes responsibility for  all the technical, organizational and security measures that guarantee the confidentiality, integrity and quality of the information contained therein in accordance with the provisions of current regulations on data protection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL (www.ingivision.com) uses a secure channel to communicate with its users. The transmitted data is encrypted thanks to https protocols, therefore, INGIVISION SLL guarantees the best security conditions so that confidentiality of the users is guaranteed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CLAIMS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Claim sheets are available to users and customers.  Users may make claims by requesting the claim form or by sending an email to  <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a> indicating  name and surname, the service and / or product purchased and stating the reasons for their claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user/buyer may notify us of the claim either by e-mail to ingivision invigision.com****attaching the following claim form: The service/product, date of purchase, user´s name and address, signature (only if presented on paper) date of claim, and reason for claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONFLICT RESOLUTION PLATFORM</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In submitting a claim, the dispute resolution platform provided by the European Commission can also be used. It is available at the following link: <a href=\"http://ee.europa.eu/consumers/ord\">http://ee.europa.eu/consumers/ord</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>NTELLECTUAL AND INDUSTRIAL PROPERTY RIGHTS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Personal data of the interested party who owns the rights allegedly infringed, or indicate the representation with which he acts in the event that the claim is presented by a third party other than the interested party.</li><li>Point out the contents protected by intellectual property rights and their location on the web, the accreditation of the intellectual property rights indicated and an express declaration in which the interested party is responsible for the veracity of the information provided in the notification.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXTERNAL LINKS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>for the veracity of the information provided in the notification EXTERNAL LINKS The pages of the web www.ingivision.com, could provide links to other own websites and content that are owned by third parties. The sole purpose of the links is to provide the User with the possibility of accessing said links. www.ingivision.com is not responsible in any case for the results that may be derived to the User by accessing said links.<br><br>Likewise, the user will find within this site, pages, promotions, affiliate programs that access the browsing habits of users to establish profiles. This information is always anonymous and the user is not identified.<br><br>Information provided on these sponsored Sites or affiliate links is subject to the privacy policies used on those Sites and will not be subject to this privacy policy. Therefore, we highly recommend Users to carefully review the privacy policies of affiliate links.<br><br>The User who intends to establish any technical link device from his website to the www.ingivision.com portal must obtain the prior written authorization of www.ingivision.com The establishment of the link does not imply in any case the existence of relations between www .ingivision.com and the owner of the site where the link is established, nor the acceptance or approval by www.ingivision.com of its contents or services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMENTS POLICY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On our website and comments are allowed to enrich the content and make inquiries. Comments that are not related to the theme of this website, which include defamations, grievances, insults, personal attacks or general disrespect towards the author or other members will not be accepted. Comments that contain information that is obviously misleading or false, as well as comments that contain personal information, such as, for example, private addresses or telephones and that violate our data protection policy, will also be deleted. <br><br>Likewise, those comments created only for promotional purposes of a website, person or group and everything that may be considered spam in general will be rejected. Anonymous comments are not allowed, as well as those made by the same person with different nicknames. Comments that try to force a debate or take a position by another user will not be considered either.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSION OF GUARANTEES AND RESPONSIBILITY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Provider does not grant any guarantee nor is it responsible, in any case, for damages of any nature that could be caused by:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>The lack of availability, maintenance and effective operation of the web, or of its services and contents.</li><li>The existence of viruses, malicious or harmful programs in the contents.</li><li>The illicit, negligent, fraudulent use or contrary to this Legal Notice.</li><li>The lack of legality, quality, reliability, usefulness and availability of the services provided by third parties and made available to users on the website.</li><li> The provider is not responsible under any circumstances for damages that may arise from the illegal or improper use of this website.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>APPLICABLE LAW AND JURISDICTION</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the relations between www.ingivision.com with the Users of its telematic services, present on this website, are subject to Spanish legislation and jurisdiction and to the courts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In case any User has any questions about these Legal Conditions or any comment on the www.ingivision.com portal, please contact<br> ingivision@ingivision.com On behalf of the team that make up Ingivision SLL, we thank you for the time dedicated to reading this Legal Notice</p>\n<!-- /wp:paragraph -->','Legal notice','','inherit','closed','closed','','101-revision-v1','','','2020-08-14 09:15:13','2020-08-14 09:15:13','',101,'https://ingivision.admirae.es/2020/08/14/101-revision-v1/',0,'revision','',0),(154,1,'2020-08-14 09:37:01','2020-08-14 09:37:01','<!-- wp:heading -->\n<h2>Cookies policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On this website, third-party and own cookies are used to ensure that you have a better browsing experience, you can share content on social networks and so that we can obtain user statistics.<br><br> You can prevent the download of cookies through your browser settings, preventing cookies from being stored on your device. As the owner of this website, I inform you that we do not use any personal information from cookies, we only carry out general statistics of visits that do not involve any personal information. <br><br>It is very important that you read this cookie policy and understand that, if you continue browsing, we will consider that you accept its use. <br><br>According to the terms included in article 22.2 of Law 34/2002 on Services of the Information Society and Electronic Commerce, if you continue browsing, you will be giving your consent for the use of the aforementioned mechanisms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible Entity</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The entity responsible for the collection, processing and use of your personal data, in the sense established by the Personal Data Protection Law is the page www.ingivision.com, owned by Ingivision SLL - Av. De la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>What are cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> Cookies are a set of data that a server deposits in the user\'s browser to collect standard Internet registration information and information on the behavior of visitors to a website. <br>In other words, these are small text files that are stored on the computer\'s hard drive and that serve to identify the user when they connect to the website again. Its purpose is to record the user\'s visit and save certain information. Its use is common and frequent on the web since it allows the pages to function more efficiently and achieve greater personalization and analysis of user behavior</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What types of cookies are there?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The cookies used on our website are session and third-party cookies which enable us to store, access information regarding&nbsp; the language, the type of browser used, and other general characteristics predefined by the user. We&nbsp; are also able to follow and analyze the activity carried out in order to introduce improvements and provide our services in a more efficent and personalized way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on their permanence, cookies can be divided into session or permanent cookies, those that expire when the user closes the browser, and those that expire when their purpose is fulfilled (for example, the user remains identified in the services of INGIVSION SLL) and lastly when the cookies are deleted manually.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Name</td><td>Type</td><td>Date of Expiry</td><td>Purpose</td><td>Class</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 years</td><td>Identify user and session.</td><td>Not exempt</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutes</td><td>Identify session<br></td><td>Not exempt</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>When session is over</td><td>Configure for Urchin</td><td>Not exempt</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 months</td><td>Store origin or user<br>Trail to get web page</td><td>Not exempt</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Depending on the objective, cookies can be classified as follows:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Performance</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies remembers your preferences for the tools found in the services so you do not have to reconfigure the service each time you visit. To give  two examples, this typology includes volumen settings for video or sound players  as well as video transmission speeds that are compatible with your browser. Preformance cookies also store the “Shopping cart” objects in e-commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Geo-location</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These cookies are used to find out which country you are in when a service is requested. They are completely anonymous and their purpose is to help guide content to your location.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Registration cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once the user has registered or subsequently opened a session, registration cookies are generated and are used to identify the user in the services with the following objectives. <br><br>Firstly, registration cookies keep the users identified so that when a session or computer is closed, when the users re-enter, they continue to be identified.This function can be surpressed by pressing the close session thereby eliminating the cookie. <br><br>However, the next time the users enter the service, their identification will have to be reestablished. Secondly, these cookies check if the users are authorized to access certain services, for example, to enter a contest. Additionally, some services may use connectors with social networks such as Facebook or Twitter. <br><br>When the user registers in a  social network service with credentials, the network is authorized to save a persistent cookie that remembers the user´s identity to guarantee access to its services until the date of expiry. Updating preferences on the user´s experience site deletes and revokes cookie access to the social network services. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Analytic cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Every time a user visits a service, a tool from an external provider generates an analytical cookie on the user´s computer.This type of cookie is only generated during the visit but will serve, in future visits to INGIVISION SLL services, to identify the visitor in an anonymous way. The principal objectives of these cookies are&nbsp; to allow the identification of the users who are browsing in an anonymous way via the cookie. In other words,&nbsp; the cookie identifies the browser and devices but not the identity of the user. The sole purpose of these cookies is to count the number of visitors to a site and the users´ preferences over a period of time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;The second objective allows for knowing if the user is new one. It is important to point out that unless the user decides to register for an INGIVISION SLL service, the analytic cookie will never be associated with any personal data that could identify the user. Analytic cookies are only for&nbsp; statistical purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Advertising cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies permits diffusion of the information given in the advertisement, which is shown to each anonymous user of the services of INGIVISION SLL. The duration or frequency of views, the interaction with them, the browsing patterns and/or user behavior are stored and later used to form a profile of advertising interest. In this way, advertising cookies allow advertising to fit the interests of the user.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to the advertising managed by&nbsp; the INGIVISION SLL websites, the company offers its advertisers the option of showing advertisements using third-parties, (“Ad-Servers”). These third parties are permitted to store cookies sent from INGIVISION SLL services from their users´ browsers. The third parties can also access this data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The companies that generate the above types of cookies have their own privacy policies. INGIVISION SLL currently uses the Google Doubleclick platform to manage these services. For more information go to <a href=\"https://google.es/policies/privacy/ads/#toc-doublelick\">https://google.es/policies/privacy/ads/#toc-doublelick</a> and <a href=\"http://www.google.es/policies/privacy/ads/\">www.google.es/policies/privacy/ads/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How can cookies be deleted from your browser?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Diffrent browsers can be programmed to notify the user that cookies have been received and prevent them from being installed. The user can also check the browser to see which cookies have been installed and their date of expiry in order to eliminate them.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more, consult the instructions and browser manuals as well as the administration of cookies found in Google Chrome, <a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a>. For managing cookies in Internet Explorer, go to&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:embed {\"url\":\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\"} -->\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttp://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\n</div></figure>\n<!-- /wp:embed -->\n\n<!-- wp:paragraph -->\n<p>More information about the administration of cookies can be found in: Mozilla Firefox <a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a>&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Safari: <a href=\"http://www.apple.com/es/privacy/use-of-cookies\">http://www.apple.com/es/privacy/use-of-cookies</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Opera: <a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To stop being followed by Google Analytics, go to <a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More information about cookies and online advertising based on behavior and online privacy can be found at the following link: <a href=\"http://www.youronlinechoices.com/es\">http://www.youronlinechoices.com/es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Google Analytics data protection: <a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;How Google Analylitics uses cookies: <a href=\"https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs</a>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Updates and changes in the Cookie Privacy Policy.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For updates and changes in the Cookie Privacy Policy, INGIVISION SLL may modify this policy if there are any  changes in the legislative and regulatory requirements or instructions issued by the Spanish Data Protection Agency. Users are advised to periodically check updates. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if there are any significant changes, registered users will be notified through the web or email. </p>\n<!-- /wp:paragraph -->','Cookies','','inherit','closed','closed','','102-revision-v1','','','2020-08-14 09:37:01','2020-08-14 09:37:01','',102,'https://ingivision.admirae.es/2020/08/14/102-revision-v1/',0,'revision','',0),(155,1,'2020-08-14 09:37:01','2020-08-14 09:37:01','{{unknown}}','','','publish','closed','closed','','d9f03e7b40ea2030e345ae65b490f1e1','','','2020-08-14 09:37:01','2020-08-14 09:37:01','',0,'https://ingivision.admirae.es/2020/08/14/d9f03e7b40ea2030e345ae65b490f1e1/',0,'oembed_cache','',0),(157,1,'2020-08-14 09:41:51','2020-08-14 09:41:51','<!-- wp:heading -->\n<h2>Cookies policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On this website, third-party and own cookies are used to ensure that you have a better browsing experience, you can share content on social networks and so that we can obtain user statistics.<br><br> You can prevent the download of cookies through your browser settings, preventing cookies from being stored on your device. As the owner of this website, I inform you that we do not use any personal information from cookies, we only carry out general statistics of visits that do not involve any personal information. <br><br>It is very important that you read this cookie policy and understand that, if you continue browsing, we will consider that you accept its use. <br><br>According to the terms included in article 22.2 of Law 34/2002 on Services of the Information Society and Electronic Commerce, if you continue browsing, you will be giving your consent for the use of the aforementioned mechanisms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible Entity</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The entity responsible for the collection, processing and use of your personal data, in the sense established by the Personal Data Protection Law is the page www.ingivision.com, owned by Ingivision SLL - Av. De la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>What are cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;Cookies are a set of data that a server deposits in the user\'s browser to collect standard Internet registration information and information on the behavior of visitors to a website. <br>In other words, these are small text files that are stored on the computer\'s hard drive and that serve to identify the user when they connect to the website again. Its purpose is to record the user\'s visit and save certain information. Its use is common and frequent on the web since it allows the pages to function more efficiently and achieve greater personalization and analysis of user&nbsp;behavior</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What types of cookies are there?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The cookies used on our website are session and third-party cookies which enable us to store, access information regarding&nbsp; the language, the type of browser used, and other general characteristics predefined by the user. We&nbsp; are also able to follow and analyze the activity carried out in order to introduce improvements and provide our services in a more efficent and personalized way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on their permanence, cookies can be divided into session or permanent cookies, those that expire when the user closes the browser, and those that expire when their purpose is fulfilled (for example, the user remains identified in the services of INGIVSION SLL) and lastly when the cookies are deleted manually.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Name</td><td>Type</td><td>Date of Expiry</td><td>Purpose</td><td>Class</td></tr><tr><td>__utma</td><td>Google Analytics</td><td>2 years</td><td>Identify user and session.</td><td>Not exempt</td></tr><tr><td>__utmb</td><td>Google Analytics</td><td>30 minutes</td><td>Identify session<br></td><td>Not exempt</td></tr><tr><td>__utmc</td><td>Google Analytics</td><td>When session is over</td><td>Configure for Urchin</td><td>Not exempt</td></tr><tr><td>__utmz</td><td>Google Analytics</td><td>6 months</td><td>Store origin or user<br>Trail to get web page</td><td>Not exempt</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Depending on the objective, cookies can be classified as follows:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Performance</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies remembers your preferences for the tools found in the services so you do not have to reconfigure the service each time you visit. To give&nbsp; two examples, this typology includes volumen settings for video or sound players&nbsp; as well as video transmission speeds that are compatible with your browser. Preformance cookies also store the “Shopping cart” objects in e-commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Geo-location</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These cookies are used to find out which country you are in when a service is requested. They are completely anonymous and their purpose is to help guide content to your location.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Registration cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once the user has registered or subsequently opened a session, registration cookies are generated and are used to identify the user in the services with the following objectives. <br><br>Firstly, registration cookies keep the users identified so that when a session or computer is closed, when the users re-enter, they continue to be identified.This function can be surpressed by pressing the close session thereby eliminating the cookie. <br><br>However, the next time the users enter the service, their identification will have to be reestablished. Secondly, these cookies check if the users are authorized to access certain services, for example, to enter a contest. Additionally, some services may use connectors with social networks such as Facebook or Twitter. <br><br>When the user registers in a&nbsp; social network service with credentials, the network is authorized to save a persistent cookie that remembers the user´s identity to guarantee access to its services until the date of expiry. Updating preferences on the user´s experience site deletes and revokes cookie access to the social network services.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Analytic cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Every time a user visits a service, a tool from an external provider generates an analytical cookie on the user´s computer.This type of cookie is only generated during the visit but will serve, in future visits to INGIVISION SLL services, to identify the visitor in an anonymous way. The principal objectives of these cookies are&nbsp; to allow the identification of the users who are browsing in an anonymous way via the cookie. In other words,&nbsp; the cookie identifies the browser and devices but not the identity of the user. The sole purpose of these cookies is to count the number of visitors to a site and the users´ preferences over a period of time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;The second objective allows for knowing if the user is new one. It is important to point out that unless the user decides to register for an INGIVISION SLL service, the analytic cookie will never be associated with any personal data that could identify the user. Analytic cookies are only for&nbsp; statistical purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Advertising cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies permits diffusion of the information given in the advertisement, which is shown to each anonymous user of the services of INGIVISION SLL. The duration or frequency of views, the interaction with them, the browsing patterns and/or user behavior are stored and later used to form a profile of advertising interest. In this way, advertising cookies allow advertising to fit the interests of the user.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to the advertising managed by&nbsp; the INGIVISION SLL websites, the company offers its advertisers the option of showing advertisements using third-parties, (“Ad-Servers”). These third parties are permitted to store cookies sent from INGIVISION SLL services from their users´ browsers. The third parties can also access this data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The companies that generate the above types of cookies have their own privacy policies. INGIVISION SLL currently uses the Google Doubleclick platform to manage these services. For more information go to <a href=\"https://google.es/policies/privacy/ads/#toc-doublelick\">https://google.es/policies/privacy/ads/#toc-doublelick</a> and <a href=\"http://www.google.es/policies/privacy/ads/\">www.google.es/policies/privacy/ads/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How can cookies be deleted from your browser?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Diffrent browsers can be programmed to notify the user that cookies have been received and prevent them from being installed. The user can also check the browser to see which cookies have been installed and their date of expiry in order to eliminate them.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more, consult the instructions and browser manuals as well as the administration of cookies found in Google Chrome, <a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a>. For managing cookies in Internet Explorer, go to&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:embed {\"url\":\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\"} -->\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttp://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\n</div></figure>\n<!-- /wp:embed -->\n\n<!-- wp:paragraph -->\n<p>More information about the administration of cookies can be found in: Mozilla Firefox <a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a>&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Safari: <a href=\"http://www.apple.com/es/privacy/use-of-cookies\">http://www.apple.com/es/privacy/use-of-cookies</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Opera: <a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To stop being followed by Google Analytics, go to <a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>More information about cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>More information about cookies and online advertising based on behavior and online privacy can be found at the following link: <a href=\"http://www.youronlinechoices.com/es\">http://www.youronlinechoices.com/es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Google Analytics data protection: <a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;How Google Analylitics uses cookies: <a href=\"https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs</a>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Updates and changes in the Cookie Privacy Policy.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For updates and changes in the Cookie Privacy Policy, INGIVISION SLL may modify this policy if there are any&nbsp; changes in the legislative and regulatory requirements or instructions issued by the Spanish Data Protection Agency. Users are advised to periodically check updates. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if there are any significant changes, registered users will be notified through the web or email.&nbsp;</p>\n<!-- /wp:paragraph -->','Cookies','','inherit','closed','closed','','102-revision-v1','','','2020-08-14 09:41:51','2020-08-14 09:41:51','',102,'https://ingivision.admirae.es/2020/08/14/102-revision-v1/',0,'revision','',0),(160,1,'2020-08-14 09:42:17','2020-08-14 09:42:17','<!-- wp:heading -->\n<h2>Cookies policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On this website, third-party and own cookies are used to ensure that you have a better browsing experience, you can share content on social networks and so that we can obtain user statistics.<br><br> You can prevent the download of cookies through your browser settings, preventing cookies from being stored on your device. As the owner of this website, I inform you that we do not use any personal information from cookies, we only carry out general statistics of visits that do not involve any personal information. <br><br>It is very important that you read this cookie policy and understand that, if you continue browsing, we will consider that you accept its use. <br><br>According to the terms included in article 22.2 of Law 34/2002 on Services of the Information Society and Electronic Commerce, if you continue browsing, you will be giving your consent for the use of the aforementioned mechanisms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible Entity</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The entity responsible for the collection, processing and use of your personal data, in the sense established by the Personal Data Protection Law is the page www.ingivision.com, owned by Ingivision SLL - Av. De la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>What are cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> Cookies are a set of data that a server deposits in the user\'s browser to collect standard Internet registration information and information on the behavior of visitors to a website. <br>In other words, these are small text files that are stored on the computer\'s hard drive and that serve to identify the user when they connect to the website again. Its purpose is to record the user\'s visit and save certain information. Its use is common and frequent on the web since it allows the pages to function more efficiently and achieve greater personalization and analysis of user behavior</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What types of cookies are there?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The cookies used on our website are session and third-party cookies which enable us to store, access information regarding&nbsp; the language, the type of browser used, and other general characteristics predefined by the user. We&nbsp; are also able to follow and analyze the activity carried out in order to introduce improvements and provide our services in a more efficent and personalized way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on their permanence, cookies can be divided into session or permanent cookies, those that expire when the user closes the browser, and those that expire when their purpose is fulfilled (for example, the user remains identified in the services of INGIVSION SLL) and lastly when the cookies are deleted manually.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Name</td><td>Type</td><td>Date of Expiry</td><td>Purpose</td><td>Class</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 years</td><td>Identify user and session.</td><td>Not exempt</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutes</td><td>Identify session<br></td><td>Not exempt</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>When session is over</td><td>Configure for Urchin</td><td>Not exempt</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 months</td><td>Store origin or user<br>Trail to get web page</td><td>Not exempt</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Depending on the objective, cookies can be classified as follows:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Performance</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies remembers your preferences for the tools found in the services so you do not have to reconfigure the service each time you visit. To give  two examples, this typology includes volumen settings for video or sound players  as well as video transmission speeds that are compatible with your browser. Preformance cookies also store the “Shopping cart” objects in e-commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Geo-location</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These cookies are used to find out which country you are in when a service is requested. They are completely anonymous and their purpose is to help guide content to your location.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Registration cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once the user has registered or subsequently opened a session, registration cookies are generated and are used to identify the user in the services with the following objectives. <br><br>Firstly, registration cookies keep the users identified so that when a session or computer is closed, when the users re-enter, they continue to be identified.This function can be surpressed by pressing the close session thereby eliminating the cookie. <br><br>However, the next time the users enter the service, their identification will have to be reestablished. Secondly, these cookies check if the users are authorized to access certain services, for example, to enter a contest. Additionally, some services may use connectors with social networks such as Facebook or Twitter. <br><br>When the user registers in a  social network service with credentials, the network is authorized to save a persistent cookie that remembers the user´s identity to guarantee access to its services until the date of expiry. Updating preferences on the user´s experience site deletes and revokes cookie access to the social network services. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Analytic cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Every time a user visits a service, a tool from an external provider generates an analytical cookie on the user´s computer.This type of cookie is only generated during the visit but will serve, in future visits to INGIVISION SLL services, to identify the visitor in an anonymous way. The principal objectives of these cookies are&nbsp; to allow the identification of the users who are browsing in an anonymous way via the cookie. In other words,&nbsp; the cookie identifies the browser and devices but not the identity of the user. The sole purpose of these cookies is to count the number of visitors to a site and the users´ preferences over a period of time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;The second objective allows for knowing if the user is new one. It is important to point out that unless the user decides to register for an INGIVISION SLL service, the analytic cookie will never be associated with any personal data that could identify the user. Analytic cookies are only for&nbsp; statistical purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Advertising cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies permits diffusion of the information given in the advertisement, which is shown to each anonymous user of the services of INGIVISION SLL. The duration or frequency of views, the interaction with them, the browsing patterns and/or user behavior are stored and later used to form a profile of advertising interest. In this way, advertising cookies allow advertising to fit the interests of the user.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to the advertising managed by&nbsp; the INGIVISION SLL websites, the company offers its advertisers the option of showing advertisements using third-parties, (“Ad-Servers”). These third parties are permitted to store cookies sent from INGIVISION SLL services from their users´ browsers. The third parties can also access this data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The companies that generate the above types of cookies have their own privacy policies. INGIVISION SLL currently uses the Google Doubleclick platform to manage these services. For more information go to <a href=\"https://google.es/policies/privacy/ads/#toc-doublelick\">https://google.es/policies/privacy/ads/#toc-doublelick</a> and <a href=\"http://www.google.es/policies/privacy/ads/\">www.google.es/policies/privacy/ads/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How can cookies be deleted from your browser?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Diffrent browsers can be programmed to notify the user that cookies have been received and prevent them from being installed. The user can also check the browser to see which cookies have been installed and their date of expiry in order to eliminate them.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more, consult the instructions and browser manuals as well as the administration of cookies found in Google Chrome, <a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a>. For managing cookies in Internet Explorer, go to&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:embed {\"url\":\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\"} -->\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttp://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\n</div></figure>\n<!-- /wp:embed -->\n\n<!-- wp:paragraph -->\n<p>More information about the administration of cookies can be found in: Mozilla Firefox <a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a>&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Safari: <a href=\"http://www.apple.com/es/privacy/use-of-cookies\">http://www.apple.com/es/privacy/use-of-cookies</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Opera: <a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To stop being followed by Google Analytics, go to <a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More information about cookies and online advertising based on behavior and online privacy can be found at the following link: <a href=\"http://www.youronlinechoices.com/es\">http://www.youronlinechoices.com/es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Google Analytics data protection: <a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;How Google Analylitics uses cookies: <a href=\"https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs</a>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Updates and changes in the Cookie Privacy Policy.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For updates and changes in the Cookie Privacy Policy, INGIVISION SLL may modify this policy if there are any  changes in the legislative and regulatory requirements or instructions issued by the Spanish Data Protection Agency. Users are advised to periodically check updates. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if there are any significant changes, registered users will be notified through the web or email. </p>\n<!-- /wp:paragraph -->','Cookies','','inherit','closed','closed','','102-revision-v1','','','2020-08-14 09:42:17','2020-08-14 09:42:17','',102,'https://ingivision.admirae.es/2020/08/14/102-revision-v1/',0,'revision','',0),(162,1,'2020-08-14 09:43:42','2020-08-14 09:43:42','<!-- wp:heading -->\n<h2>Legal notice and terms of use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In this space, the USER will be able to find all the information related to the legal terms and conditions that define the relationships between users and us as responsible for this website. As a user, it is important that you know these terms before continuing your navigation. Ingivision SLL. As responsible for this website, it assumes the commitment to process the information of our users and clients with full guarantees and to comply with the national and European requirements that regulate the collection and use of the personal data of our users. This website, therefore, strictly complies with the RGPD (REGULATION (EU) 2016/679 on data protection) and the LSSI-CE Law 34/2002, of July 11, on services of the information society and electronic commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>GENERAL CONDITIONS OF USE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These General Conditions regulate the use (including mere access) of the web pages, members of the www.ingivision.com website, including the contents and services made available in them. Any person who accesses the web, www.ingivision.com (\"User\") agrees to be bound by the General Conditions in force at all times of the www.ingivision.com portal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PERSONAL DATA WE COLLECT AND HOW WE DO IT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Read Privacy Policy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMITMENTS AND OBLIGATIONS OF THE USERS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The User is informed, and accepts, that access to this website does not imply, in any way, the beginning of a commercial relationship with www.ingivision.com. In this way, the user agrees to use the website, its services and content without violating current legislation, good faith and public order.<br>The use of the website is prohibited, for illegal or harmful purposes, or that, in any way, may cause damage or prevent the normal functioning of the website. Regarding the contents of this website, its reproduction, distribution or modification, in whole or in part, unless it has the authorization of its legitimate owners is prohibited.&nbsp; Any violation of the rights of the provider or of the legitimate owners and&nbsp; its use for commercial or advertising purposes is also prohibited.<br><br>When using the website, www.ingivision.com, the User agrees not to carry out any conduct that could damage the image, interests and rights of www.ingivision.com or third parties or that could damage, disable or overload the portal (indicate domain) or prevent in any way the normal use of the web. However, the User must be aware that the security measures of computer systems on the Internet are not entirely reliable and therefore www.ingivision.com cannot guarantee the absence of viruses or other elements that may cause alterations in the computer systems (software and hardware) of the User or in their electronic documents and files contained therein.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>SECURITY MEASURES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The personal data communicated by the user to www.ingivision.com can be stored or not in automated databases&nbsp; whose ownership corresponds exclusively to www.ingivision.com. INGIVISION SLL takes responsibility for&nbsp; all the technical, organizational and security measures that guarantee the confidentiality, integrity and quality of the information contained therein in accordance with the provisions of current regulations on data protection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL (www.ingivision.com) uses a secure channel to communicate with its users. The transmitted data is encrypted thanks to https protocols, therefore, INGIVISION SLL guarantees the best security conditions so that confidentiality of the users is guaranteed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CLAIMS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Claim sheets are available to users and customers.&nbsp; Users may make claims by requesting the claim form or by sending an email to&nbsp; <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a> indicating&nbsp; name and surname, the service and / or product purchased and stating the reasons for their claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user/buyer may notify us of the claim either by e-mail to ingivision invigision.com****attaching the following claim form: The service/product, date of purchase, user´s name and address, signature (only if presented on paper) date of claim, and reason for claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONFLICT RESOLUTION PLATFORM</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In submitting a claim, the dispute resolution platform provided by the European Commission can also be used. It is available at the following link: <a href=\"http://ee.europa.eu/consumers/ord\">http://ee.europa.eu/consumers/ord</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>NTELLECTUAL AND INDUSTRIAL PROPERTY RIGHTS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Personal data of the interested party who owns the rights allegedly infringed, or indicate the representation with which he acts in the event that the claim is presented by a third party other than the interested party.</li><li>Point out the contents protected by intellectual property rights and their location on the web, the accreditation of the intellectual property rights indicated and an express declaration in which the interested party is responsible for the veracity of the information provided in the notification.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXTERNAL LINKS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>for the veracity of the information provided in the notification EXTERNAL LINKS The pages of the web www.ingivision.com, could provide links to other own websites and content that are owned by third parties. The sole purpose of the links is to provide the User with the possibility of accessing said links. www.ingivision.com is not responsible in any case for the results that may be derived to the User by accessing said links.<br><br>Likewise, the user will find within this site, pages, promotions, affiliate programs that access the browsing habits of users to establish profiles. This information is always anonymous and the user is not identified.<br><br>Information provided on these sponsored Sites or affiliate links is subject to the privacy policies used on those Sites and will not be subject to this privacy policy. Therefore, we highly recommend Users to carefully review the privacy policies of affiliate links.<br><br>The User who intends to establish any technical link device from his website to the www.ingivision.com portal must obtain the prior written authorization of www.ingivision.com The establishment of the link does not imply in any case the existence of relations between www .ingivision.com and the owner of the site where the link is established, nor the acceptance or approval by www.ingivision.com of its contents or services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMENTS POLICY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On our website and comments are allowed to enrich the content and make inquiries. Comments that are not related to the theme of this website, which include defamations, grievances, insults, personal attacks or general disrespect towards the author or other members will not be accepted. Comments that contain information that is obviously misleading or false, as well as comments that contain personal information, such as, for example, private addresses or telephones and that violate our data protection policy, will also be deleted. <br><br>Likewise, those comments created only for promotional purposes of a website, person or group and everything that may be considered spam in general will be rejected. Anonymous comments are not allowed, as well as those made by the same person with different nicknames. Comments that try to force a debate or take a position by another user will not be considered either.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSION OF GUARANTEES AND RESPONSIBILITY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Provider does not grant any guarantee nor is it responsible, in any case, for damages of any nature that could be caused by:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>The lack of availability, maintenance and effective operation of the web, or of its services and contents.</li><li>The existence of viruses, malicious or harmful programs in the contents.</li><li>The illicit, negligent, fraudulent use or contrary to this Legal Notice.</li><li>The lack of legality, quality, reliability, usefulness and availability of the services provided by third parties and made available to users on the website.</li><li>&nbsp;The provider is not responsible under any circumstances for damages that may arise from the illegal or improper use of this website.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>APPLICABLE LAW AND JURISDICTION</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the relations between www.ingivision.com with the Users of its telematic services, present on this website, are subject to Spanish legislation and jurisdiction and to the courts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In case any User has any questions about these Legal Conditions or any comment on the www.ingivision.com portal, please contact<br> ingivision@ingivision.com On behalf of the team that make up Ingivision SLL, we thank you for the time dedicated to reading this Legal Notice</p>\n<!-- /wp:paragraph -->','Legal notice','','inherit','closed','closed','','101-revision-v1','','','2020-08-14 09:43:42','2020-08-14 09:43:42','',101,'https://ingivision.admirae.es/2020/08/14/101-revision-v1/',0,'revision','',0),(164,1,'2020-08-14 09:44:18','2020-08-14 09:44:18','<!-- wp:heading -->\n<h2>Legal notice and terms of use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In this space, the USER will be able to find all the information related to the legal terms and conditions that define the relationships between users and us as responsible for this website. As a user, it is important that you know these terms before continuing your navigation. Ingivision SLL. As responsible for this website, it assumes the commitment to process the information of our users and clients with full guarantees and to comply with the national and European requirements that regulate the collection and use of the personal data of our users. This website, therefore, strictly complies with the RGPD (REGULATION (EU) 2016/679 on data protection) and the LSSI-CE Law 34/2002, of July 11, on services of the information society and electronic commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>GENERAL CONDITIONS OF USE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These General Conditions regulate the use (including mere access) of the web pages, members of the www.ingivision.com website, including the contents and services made available in them. Any person who accesses the web, www.ingivision.com (\"User\") agrees to be bound by the General Conditions in force at all times of the www.ingivision.com portal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PERSONAL DATA WE COLLECT AND HOW WE DO IT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Read Privacy Policy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMITMENTS AND OBLIGATIONS OF THE USERS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The User is informed, and accepts, that access to this website does not imply, in any way, the beginning of a commercial relationship with www.ingivision.com. In this way, the user agrees to use the website, its services and content without violating current legislation, good faith and public order.<br>The use of the website is prohibited, for illegal or harmful purposes, or that, in any way, may cause damage or prevent the normal functioning of the website. Regarding the contents of this website, its reproduction, distribution or modification, in whole or in part, unless it has the authorization of its legitimate owners is prohibited.  Any violation of the rights of the provider or of the legitimate owners and  its use for commercial or advertising purposes is also prohibited.<br><br>When using the website, www.ingivision.com, the User agrees not to carry out any conduct that could damage the image, interests and rights of www.ingivision.com or third parties or that could damage, disable or overload the portal (indicate domain) or prevent in any way the normal use of the web. However, the User must be aware that the security measures of computer systems on the Internet are not entirely reliable and therefore www.ingivision.com cannot guarantee the absence of viruses or other elements that may cause alterations in the computer systems (software and hardware) of the User or in their electronic documents and files contained therein. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>SECURITY MEASURES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>L</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The personal data communicated by the user to www.ingivision.com can be stored or not in automated databases  whose ownership corresponds exclusively to www.ingivision.com. INGIVISION SLL takes responsibility for  all the technical, organizational and security measures that guarantee the confidentiality, integrity and quality of the information contained therein in accordance with the provisions of current regulations on data protection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL (www.ingivision.com) uses a secure channel to communicate with its users. The transmitted data is encrypted thanks to https protocols, therefore, INGIVISION SLL guarantees the best security conditions so that confidentiality of the users is guaranteed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CLAIMS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Claim sheets are available to users and customers.  Users may make claims by requesting the claim form or by sending an email to  <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a> indicating  name and surname, the service and / or product purchased and stating the reasons for their claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user/buyer may notify us of the claim either by e-mail to ingivision invigision.com****attaching the following claim form: The service/product, date of purchase, user´s name and address, signature (only if presented on paper) date of claim, and reason for claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONFLICT RESOLUTION PLATFORM</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In submitting a claim, the dispute resolution platform provided by the European Commission can also be used. It is available at the following link: <a href=\"http://ee.europa.eu/consumers/ord\">http://ee.europa.eu/consumers/ord</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>NTELLECTUAL AND INDUSTRIAL PROPERTY RIGHTS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Personal data of the interested party who owns the rights allegedly infringed, or indicate the representation with which he acts in the event that the claim is presented by a third party other than the interested party.</li><li>Point out the contents protected by intellectual property rights and their location on the web, the accreditation of the intellectual property rights indicated and an express declaration in which the interested party is responsible for the veracity of the information provided in the notification.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXTERNAL LINKS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>for the veracity of the information provided in the notification EXTERNAL LINKS The pages of the web www.ingivision.com, could provide links to other own websites and content that are owned by third parties. The sole purpose of the links is to provide the User with the possibility of accessing said links. www.ingivision.com is not responsible in any case for the results that may be derived to the User by accessing said links.<br><br>Likewise, the user will find within this site, pages, promotions, affiliate programs that access the browsing habits of users to establish profiles. This information is always anonymous and the user is not identified.<br><br>Information provided on these sponsored Sites or affiliate links is subject to the privacy policies used on those Sites and will not be subject to this privacy policy. Therefore, we highly recommend Users to carefully review the privacy policies of affiliate links.<br><br>The User who intends to establish any technical link device from his website to the www.ingivision.com portal must obtain the prior written authorization of www.ingivision.com The establishment of the link does not imply in any case the existence of relations between www .ingivision.com and the owner of the site where the link is established, nor the acceptance or approval by www.ingivision.com of its contents or services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMENTS POLICY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On our website and comments are allowed to enrich the content and make inquiries. Comments that are not related to the theme of this website, which include defamations, grievances, insults, personal attacks or general disrespect towards the author or other members will not be accepted. Comments that contain information that is obviously misleading or false, as well as comments that contain personal information, such as, for example, private addresses or telephones and that violate our data protection policy, will also be deleted. <br><br>Likewise, those comments created only for promotional purposes of a website, person or group and everything that may be considered spam in general will be rejected. Anonymous comments are not allowed, as well as those made by the same person with different nicknames. Comments that try to force a debate or take a position by another user will not be considered either.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSION OF GUARANTEES AND RESPONSIBILITY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Provider does not grant any guarantee nor is it responsible, in any case, for damages of any nature that could be caused by:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>The lack of availability, maintenance and effective operation of the web, or of its services and contents.</li><li>The existence of viruses, malicious or harmful programs in the contents.</li><li>The illicit, negligent, fraudulent use or contrary to this Legal Notice.</li><li>The lack of legality, quality, reliability, usefulness and availability of the services provided by third parties and made available to users on the website.</li><li> The provider is not responsible under any circumstances for damages that may arise from the illegal or improper use of this website.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>APPLICABLE LAW AND JURISDICTION</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the relations between www.ingivision.com with the Users of its telematic services, present on this website, are subject to Spanish legislation and jurisdiction and to the courts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In case any User has any questions about these Legal Conditions or any comment on the www.ingivision.com portal, please contact<br> ingivision@ingivision.com On behalf of the team that make up Ingivision SLL, we thank you for the time dedicated to reading this Legal Notice</p>\n<!-- /wp:paragraph -->','Legal notice','','inherit','closed','closed','','101-revision-v1','','','2020-08-14 09:44:18','2020-08-14 09:44:18','',101,'https://ingivision.admirae.es/2020/08/14/101-revision-v1/',0,'revision','',0),(166,1,'2020-08-14 09:44:56','2020-08-14 09:44:56','<!-- wp:heading -->\n<h2>Legal notice and terms of use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In this space, the USER will be able to find all the information related to the legal terms and conditions that define the relationships between users and us as responsible for this website. As a user, it is important that you know these terms before continuing your navigation. Ingivision SLL. As responsible for this website, it assumes the commitment to process the information of our users and clients with full guarantees and to comply with the national and European requirements that regulate the collection and use of the personal data of our users. This website, therefore, strictly complies with the RGPD (REGULATION (EU) 2016/679 on data protection) and the LSSI-CE Law 34/2002, of July 11, on services of the information society and electronic commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>GENERAL CONDITIONS OF USE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These General Conditions regulate the use (including mere access) of the web pages, members of the www.ingivision.com website, including the contents and services made available in them. Any person who accesses the web, www.ingivision.com (\"User\") agrees to be bound by the General Conditions in force at all times of the www.ingivision.com portal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PERSONAL DATA WE COLLECT AND HOW WE DO IT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Read Privacy Policy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMITMENTS AND OBLIGATIONS OF THE USERS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The User is informed, and accepts, that access to this website does not imply, in any way, the beginning of a commercial relationship with www.ingivision.com. In this way, the user agrees to use the website, its services and content without violating current legislation, good faith and public order.<br>The use of the website is prohibited, for illegal or harmful purposes, or that, in any way, may cause damage or prevent the normal functioning of the website. Regarding the contents of this website, its reproduction, distribution or modification, in whole or in part, unless it has the authorization of its legitimate owners is prohibited.  Any violation of the rights of the provider or of the legitimate owners and  its use for commercial or advertising purposes is also prohibited.<br><br>When using the website, www.ingivision.com, the User agrees not to carry out any conduct that could damage the image, interests and rights of www.ingivision.com or third parties or that could damage, disable or overload the portal (indicate domain) or prevent in any way the normal use of the web. However, the User must be aware that the security measures of computer systems on the Internet are not entirely reliable and therefore www.ingivision.com cannot guarantee the absence of viruses or other elements that may cause alterations in the computer systems (software and hardware) of the User or in their electronic documents and files contained therein. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>SECURITY MEASURES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>L</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The personal data communicated by the user to www.ingivision.com can be stored or not in automated databases  whose ownership corresponds exclusively to www.ingivision.com. INGIVISION SLL takes responsibility for  all the technical, organizational and security measures that guarantee the confidentiality, integrity and quality of the information contained therein in accordance with the provisions of current regulations on data protection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL (www.ingivision.com) uses a secure channel to communicate with its users. The transmitted data is encrypted thanks to https protocols, therefore, INGIVISION SLL guarantees the best security conditions so that confidentiality of the users is guaranteed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CLAIMS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Claim sheets are available to users and customers.  Users may make claims by requesting the claim form or by sending an email to  <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a> indicating  name and surname, the service and / or product purchased and stating the reasons for their claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user/buyer may notify us of the claim either by e-mail to ingivision invigision.com****attaching the following claim form: The service/product, date of purchase, user´s name and address, signature (only if presented on paper) date of claim, and reason for claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONFLICT RESOLUTION PLATFORM</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In submitting a claim, the dispute resolution platform provided by the European Commission can also be used. It is available at the following link: <a href=\"http://ee.europa.eu/consumers/ord\">http://ee.europa.eu/consumers/ord</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>NTELLECTUAL AND INDUSTRIAL PROPERTY RIGHTS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Personal data of the interested party who owns the rights allegedly infringed, or indicate the representation with which he acts in the event that the claim is presented by a third party other than the interested party.</li><li>Point out the contents protected by intellectual property rights and their location on the web, the accreditation of the intellectual property rights indicated and an express declaration in which the interested party is responsible for the veracity of the information provided in the notification.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXTERNAL LINKS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>for the veracity of the information provided in the notification EXTERNAL LINKS The pages of the web www.ingivision.com, could provide links to other own websites and content that are owned by third parties. The sole purpose of the links is to provide the User with the possibility of accessing said links. www.ingivision.com is not responsible in any case for the results that may be derived to the User by accessing said links.<br><br>Likewise, the user will find within this site, pages, promotions, affiliate programs that access the browsing habits of users to establish profiles. This information is always anonymous and the user is not identified.<br><br>Information provided on these sponsored Sites or affiliate links is subject to the privacy policies used on those Sites and will not be subject to this privacy policy. Therefore, we highly recommend Users to carefully review the privacy policies of affiliate links.<br><br>The User who intends to establish any technical link device from his website to the www.ingivision.com portal must obtain the prior written authorization of www.ingivision.com The establishment of the link does not imply in any case the existence of relations between www .ingivision.com and the owner of the site where the link is established, nor the acceptance or approval by www.ingivision.com of its contents or services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMENTS POLICY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On our website and comments are allowed to enrich the content and make inquiries. Comments that are not related to the theme of this website, which include defamations, grievances, insults, personal attacks or general disrespect towards the author or other members will not be accepted. Comments that contain information that is obviously misleading or false, as well as comments that contain personal information, such as, for example, private addresses or telephones and that violate our data protection policy, will also be deleted. <br><br>Likewise, those comments created only for promotional purposes of a website, person or group and everything that may be considered spam in general will be rejected. Anonymous comments are not allowed, as well as those made by the same person with different nicknames. Comments that try to force a debate or take a position by another user will not be considered either.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSION OF GUARANTEES AND RESPONSIBILITY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Provider does not grant any guarantee nor is it responsible, in any case, for damages of any nature that could be caused by:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>The lack of availability, maintenance and effective operation of the web, or of its services and contents.</li><li>The existence of viruses, malicious or harmful programs in the contents.</li><li>The illicit, negligent, fraudulent use or contrary to this Legal Notice.</li><li>The lack of legality, quality, reliability, usefulness and availability of the services provided by third parties and made available to users on the website.</li><li> The provider is not responsible under any circumstances for damages that may arise from the illegal or improper use of this website.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>APPLICABLE LAW AND JURISDICTION</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the relations between www.ingivision.com with the Users of its telematic services, present on this website, are subject to Spanish legislation and jurisdiction and to the courts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In case any User has any questions about these Legal Conditions or any comment on the www.ingivision.com portal, please contact<br> ingivision@ingivision.com On behalf of the team that make up Ingivision SLL, we thank you for the time dedicated to reading this Legal Notice</p>\n<!-- /wp:paragraph -->','Legal notice','','inherit','closed','closed','','101-revision-v1','','','2020-08-14 09:44:56','2020-08-14 09:44:56','',101,'https://ingivision.admirae.es/2020/08/14/101-revision-v1/',0,'revision','',0),(171,1,'2020-08-16 17:51:12','2020-08-16 17:51:12','','Products','','inherit','closed','closed','','108-revision-v1','','','2020-08-16 17:51:12','2020-08-16 17:51:12','',108,'https://ingivision.admirae.es/2020/08/16/108-revision-v1/',0,'revision','',0),(176,1,'2020-08-16 17:53:03','2020-08-16 17:53:03','<!-- wp:heading -->\n<h2>\"Fruit sorter retrofit\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque. &nbsp;Esta actualización en máquinas que no son nueva&nbsp; es lo que llamamos retrofit.<br>Nuestros 3 productos, ingiSorter, ingiSorter+ e ingiGrader funcionan en cualquier tipo de máquina. Un retrofit te va a permitir recibir los beneficios de nuestro software de calibración (peso, color, y …) sin el desembolso de capital que implica reemplazar tu calibrador actual&nbsp; por otro nuevo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicio de instalación.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Sin preocupaciones.<br>Así es nuestro servicio de instalación para ti. Te aseguramos la perfecta instalación de ingisorter en tus máquinas,&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Servicio de mantenimiento<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soporte</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque nuestro sistema es un sistema de fácil manejo, te damos soporte y formación tanto a tu equipo como a tu cliente final.<br>Tranquilo, unas pocas horas son suficientes para dominar nuestro software.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Actualizaciones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Dentro de nuestra filosofía de mejora continua, incluimos la posibilidad de obtener actualizaciones periódicas de Ingisorter, Ingisorter+ e Ingigrader con las mejoras que vamos implementando para que siempre tengas la última tecnología en tus máquinas si así lo quieres.</p>\n<!-- /wp:paragraph -->','Services','','inherit','closed','closed','','103-revision-v1','','','2020-08-16 17:53:03','2020-08-16 17:53:03','',103,'https://ingivision.admirae.es/2020/08/16/103-revision-v1/',0,'revision','',0),(178,1,'2020-08-16 17:55:25','2020-08-16 17:55:25',' ','','','publish','closed','closed','','178','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',99,'https://ingivision.admirae.es/?p=178',6,'nav_menu_item','',0),(179,1,'2020-08-16 17:55:25','2020-08-16 17:55:25',' ','','','publish','closed','closed','','179','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',99,'https://ingivision.admirae.es/?p=179',2,'nav_menu_item','',0),(180,1,'2020-08-16 17:55:25','2020-08-16 17:55:25',' ','','','publish','closed','closed','','180','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',108,'https://ingivision.admirae.es/?p=180',4,'nav_menu_item','',0),(181,1,'2020-08-16 17:55:25','2020-08-16 17:55:25',' ','','','publish','closed','closed','','181','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',108,'https://ingivision.admirae.es/?p=181',3,'nav_menu_item','',0),(182,1,'2020-08-16 17:55:25','2020-08-16 17:55:25',' ','','','publish','closed','closed','','182','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',108,'https://ingivision.admirae.es/?p=182',5,'nav_menu_item','',0),(183,1,'2020-08-16 17:56:29','2020-08-16 17:56:29','','Why Ingivision','','inherit','closed','closed','','104-revision-v1','','','2020-08-16 17:56:29','2020-08-16 17:56:29','',104,'https://ingivision.admirae.es/2020/08/16/104-revision-v1/',0,'revision','',0),(184,1,'2020-08-16 17:57:40','2020-08-16 17:57:40',' ','','','publish','closed','closed','','184','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',99,'https://ingivision.admirae.es/?p=184',7,'nav_menu_item','',0),(185,1,'2020-08-16 17:57:40','2020-08-16 17:57:40',' ','','','publish','closed','closed','','185','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',99,'https://ingivision.admirae.es/?p=185',8,'nav_menu_item','',0),(186,1,'2020-08-16 17:57:23','2020-08-16 17:57:23','','Contact','','inherit','closed','closed','','106-revision-v1','','','2020-08-16 17:57:23','2020-08-16 17:57:23','',106,'https://ingivision.admirae.es/2020/08/16/106-revision-v1/',0,'revision','',0),(187,1,'2020-08-16 17:57:49','2020-08-16 17:57:49',' ','','','publish','closed','closed','','187','','','2020-08-16 17:57:49','2020-08-16 17:57:49','',99,'https://ingivision.admirae.es/?p=187',9,'nav_menu_item','',0),(188,1,'2020-08-18 15:09:42','2020-08-18 15:09:42','<!-- wp:paragraph -->\n<p>Are you one of those who look at the physique or do you fall in love with the interior? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You may have a clear answer if we are talking about people. But what happens when we talk about fruit or vegetables? Do you think the same way? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>69% of consumers prioritize quality as the reason that most influences their purchase decision, compared to 24% who buy fruit and vegetables motivated by the appearance or presentation of the product. <em>(Source: YouGov for Alimarket Great Consumption)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;If you work in the fruit and vegetable sector, do not miss this post in which I analyze all the important points related to quality control in fruits and vegetables. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But what do we understand by quality in fruits and vegetables? At this point it is necessary to start with the definition of quality, don\'t you think?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definition of quality</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The word \"quality\" comes from the Latin qualitas, which means quality or attribute of an object. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, today a fairly accepted meaning would be \"degree of excellence or superiority\"<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We say that a product is of higher quality when it surpasses another product in one or more attributes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quality is, therefore, a concept that has a clear subjective component. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each consumer applies his own personal filter to determine the quality of the same food.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, the concept of quality has been&nbsp; changing over time. For example, what was once&nbsp; considered a quality tomato, today might not be. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let us briefly see what&nbsp; the current concept is.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Evolution of quality in fruits and vegetables</strong>.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;Today the total consumption of fruit and vegetables has increased compared to previous decades due to&nbsp; different causes such as: concern about a healthier diet, lack of time to cook, increase in popularity&nbsp; of veganism and other diets based on the consumption of vegetables in Western societies, etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the other hand, and as we have seen, there is a growing demand for <strong>top quality fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Years ago, growers, merchants and consumers decided upon their own quality standards without a unifying criteria.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, nowadays and taking into account that the price of fruit is determined by its quality level, standards need to be established.<br><br>The higher the quality of the fruit, the higher the price and profit. Hence the interest of producers and merchants to search for excellence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What the consumer values ​​is the appearance, taste and nutrients that fresh and seasonal fruits provide. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For their part, producers are continuously innovating with varieties of fruit and vegetables and which aspects, such as ripeness, taste and freshness are prioritized.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, and how could it be otherwise, there is legislation that regulates the entire issue of quality within a territory, both at national, European and international level with numerous regulatory bodies. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of this standardization is to establish a common point in international trade and to provide a criterion that allows determining the minimum quality to be met.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>What parameters define the quality of fruits and vegetables and what parameters influence the quality of the fruits?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To set the standards of quality, the ripeness of the fruit is the most important factor. Exterior aspects and some technical factors must be considered as well.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The main components of the quality of fresh fruits and vegetables are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>The typical aspects of each variety of fruit</strong></li><li><strong><strong>The absence of defects&nbsp;</strong></strong><br>It is important to point out that defects do not affect the edibleness of a fruit. <br><br>However, fruit with physical or morphological defects is rejected by the majority of consumers. These defects can occur during growth due to various causes such as climate, irrigation, fertilization, etc.<br></li><li><strong><strong>Adequate development and ripeness</strong><br></strong>Consumers likes fresh and edible fruit. <br><br>Freshness is undrestood to be the shortest possible time elapsing between the time of harvest and the time of purchase.<br><br>Ripeness is the exact time for harvesting when the fruit is firm, colorful, and flavourful. <br>After all, who does not like to eat a good sweet orange with its characteristic aroma or a crunchy apple? <br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Size<br></strong>Considering the size or caliber of the fruit, three different qualities are established: <strong>extra fruit, first quality fruit, second class fruit</strong>.<br></li><li><strong>Homogeneity<br></strong>Homogeneity is sought both in the caliber of the fruits and in the color they present and level of ripeness of each batch.<strong><br></strong></li><li><strong>Packaging / presentation<br></strong>Worrying physical defects can occur during the packaging process. Mishandling of the fruit can cause bruises in the fruit. <br><br>Sprouting and rootings in bulbs and roots are two other problems that can occur in inadequate packaging.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>How is the fruit evaluated in a quality control?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are three types of evaluation.<br><br>The first is sensory evaluation.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Sensory evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In sensory evaluation, in which five aspects are considered. They are color, size and weight, texture, taste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color is to be uniform in appearance, homogeneous and shiny&nbsp;</li><li>Size and weight are to be similar among the fruits.</li><li>Texture means the fruit is firm and ripe.</li><li>Taste is the smell and flavor of the fruit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Technical evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ph, humidity, and firmness are the three components also valued in analyzing fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Microbiological and chemical tests</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Microbiological and chemical tests are carried out to discover the presence of any microorganisims in the fruit.&nbsp; </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of these tests is to determine what chemicals the plant has been treated with during the growth and ripening process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Fruit and vegetable quality control and its phases</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the time of harvest, if the collection is done by hand, a first “filtering” of the fruit is carried out by discarding the pieces of fruit that do not meet the standards mentioned previously.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once the fruit has been transferred to the sorting place, four steps take place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Positioning<br></strong>This involves placing the frui ton the production lines for calibration and classification.<br></li><li><strong>Classification and identification<br></strong>The pieces of fruit are classified and separated by category according to the size, weight, and size of diameter. <br><br>Any small stones and pieces of dirt are removed at this stage.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defects<br></strong>Defects are detected to eliminate the fruits that cannot be taken to the sales shelf.<br></li><li><strong>Final check and packaging<br></strong>In this phase, the fruit is protected so that it can withstand transport. It will be boxed and put on pallets.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>How to carry out the quality process in fruits in an automated way</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The horticultural industrial sector is focused on finding solutions that will improve each of the above mentioned phases of quality control.&nbsp; <br><br>In the market, there are many machines and robotic elements that optimize these different stages. These are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Faster calibrators.<br></li><li>Specialized software in the dectection of parameters such as color, size, weight.<br></li><li>Applied artificial intelligence systems capable of detecting exterior and interior defects in the fruit.<br></li><li>Versitile and compact palletizers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The&nbsp; above examples show the advances in this field and how rapidly they are changing the industry, which is now&nbsp; termed&nbsp; Industry 4.0.&nbsp; Industry 4.0 is simply a new way of organizing production based on new technologies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The fruit and vegetable sector has opted to mechanize all the processes that take place in the warehouse to the upmost. By doing so, the interconnected warehouses allows data to flow in real time so quick and accurate decisions can be made.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><strong>What does Invigision propose for you?</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We have developed a low cost electronic calibration system suitable for any new or old calibrator.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The software is capable of detecting weight, siz, color, density, shape, and exterior fruit defects among other variable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Other important characteristics of our system are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Component reduction.<br></li><li>A single program adapts to any type of calibration for almost every kind of fruit such as cherries, citrus fruits, tomatoes, avocados, mangoes, melons, watermelons, and even some types of pumpkins.<br></li><li>Excellent value for money.<br></li><li>High performance in weight, size, color, shape, and defects evaluations.&nbsp; Up to 30 units of fruit/second.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>If you are looking to save time and increase the effectiveness and efficiency of&nbsp; your product lines, take a look at our full sizing software programs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Sources: Ministry of Industry, Commerce and Tourism, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','What is quality control in fruits?','','inherit','closed','closed','','148-revision-v1','','','2020-08-18 15:09:42','2020-08-18 15:09:42','',148,'https://ingivision.admirae.es/2020/08/18/148-revision-v1/',0,'revision','',0),(189,1,'2020-08-18 15:12:32','2020-08-18 15:12:32','<!-- wp:paragraph -->\n<p>Are you one of those who look at the physique or do you fall in love with the interior? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>You may have a clear answer if we are talking about people. But what happens when we talk about fruit or vegetables? Do you think the same way? </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>69% of consumers prioritize quality as the reason that most influences their purchase decision, compared to 24% who buy fruit and vegetables motivated by the appearance or presentation of the product. <em>(Source: YouGov for Alimarket Great Consumption)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;If you work in the fruit and vegetable sector, do not miss this post in which I analyze all the important points related to quality control in fruits and vegetables. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>But what do we understand by quality in fruits and vegetables? At this point it is necessary to start with the definition of quality, don\'t you think?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definition of quality</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The word \"quality\" comes from the Latin qualitas, which means quality or attribute of an object. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, today a fairly accepted meaning would be \"degree of excellence or superiority\"<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We say that a product is of higher quality when it surpasses another product in one or more attributes. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quality is, therefore, a concept that has a clear subjective component. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Each consumer applies his own personal filter to determine the quality of the same food.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Furthermore, the concept of quality has been&nbsp; changing over time. For example, what was once&nbsp; considered a quality tomato, today might not be. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Let us briefly see what&nbsp; the current concept is.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Evolution of quality in fruits and vegetables</strong>.</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;Today the total consumption of fruit and vegetables has increased compared to previous decades due to&nbsp; different causes such as: concern about a healthier diet, lack of time to cook, increase in popularity&nbsp; of veganism and other diets based on the consumption of vegetables in Western societies, etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>On the other hand, and as we have seen, there is a growing demand for <strong>top quality fruit.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Years ago, growers, merchants and consumers decided upon their own quality standards without a unifying criteria.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, nowadays and taking into account that the price of fruit is determined by its quality level, standards need to be established.<br><br>The higher the quality of the fruit, the higher the price and profit. Hence the interest of producers and merchants to search for excellence.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What the consumer values ​​is the appearance, taste and nutrients that fresh and seasonal fruits provide. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>For their part, producers are continuously innovating with varieties of fruit and vegetables and which aspects, such as ripeness, taste and freshness are prioritized.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, and how could it be otherwise, there is legislation that regulates the entire issue of quality within a territory, both at national, European and international level with numerous regulatory bodies. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of this standardization is to establish a common point in international trade and to provide a criterion that allows determining the minimum quality to be met.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>What parameters define the quality of fruits and vegetables and what parameters influence the quality of the fruits?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To set the standards of quality, the ripeness of the fruit is the most important factor. Exterior aspects and some technical factors must be considered as well.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The main components of the quality of fresh fruits and vegetables are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>The typical aspects of each variety of fruit</strong></li><li><strong><strong>The absence of defects&nbsp;</strong></strong><br>It is important to point out that defects do not affect the edibleness of a fruit. <br><br>However, fruit with physical or morphological defects is rejected by the majority of consumers. These defects can occur during growth due to various causes such as climate, irrigation, fertilization, etc.<br></li><li><strong><strong>Adequate development and ripeness</strong><br></strong>Consumers likes fresh and edible fruit. <br><br>Freshness is undrestood to be the shortest possible time elapsing between the time of harvest and the time of purchase.<br><br>Ripeness is the exact time for harvesting when the fruit is firm, colorful, and flavourful. <br>After all, who does not like to eat a good sweet orange with its characteristic aroma or a crunchy apple? <br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Size<br></strong>Considering the size or caliber of the fruit, three different qualities are established: <strong>extra fruit, first quality fruit, second class fruit</strong>.<br></li><li><strong>Homogeneity<br></strong>Homogeneity is sought both in the caliber of the fruits and in the color they present and level of ripeness of each batch.<strong><br></strong></li><li><strong>Packaging / presentation<br></strong>Worrying physical defects can occur during the packaging process. Mishandling of the fruit can cause bruises in the fruit. <br><br>Sprouting and rootings in bulbs and roots are two other problems that can occur in inadequate packaging.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>How is the fruit evaluated in a quality control?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>There are three types of evaluation.<br><br>The first is sensory evaluation.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Sensory evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In sensory evaluation, in which five aspects are considered. They are color, size and weight, texture, taste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color is to be uniform in appearance, homogeneous and shiny&nbsp;</li><li>Size and weight are to be similar among the fruits.</li><li>Texture means the fruit is firm and ripe.</li><li>Taste is the smell and flavor of the fruit</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Technical evaluation</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ph, humidity, and firmness are the three components also valued in analyzing fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Microbiological and chemical tests</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Microbiological and chemical tests are carried out to discover the presence of any microorganisims in the fruit.&nbsp; </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The objective of these tests is to determine what chemicals the plant has been treated with during the growth and ripening process.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Fruit and vegetable quality control and its phases</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>At the time of harvest, if the collection is done by hand, a first “filtering” of the fruit is carried out by discarding the pieces of fruit that do not meet the standards mentioned previously.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Once the fruit has been transferred to the sorting place, four steps take place.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Positioning<br></strong>This involves placing the frui ton the production lines for calibration and classification.<br></li><li><strong>Classification and identification<br></strong>The pieces of fruit are classified and separated by category according to the size, weight, and size of diameter. <br><br>Any small stones and pieces of dirt are removed at this stage.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defects<br></strong>Defects are detected to eliminate the fruits that cannot be taken to the sales shelf.<br></li><li><strong>Final check and packaging<br></strong>In this phase, the fruit is protected so that it can withstand transport. It will be boxed and put on pallets.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong><strong>How to carry out the quality process in fruits in an automated way</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The horticultural industrial sector is focused on finding solutions that will improve each of the above mentioned phases of quality control.&nbsp; <br><br>In the market, there are many machines and robotic elements that optimize these different stages. These are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Faster calibrators.<br></li><li>Specialized software in the dectection of parameters such as color, size, weight.<br></li><li>Applied artificial intelligence systems capable of detecting exterior and interior defects in the fruit.<br></li><li>Versitile and compact palletizers.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>The&nbsp; above examples show the advances in this field and how rapidly they are changing the industry, which is now&nbsp; termed&nbsp; Industry 4.0.&nbsp; Industry 4.0 is simply a new way of organizing production based on new technologies.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The fruit and vegetable sector has opted to mechanize all the processes that take place in the warehouse to the upmost. By doing so, the interconnected warehouses allows data to flow in real time so quick and accurate decisions can be made.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><strong>What does Invigision propose for you?</strong></strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We have developed a low cost electronic calibration system suitable for any new or old calibrator.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The software is capable of detecting weight, siz, color, density, shape, and exterior fruit defects among other variable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Other important characteristics of our system are:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Component reduction.<br></li><li>A single program adapts to any type of calibration for almost every kind of fruit such as cherries, citrus fruits, tomatoes, avocados, mangoes, melons, watermelons, and even some types of pumpkins.<br></li><li>Excellent value for money.<br></li><li>High performance in weight, size, color, shape, and defects evaluations.&nbsp; Up to 30 units of fruit/second.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>If you are looking to save time and increase the effectiveness and efficiency of&nbsp; your product lines, take a look at our full sizing software programs.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Sources: Ministry of Industry, Commerce and Tourism, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','What is quality control in fruits?','','inherit','closed','closed','','148-revision-v1','','','2020-08-18 15:12:32','2020-08-18 15:12:32','',148,'https://ingivision.admirae.es/2020/08/18/148-revision-v1/',0,'revision','',0),(190,1,'2020-08-18 15:20:40','2020-08-18 15:20:40','','Blog','','inherit','closed','closed','','33-revision-v1','','','2020-08-18 15:20:40','2020-08-18 15:20:40','',33,'https://ingivision.admirae.es/2020/08/18/33-revision-v1/',0,'revision','',0),(191,1,'2020-08-18 15:20:51','2020-08-18 15:20:51','','Blog','','inherit','closed','closed','','33-revision-v1','','','2020-08-18 15:20:51','2020-08-18 15:20:51','',33,'https://ingivision.admirae.es/2020/08/18/33-revision-v1/',0,'revision','',0),(192,1,'2020-08-18 15:46:53','2020-08-18 15:46:53','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogénea y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-18 15:46:53','2020-08-18 15:46:53','',71,'https://ingivision.admirae.es/2020/08/18/71-revision-v1/',0,'revision','',0),(193,1,'2020-08-18 15:47:17','2020-08-18 15:47:17','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizo todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Me refiero a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogénea y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-08-18 15:47:17','2020-08-18 15:47:17','',71,'https://ingivision.admirae.es/2020/08/18/71-revision-v1/',0,'revision','',0),(195,1,'2020-08-25 15:47:48','2020-08-25 15:47:48','<!-- wp:heading -->\n<h2>PRIVACIDAD</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsable – ¿quién es el responsable del tratamiento de los datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identidad:</strong>&nbsp;INGIVISION SLL<br><strong>Domicilio social:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong>&nbsp;B12893624<br><strong>Teléfono:</strong>&nbsp;+34 964 86 16 55<br><strong>Correo Electrónico:</strong>&nbsp;ingivision@ingivision.com<br><strong>Nombre del dominio:</strong>&nbsp;www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Finalidades – ¿con qué finalidades tratamos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En cumplimiento de lo dispuesto en el Reglamento Europeo 2016/679 General de Protección de Datos, te informamos de que trataremos los datos que nos facilitas para:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Gestionar la contratación de servicios que realice a través de la Plataforma, así como la facturación y entrega correspondiente.</li><li>Remitir periódicamente comunicaciones sobre servicios, eventos y noticias relacionadas con las actividades desarrolladas por INGIVISION SLL, por cualquier medio (teléfono, correo postal o email), salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Remitir información comercial y / o promocional relacionada con el sector de servicios contratados y valor añadido para usuarios finales, salvo que se indique lo contrario o el usuario se oponga o revoque su consentimiento.</li><li>Dar cumplimiento a las obligaciones legalmente establecidas, así como verificar el cumplimiento de las obligaciones contractuales, incluía la prevención de fraude.</li><li>Cesión de datos a organismos y autoridades, siempre y cuando sean requeridos de conformidad con las disposiciones legales y reglamentarias.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Categorías de datos – ¿Qué datos tratamos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derivada de las finalidades antes mencionadas, en INGIVISION SLL gestionamos las siguientes categorías de datos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Datos identificativos</li><li>Metadatos de comunicaciones electrónicas</li><li>Datos de información comercial. En caso de que el usuario facilite datos de terceros, manifiesta contar con el consentimiento de estos y se compromete a trasladarle la información contenida en esta cláusula, eximiendo a INGIVISION SLL de cualquier responsabilidad en este sentido.</li><li>No obstante, INGIVISION SLL podrá llevar a cabo las verificaciones para constatar este hecho, adoptando las medidas de diligencia debida que correspondan, conforme a la normativa de protección de datos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimación – ¿cuál es la legitimación para el tratamiento de tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El tratamiento de datos cuyo fin es el envío de boletines periódicos (newslettering) sobre servicios, eventos y noticias relacionadas con nuestra actividad profesional se basa en el consentimiento del interesado, solicitado expresamente para llevar a cabo dichos tratamientos, de acuerdo con la normativa vigente.<br>Además, la legitimación para el tratamiento de los datos relacionados con ofertas o colaboraciones se basan en el consentimiento del usuario que remite sus datos, que puede retirar en cualquier momento, si bien ello puede afectar a la posible comunicación de forma fluida y obstrucción de procesos que desea realizar.<br>Por último, los datos se podrán utilizar para dar cumplimiento a las obligaciones legales aplicables a INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Plazo de Conservación de los Datos – ¿Por cuánto tiempo conservaremos tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL conservará los datos personales de los usuarios únicamente durante el tiempo necesario para la realización de las finalidades para las que fueron recogidos, mientras no revoque los consentimientos otorgados. Posteriormente, en caso de ser necesario, mantendrá la información bloqueada durante los plazos legalmente establecidos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Destinatarios ¿A qué destinatarios se comunicarán tus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tus datos podrán ser accedidos por aquellos proveedores que prestan servicios a INGIVISION SLL, tales como servicios de alojamiento, herramientas de marketing y sistemas de contenido u otros profesionales, cuando dicha comunicación sea necesaria normativamente, o para la ejecución de los servicios contratados.<br><br>INGIVISION SLL, ha suscrito los correspondientes contratos de encargo de tratamiento con cada uno de los proveedores que prestan servicios a INGIVISION SLL, con el objetivo de garantizar que dichos proveedores tratarán tus datos de conformidad con lo establecido en la legislación vigente.<br><br>También podrán ser cedidos a las Fuerzas y Cuerpos de Seguridad del Estado en los casos que exista una obligación legal.<br><br>Bancos y entidades financieras, para el cobro de los servicios.<br>Administraciones públicas con competencia en los sectores de actividad, cuando así lo establezca la normativa vigente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Seguridad de la Información – ¿Qué medidas de seguridad implantamos para cuidar sus datos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para proteger las diferentes tipologías de datos reflejados en esta política de privacidad llevará a cabo las medidas de seguridad técnicas necesarias para evitar su pérdida, manipulación, difusión o alteración.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encriptación de las comunicaciones entre el dispositivo del usuario y los servidores de INGIVISION SLL</li><li>Encriptación de la información en los propios servidores de INGIVISION SLL</li><li>Otras medidas que eviten el acceso a los datos del usuario por parte de terceros.</li><li>En aquellos casos en los que INGIVISION SLL cuente con prestadores de servicio para el mantenimiento de la plataforma que se encuentren fuera de la Unión Europea, estas trasferencias internacionales se hayan regularizadas atendiendo al compromiso de INGIVISION SLL con la protección, integridad y seguridad de los datos personales de los usuarios.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Derechos – ¿Cuáles son tus derechos cuando nos facilitas tus datos y cómo puedes ejercerlos?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Tienes derecho a obtener confirmación sobre si en INGIVISION SLL estamos tratando datos personales que te conciernan, o no.<br>Asimismo, tienes derecho a acceder a tus datos personales, así como a solicitar la rectificación de los datos inexactos o, en su caso, solicitar su supresión cuando, entre otros motivos, los datos ya no sean necesarios para los fines que fueron recogidos.<br><br>En determinadas circunstancias, podrás solicitar la limitación del tratamiento de tus datos, en cuyo caso únicamente los conservaremos para el ejercicio o la defensa de reclamaciones.<br>En determinadas circunstancias y por motivos relacionados con tu situación particular, podrás oponerte al tratamiento de tus datos. INGIVISION SLL dejará de tratar los datos, salvo por motivos legítimos imperiosos, o el ejercicio o la defensa de posibles reclamaciones.<br><br>Asimismo, puedes ejercer el derecho a la portabilidad de los datos, así como retirar los consentimientos facilitados en cualquier momento, sin que ello afecte a la licitud del tratamiento basado en el consentimiento previo a su retirada.<br><br>Si deseas hacer uso de cualquiera de tus derechos puede dirigirse a&nbsp;<a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>.<br><br>Por último, te informamos que puedes dirigirte ante la Agencia Española de Protección de Datos y demás organismos públicos competentes para cualquier reclamación derivada del tratamiento de tus datos personales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modificación de la política de privacidad</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL podrá modificar la presente Política de Privacidad en cualquier momento, siendo publicadas las sucesivas versiones en el Sitio Web. En cualquier caso, INGIVISION SLL comunicará con previo aviso las modificaciones de la presente política que afecten a los usuarios a fin de que puedan aceptar las mismas.<br><br>La presente Política de Privacidad se encuentra actualizada a fecha 27/12/2018 INGIVISION SLL (España). Reservados todos los derechos.<br><br>Si lo deseas también puedes consultar nuestra&nbsp;<strong><a href=\"https://www.ingivision.com/cookies/\">Política de Cookies</a></strong></p>\n<!-- /wp:paragraph -->','Política de privacidad','','inherit','closed','closed','','58-revision-v1','','','2020-08-25 15:47:48','2020-08-25 15:47:48','',58,'https://www.ingivision.com/2020/08/25/58-revision-v1/',0,'revision','',0),(197,1,'2020-08-27 16:53:44','2020-08-27 16:53:44','{\"block-lab\\/productos\":{\"name\":\"productos\",\"title\":\"Productos en Home\",\"excluded\":[],\"icon\":\"block_lab\",\"category\":{\"slug\":\"text\",\"title\":\"Texto\",\"icon\":null},\"keywords\":[\"\"],\"fields\":{\"1\":{\"name\":\"1\",\"label\":\"1\",\"control\":\"radio\",\"type\":\"string\",\"order\":0,\"location\":\"editor\",\"width\":\"100\",\"help\":\"\",\"options\":[],\"default\":\"\"},\"2\":{\"name\":\"2\",\"label\":\"2\",\"control\":\"text\",\"type\":\"string\",\"order\":1,\"location\":\"editor\",\"width\":\"100\",\"help\":\"\",\"default\":\"\",\"placeholder\":\"\",\"maxlength\":null},\"3\":{\"name\":\"3\",\"label\":\"3\",\"control\":\"text\",\"type\":\"string\",\"order\":2,\"location\":\"editor\",\"width\":\"100\",\"help\":\"\",\"default\":\"\",\"placeholder\":\"\",\"maxlength\":null},\"4\":{\"name\":\"4\",\"label\":\"4\",\"control\":\"text\",\"type\":\"string\",\"order\":3,\"location\":\"editor\",\"width\":\"100\",\"help\":\"\",\"default\":\"\",\"placeholder\":\"\",\"maxlength\":null}}}}','Productos en Home','','publish','closed','closed','','productos','','','2020-08-27 17:44:15','2020-08-27 17:44:15','',0,'https://www.ingivision.com/?post_type=block_lab&#038;p=197',0,'block_lab','',0),(199,1,'2020-09-01 07:17:46','2020-09-01 07:17:46','<!-- wp:heading {\"level\":1} -->\n<h1>ELECTRONIC CALIBRATION SYSTEM</h1>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>The difficulty of acheiving simplicity.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Like you, we love simplicity, which is why we developed and implemented our easy-to-use electronic calibration system. We think that simple is best. We looked at how easy it is to use Google, Netflix, and WhatsApp, and we brought that simplicity to our system so that anyone can use it anywhere.<br>Implmenting our software in your machines gives:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><a href=\"https://www.ingivision.com/en/#\">Fewer components.</a></li><li><a href=\"https://www.ingivision.com/en/#\">A single program adaptable to any type of calibration.</a></li><li><a href=\"https://www.ingivision.com/en/#\">Effectiveness and efficiency in the fruit and vegetable grading process.</a></li><li><a href=\"https://www.ingivision.com/en/#\">Excellent money value.</a></li><li><a href=\"https://www.ingivision.com/en/#\">Superior performance in evaluating weight, size, color, shape and fruit defects. Up to 30 pieces/second.</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/#\">Learn About Our System</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>OUR SOLUTIONS</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>Electronic systems for any type of sorter</h2>\n<!-- /wp:heading -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingisorter.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/services/service1.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/Ingisorter-icono.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><a href=\"https://www.ingivision.com/en/products/ingisorter/\">ingiSorter</a></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Our software is very competitive<br>in price and it is our best selling<br>product.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><a href=\"https://www.ingivision.com/en/products/ingisorter/\">READ MORE</a></h4>\n<!-- /wp:heading -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingisorter-plus.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/services/service2.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/Ingisorter-polus-icono.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><a href=\"https://www.ingivision.com/en/products/ingisorter-2/\">IngiSorter+</a></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This has all the features of the IngiSorter, but comes with a plus: more multicapture optical functions, color/surface ratio, etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><a href=\"https://www.ingivision.com/en/products/ingisorter-2/\">READ MORE</a></h4>\n<!-- /wp:heading -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingigrader.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/services/service3.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingigrader-icono.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><a href=\"https://www.ingivision.com/en/products/ingigrader/\">ingiGrader</a></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This one has all the features of the IngiSorter+ but with a developed artificial intelligence system in order to detect external defects on the fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4><a href=\"https://www.ingivision.com/en/products/ingigrader/\">READ MORE</a></h4>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>We have more than 20 years experience installing our fruit and vegeatble grading systems.</strong>At INGIVISION, we have installed more than 400 systems throughout the world.<img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home9.jpg\" alt=\"image\"></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Calibradores</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>What is said about us:</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>Satisfied customers:</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home1.png\" alt=\"image\">Jordi RuizManager</li><li><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home8.png\" alt=\"image\">Javier Córdoba LinaresManager</li><li><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home9.png\" alt=\"image\">Andrés Daniel SoleraLogistics Operations and Commercial Manager</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list -->\n<ul><li>”I met Alejandro and Vicente at the fair, and they immediately made me feel confident. I was surprised by how quickly they responded, offering me just what I needed to improve the results of my grading line”<strong>25 NOV, 2017</strong></li><li>“We have a fruit and vegetable machinery workshop. We needed a company that would give us the optical technology for our machinery and optical hardware because we are in charge of the mechanics. With INGVISION, we found the perfect ally”<strong>7 AGO, 2018</strong></li><li>“To date, we have added INGIVISION´s IngiSorter products in 25 new grading lines. The INGVISION´s team came to install the first ones and taught us how to use them. The software is very intuitive and is personalized with our logo and language. 100% recomendable”<strong>12 ENE, 2015</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><a href=\"https://www.ingivision.com/en/#\">1</a></li><li><a href=\"https://www.ingivision.com/en/#\">2</a></li><li><a href=\"https://www.ingivision.com/en/#\">3</a></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>WHY INGIVISION?</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>We want to be your “external electronic deparment</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>We know that developing the electronics for machinery is complex. Therefore, we would like to help you by being your “external electronic deparment.”</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>01User-friendly software</li><li>02Free forever general updates</li><li>03After-sales service. We do not lose contact with you after installing our systems. We will continue to give the support you need.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/\">Learn More</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home13.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home4.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Adaptable electronic and computer system for fruit graders</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>ADAPTABLE</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":4} -->\n<h4>YOUR DOUBTS</h4>\n<!-- /wp:heading -->\n\n<!-- wp:heading -->\n<h2>Frequently asked questions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>What does our classification system include?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Not included</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What is special about our software?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Does this system offer sufficent guarantees?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/#\">more than 20 years of experience in developing and implementing electronic</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/en/#\">+34 964 86 16 55</a>REQUEST YOUR BUDGET NOW&nbsp;READY IN 24H</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image -->\n<figure class=\"wp-block-image\"><img src=\"https://www.ingivision.com/wp-content/themes/ingivi/image/home/home20.jpg\" alt=\"image\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>FEEL FREE TO CONTACT US<strong>Increases the effectiveness and efficency of the fruit and vegetable sorting process.</strong></p>\n<!-- /wp:paragraph -->','Home','','inherit','closed','closed','','99-revision-v1','','','2020-09-01 07:17:46','2020-09-01 07:17:46','',99,'https://www.ingivision.com/2020/09/01/99-revision-v1/',0,'revision','',0),(200,1,'2020-09-09 15:49:34','2020-09-09 15:49:34','<!-- wp:heading -->\n<h2>Cookies policy</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On this website, third-party and own cookies are used to ensure that you have a better browsing experience, you can share content on social networks and so that we can obtain user statistics.<br><br> You can prevent the download of cookies through your browser settings, preventing cookies from being stored on your device. As the owner of this website, I inform you that we do not use any personal information from cookies, we only carry out general statistics of visits that do not involve any personal information. <br><br>It is very important that you read this cookie policy and understand that, if you continue browsing, we will consider that you accept its use. <br><br>According to the terms included in article 22.2 of Law 34/2002 on Services of the Information Society and Electronic Commerce, if you continue browsing, you will be giving your consent for the use of the aforementioned mechanisms.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible Entity</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The entity responsible for the collection, processing and use of your personal data, in the sense established by the Personal Data Protection Law is the page www.ingivision.com, owned by Ingivision SLL - Av. De la Constitució, 71, 12520 Nules, Castelló, Spain.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>What are cookies?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;Cookies are a set of data that a server deposits in the user\'s browser to collect standard Internet registration information and information on the behavior of visitors to a website. <br>In other words, these are small text files that are stored on the computer\'s hard drive and that serve to identify the user when they connect to the website again. Its purpose is to record the user\'s visit and save certain information. Its use is common and frequent on the web since it allows the pages to function more efficiently and achieve greater personalization and analysis of user&nbsp;behavior</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>What types of cookies are there?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The cookies used on our website are session and third-party cookies which enable us to store, access information regarding&nbsp; the language, the type of browser used, and other general characteristics predefined by the user. We&nbsp; are also able to follow and analyze the activity carried out in order to introduce improvements and provide our services in a more efficent and personalized way.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Depending on their permanence, cookies can be divided into session or permanent cookies, those that expire when the user closes the browser, and those that expire when their purpose is fulfilled (for example, the user remains identified in the services of INGIVSION SLL) and lastly when the cookies are deleted manually.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:table -->\n<figure class=\"wp-block-table\"><table><tbody><tr><td>Name</td><td>Type</td><td>Date of Expiry</td><td>Purpose</td><td>Class</td></tr><tr><td>__utma</td><td>De Terceros (Google Analytics)</td><td>2 years</td><td>Identify user and session.</td><td>Not exempt</td></tr><tr><td>__utmb</td><td>De Terceros (Google Analytics)</td><td>30 minutes</td><td>Identify session<br></td><td>Not exempt</td></tr><tr><td>__utmc</td><td>De Terceros (Google Analytics)</td><td>When session is over</td><td>Configure for Urchin</td><td>Not exempt</td></tr><tr><td>__utmz</td><td>De Terceros (Google Analytics)</td><td>6 months</td><td>Store origin or user<br>Trail to get web page</td><td>Not exempt</td></tr></tbody></table></figure>\n<!-- /wp:table -->\n\n<!-- wp:paragraph -->\n<p>Depending on the objective, cookies can be classified as follows:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Performance</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies remembers your preferences for the tools found in the services so you do not have to reconfigure the service each time you visit. To give&nbsp; two examples, this typology includes volumen settings for video or sound players&nbsp; as well as video transmission speeds that are compatible with your browser. Preformance cookies also store the “Shopping cart” objects in e-commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Geo-location</strong> cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These cookies are used to find out which country you are in when a service is requested. They are completely anonymous and their purpose is to help guide content to your location.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Registration cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Once the user has registered or subsequently opened a session, registration cookies are generated and are used to identify the user in the services with the following objectives. <br><br>Firstly, registration cookies keep the users identified so that when a session or computer is closed, when the users re-enter, they continue to be identified.This function can be surpressed by pressing the close session thereby eliminating the cookie. <br><br>However, the next time the users enter the service, their identification will have to be reestablished. Secondly, these cookies check if the users are authorized to access certain services, for example, to enter a contest. Additionally, some services may use connectors with social networks such as Facebook or Twitter. <br><br>When the user registers in a&nbsp; social network service with credentials, the network is authorized to save a persistent cookie that remembers the user´s identity to guarantee access to its services until the date of expiry. Updating preferences on the user´s experience site deletes and revokes cookie access to the social network services.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Analytic cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Every time a user visits a service, a tool from an external provider generates an analytical cookie on the user´s computer.This type of cookie is only generated during the visit but will serve, in future visits to INGIVISION SLL services, to identify the visitor in an anonymous way. The principal objectives of these cookies are&nbsp; to allow the identification of the users who are browsing in an anonymous way via the cookie. In other words,&nbsp; the cookie identifies the browser and devices but not the identity of the user. The sole purpose of these cookies is to count the number of visitors to a site and the users´ preferences over a period of time.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;The second objective allows for knowing if the user is new one. It is important to point out that unless the user decides to register for an INGIVISION SLL service, the analytic cookie will never be associated with any personal data that could identify the user. Analytic cookies are only for&nbsp; statistical purposes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Advertising cookies</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>This type of cookies permits diffusion of the information given in the advertisement, which is shown to each anonymous user of the services of INGIVISION SLL. The duration or frequency of views, the interaction with them, the browsing patterns and/or user behavior are stored and later used to form a profile of advertising interest. In this way, advertising cookies allow advertising to fit the interests of the user.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition to the advertising managed by&nbsp; the INGIVISION SLL websites, the company offers its advertisers the option of showing advertisements using third-parties, (“Ad-Servers”). These third parties are permitted to store cookies sent from INGIVISION SLL services from their users´ browsers. The third parties can also access this data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The companies that generate the above types of cookies have their own privacy policies. INGIVISION SLL currently uses the Google Doubleclick platform to manage these services. For more information go to <a href=\"https://google.es/policies/privacy/ads/#toc-doublelick\">https://google.es/policies/privacy/ads/#toc-doublelick</a> and <a href=\"http://www.google.es/policies/privacy/ads/\">www.google.es/policies/privacy/ads/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>How can cookies be deleted from your browser?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Diffrent browsers can be programmed to notify the user that cookies have been received and prevent them from being installed. The user can also check the browser to see which cookies have been installed and their date of expiry in order to eliminate them.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To learn more, consult the instructions and browser manuals as well as the administration of cookies found in Google Chrome, <a href=\"https://support.google.com/chrome/answer/95647?hl=es\">https://support.google.com/chrome/answer/95647?hl=es</a>. For managing cookies in Internet Explorer, go to&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:embed {\"url\":\"http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\"} -->\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttp://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions.\n</div></figure>\n<!-- /wp:embed -->\n\n<!-- wp:paragraph -->\n<p>More information about the administration of cookies can be found in: Mozilla Firefox <a href=\"http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we\">http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we</a>&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Safari: <a href=\"http://www.apple.com/es/privacy/use-of-cookies\">http://www.apple.com/es/privacy/use-of-cookies</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Opera: <a href=\"http://help.opera.com/Windows/11.50/es-ES/cookies.html\">http://help.opera.com/Windows/11.50/es-ES/cookies.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>To stop being followed by Google Analytics, go to <a href=\"http://tools.google.com/dlpage/gaoptout\">http://tools.google.com/dlpage/gaoptout</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>More information about cookies and online advertising based on behavior and online privacy can be found at the following link: <a href=\"http://www.youronlinechoices.com/es\">http://www.youronlinechoices.com/es</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Google Analytics data protection: <a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;How Google Analylitics uses cookies: <a href=\"https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs</a>&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Para saber más sobre las cookies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Puede obtener más información sobre la publicidad online basada en el comportamiento y la privacidad online en el siguiente enlace:&nbsp;<a href=\"http://www.youronlinechoices.com/es/\">http://www.youronlinechoices.com/es/</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Protección de datos de Google Analytics:&nbsp;<a href=\"http://www.google.com/analytics/learn/privacy.html\">http://www.google.com/analytics/learn/privacy.html</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cómo usa Google Analytics las cookies:&nbsp;<a href=\"https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs\">https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Updates and changes in the Cookie Privacy Policy.</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>For updates and changes in the Cookie Privacy Policy, INGIVISION SLL may modify this policy if there are any&nbsp; changes in the legislative and regulatory requirements or instructions issued by the Spanish Data Protection Agency. Users are advised to periodically check updates. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>However, if there are any significant changes, registered users will be notified through the web or email.&nbsp;</p>\n<!-- /wp:paragraph -->','Cookies','','inherit','closed','closed','','102-revision-v1','','','2020-09-09 15:49:34','2020-09-09 15:49:34','',102,'https://www.ingivision.com/2020/09/09/102-revision-v1/',0,'revision','',0),(201,1,'2020-09-09 15:54:49','2020-09-09 15:54:49','<!-- wp:heading -->\n<h2>Legal notice and terms of use</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In this space, the USER will be able to find all the information related to the legal terms and conditions that define the relationships between users and us as responsible for this website. As a user, it is important that you know these terms before continuing your navigation. Ingivision SLL. As responsible for this website, it assumes the commitment to process the information of our users and clients with full guarantees and to comply with the national and European requirements that regulate the collection and use of the personal data of our users. This website, therefore, strictly complies with the RGPD (REGULATION (EU) 2016/679 on data protection) and the LSSI-CE Law 34/2002, of July 11, on services of the information society and electronic commerce.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>GENERAL CONDITIONS OF USE</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>These General Conditions regulate the use (including mere access) of the web pages, members of the www.ingivision.com website, including the contents and services made available in them. Any person who accesses the web, www.ingivision.com (\"User\") agrees to be bound by the General Conditions in force at all times of the www.ingivision.com portal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>PERSONAL DATA WE COLLECT AND HOW WE DO IT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Read Privacy Policy</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMITMENTS AND OBLIGATIONS OF THE USERS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The User is informed, and accepts, that access to this website does not imply, in any way, the beginning of a commercial relationship with www.ingivision.com. In this way, the user agrees to use the website, its services and content without violating current legislation, good faith and public order.<br>The use of the website is prohibited, for illegal or harmful purposes, or that, in any way, may cause damage or prevent the normal functioning of the website. Regarding the contents of this website, its reproduction, distribution or modification, in whole or in part, unless it has the authorization of its legitimate owners is prohibited.&nbsp; Any violation of the rights of the provider or of the legitimate owners and&nbsp; its use for commercial or advertising purposes is also prohibited.<br><br>When using the website, www.ingivision.com, the User agrees not to carry out any conduct that could damage the image, interests and rights of www.ingivision.com or third parties or that could damage, disable or overload the portal (indicate domain) or prevent in any way the normal use of the web. However, the User must be aware that the security measures of computer systems on the Internet are not entirely reliable and therefore www.ingivision.com cannot guarantee the absence of viruses or other elements that may cause alterations in the computer systems (software and hardware) of the User or in their electronic documents and files contained therein.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>SECURITY MEASURES</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>L</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The personal data communicated by the user to www.ingivision.com can be stored or not in automated databases&nbsp; whose ownership corresponds exclusively to www.ingivision.com. INGIVISION SLL takes responsibility for&nbsp; all the technical, organizational and security measures that guarantee the confidentiality, integrity and quality of the information contained therein in accordance with the provisions of current regulations on data protection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL (www.ingivision.com) uses a secure channel to communicate with its users. The transmitted data is encrypted thanks to https protocols, therefore, INGIVISION SLL guarantees the best security conditions so that confidentiality of the users is guaranteed.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CLAIMS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Claim sheets are available to users and customers.&nbsp; Users may make claims by requesting the claim form or by sending an email to&nbsp; <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a> indicating&nbsp; name and surname, the service and / or product purchased and stating the reasons for their claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user/buyer may notify us of the claim either by e-mail to ingivision invigision.com****attaching the following claim form: The service/product, date of purchase, user´s name and address, signature (only if presented on paper) date of claim, and reason for claim.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONFLICT RESOLUTION PLATFORM</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In submitting a claim, the dispute resolution platform provided by the European Commission can also be used. It is available at the following link: <a href=\"http://ee.europa.eu/consumers/ord\">http://ee.europa.eu/consumers/ord</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>NTELLECTUAL AND INDUSTRIAL PROPERTY RIGHTS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>By virtue of the provisions of articles 8 and 32.1, second paragraph, of the Intellectual Property Law, the reproduction, distribution and public communication, including the method of making them available, of all or part of the data are expressly prohibited. contents of this website, for commercial purposes, in any medium and by any technical means, without the authorization of www.ingivision.com. The user undertakes to respect the Intellectual and Industrial Property rights owned by www.ingivision.com.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The user knows and accepts that the entire website, containing without exhaustive character the text, software, content (including structure, selection, arrangement and presentation of the same), podcast, photographs, audiovisual material and graphics, is protected by trademarks, rights copyright and other legitimate rights, in accordance with international treaties to which Spain is a party and other property rights and laws of Spain. In the event that a user or a third party considers that there has been a violation of their legitimate intellectual property rights due to the introduction of certain content on the web, they must notify this circumstance to www.ingivision.com indicating:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Personal data of the interested party who owns the rights allegedly infringed, or indicate the representation with which he acts in the event that the claim is presented by a third party other than the interested party.</li><li>Point out the contents protected by intellectual property rights and their location on the web, the accreditation of the intellectual property rights indicated and an express declaration in which the interested party is responsible for the veracity of the information provided in the notification.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXTERNAL LINKS</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>for the veracity of the information provided in the notification EXTERNAL LINKS The pages of the web www.ingivision.com, could provide links to other own websites and content that are owned by third parties. The sole purpose of the links is to provide the User with the possibility of accessing said links. www.ingivision.com is not responsible in any case for the results that may be derived to the User by accessing said links.<br><br>Likewise, the user will find within this site, pages, promotions, affiliate programs that access the browsing habits of users to establish profiles. This information is always anonymous and the user is not identified.<br><br>Information provided on these sponsored Sites or affiliate links is subject to the privacy policies used on those Sites and will not be subject to this privacy policy. Therefore, we highly recommend Users to carefully review the privacy policies of affiliate links.<br><br>The User who intends to establish any technical link device from his website to the www.ingivision.com portal must obtain the prior written authorization of www.ingivision.com The establishment of the link does not imply in any case the existence of relations between www .ingivision.com and the owner of the site where the link is established, nor the acceptance or approval by www.ingivision.com of its contents or services</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>COMMENTS POLICY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>On our website and comments are allowed to enrich the content and make inquiries. Comments that are not related to the theme of this website, which include defamations, grievances, insults, personal attacks or general disrespect towards the author or other members will not be accepted. Comments that contain information that is obviously misleading or false, as well as comments that contain personal information, such as, for example, private addresses or telephones and that violate our data protection policy, will also be deleted. <br><br>Likewise, those comments created only for promotional purposes of a website, person or group and everything that may be considered spam in general will be rejected. Anonymous comments are not allowed, as well as those made by the same person with different nicknames. Comments that try to force a debate or take a position by another user will not be considered either.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>EXCLUSION OF GUARANTEES AND RESPONSIBILITY</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The Provider does not grant any guarantee nor is it responsible, in any case, for damages of any nature that could be caused by:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>The lack of availability, maintenance and effective operation of the web, or of its services and contents.</li><li>The existence of viruses, malicious or harmful programs in the contents.</li><li>The illicit, negligent, fraudulent use or contrary to this Legal Notice.</li><li>The lack of legality, quality, reliability, usefulness and availability of the services provided by third parties and made available to users on the website.</li><li>&nbsp;The provider is not responsible under any circumstances for damages that may arise from the illegal or improper use of this website.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>APPLICABLE LAW AND JURISDICTION</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In general, the relations between www.ingivision.com with the Users of its telematic services, present on this website, are subject to Spanish legislation and jurisdiction and to the courts.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>CONTACT</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In case any User has any questions about these Legal Conditions or any comment on the www.ingivision.com portal, please contact<br> ingivision@ingivision.com On behalf of the team that make up Ingivision SLL, we thank you for the time dedicated to reading this Legal Notice</p>\n<!-- /wp:paragraph -->','Legal notice','','inherit','closed','closed','','101-revision-v1','','','2020-09-09 15:54:49','2020-09-09 15:54:49','',101,'https://www.ingivision.com/2020/09/09/101-revision-v1/',0,'revision','',0),(202,1,'2020-09-09 16:08:04','2020-09-09 16:08:04','<!-- wp:heading -->\n<h2>PRIVACY</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Responsible - who is responsible for data processing?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong>Identity:</strong>&nbsp;INGIVISION SLL<br><strong>Registered office:</strong>&nbsp;Av. de la Constitució, 71, 12520 Nules<br><strong>CIF:</strong>&nbsp;B12893624<br><strong>Telephone:</strong>&nbsp;+34 964 86 16 55<br><strong>Email:</strong>&nbsp;ingivision@ingivision.com<br><strong>Domain name:</strong>&nbsp;www.ingivision.com</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purposes - for what purposes do we process your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>In compliance with the provisions of the European Regulation 2016/679 General Data Protection, we inform you that we will treat the data you provide us to:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Manage the contracting of services that you carry out through the Platform, as well as the corresponding billing and delivery.</li><li>Periodically send communications about services, events and news related to the activities developed by INGIVISION SLL, by any means (telephone, postal mail or email), unless otherwise indicated or the user opposes or revokes their consent.</li><li>Send commercial and / or promotional information related to the contracted service sector and added value for end users, unless otherwise indicated or the user opposes or revokes their consent.</li><li>Complying with the legally established obligations, as well as verifying compliance with contractual obligations, included the prevention of fraud.</li><li>Transfer of data to organizations and authorities, as long as they are required in accordance with the legal and regulatory provisions.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Data categories - What data do we process?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Derived from the aforementioned purposes, in INGIVISION SLL we manage the following categories of data:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Identifying data</li><li>Electronic communications metadata</li><li>Commercial information data. In the event that the user provides data from third parties, they declare that they have their consent and undertake to transfer the information contained in this clause, exempting INGIVISION SLL from any responsibility in this regard.</li><li>However, INGIVISION SLL may carry out the verifications to verify this fact, adopting the corresponding due diligence measures, in accordance with the data protection regulations.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Legitimation - what is the legitimacy for the processing of your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The processing of data whose purpose is to send periodic bulletins (newslettering) about services, events and news related to our professional activity is based on the consent of the interested party, expressly requested to carry out said treatments, in accordance with current regulations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In addition, the legitimacy for the processing of data related to offers or collaborations is based on the consent of the user who submits their data, which can be withdrawn at any time, although this may affect the possible fluid communication and obstruction of processes. you want to do.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Finally, the data may be used to comply with the legal obligations applicable to INGIVISION SLL</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Data Conservation Period - How long will we keep your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL will keep the personal data of the users only for the time necessary to carry out the purposes for which they were collected, as long as it does not revoke the consents granted. Subsequently, if necessary, it will keep the information blocked during the legally established periods.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Recipients To which recipients will your data be communicated?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Your data may be accessed by those providers that provide services to INGIVISION SLL, such as hosting services, marketing tools and content systems or other professionals, when such communication is legally necessary, or for the execution of the contracted services.<br><br>INGIVISION SLL, has signed the corresponding treatment order contracts with each of the providers that provide services to INGIVISION SLL, with the aim of guaranteeing that said providers will treat your data in accordance with the provisions of current legislation.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>They may also be transferred to the State Security Forces and Bodies in cases where there is a legal obligation.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Banks and financial entities, for the collection of services.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Public administrations with competence in the sectors of activity, when established by current regulations.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Information Security - What security measures do we implement to take care of your data?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>To protect the different types of data reflected in this privacy policy, it will carry out the necessary technical security measures to prevent its loss, manipulation, dissemination or alteration.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Encryption of information on INGIVISION SLL\'s own servers</li><li>Other measures that prevent access to user data by third parties</li><li>In those cases in which INGIVISION SLL has service providers for the maintenance of the platform that are outside the European Union, these international transfers have been regularized according to the commitment of</li><li>INGIVISION SLL with the protection, integrity and security of users\' personal data.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Rights - What are your rights when you provide us with your data and how can you exercise them?</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>You have the right to obtain confirmation about whether INGIVISION SLL is treating personal data that concerns you, or not. Likewise, you have the right to access your personal data, as well as to request the rectification of inaccurate data or, where appropriate, request its deletion when, among other reasons, the data is no longer necessary for the purposes for which it was collected.<br><br>In certain circumstances, you may request the limitation of the processing of your data, in which case we will only keep it for the exercise or defense of claims.<br><br>In certain circumstances and for reasons related to your particular situation, you may oppose the processing of your data. INGIVISION SLL will stop processing the data, except for compelling legitimate reasons, or the exercise or defense of possible claims. Likewise, you can exercise the right to data portability, as well as withdraw the consents provided at any time, without affecting the legality of the treatment based on the consent prior to its withdrawal. <br><br>If you wish to make use of any of your rights, you can contact <a href=\"mailto:ingivision@ingivision.com\">ingivision@ingivision.com</a>. <br><br>Finally, we inform you that you can contact the Spanish Data Protection Agency and other competent public bodies for any claim arising from the processing of your personal data.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Modification of the privacy policy</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>INGIVISION SLL may modify this Privacy Policy at any time, the successive versions being published on the Website. In any case, INGIVISION SLL will communicate with prior notice the modifications to this policy that affect users so that they can accept them. This Privacy Policy is updated on 12/27/2018 INGIVISION SLL (Spain). All rights reserved. <br><br>If you wish, you can also consult our Cookies Policy Legal notice<br></p>\n<!-- /wp:paragraph -->','Privacy Policy','','inherit','closed','closed','','100-revision-v1','','','2020-09-09 16:08:04','2020-09-09 16:08:04','',100,'https://www.ingivision.com/2020/09/09/100-revision-v1/',0,'revision','',0),(203,1,'2020-09-16 13:12:05','2020-09-16 13:12:05','<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','publish','open','open','','fruit-logistica-2021','','','2020-09-21 07:35:27','2020-09-21 07:35:27','',0,'https://www.ingivision.com/?p=203',0,'post','',0),(204,1,'2020-09-14 14:56:42','2020-09-14 14:56:42','<!-- wp:paragraph -->\n<p>&lt;zsdffdadf</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>sdufygdfgasdjhgf</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>asdfdkjsafaskjfdjkhasdf</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:embed {\"url\":\"https://giphy.com/embed/14mgxYFJHXGmoo\"} -->\n<figure class=\"wp-block-embed\"><div class=\"wp-block-embed__wrapper\">\nhttps://giphy.com/embed/14mgxYFJHXGmoo\n</div></figure>\n<!-- /wp:embed -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://giphy.com/gifs/80s-cartoon-inspector-gadget-14mgxYFJHXGmoo\">via GIPHY</a></p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','203-revision-v1','','','2020-09-14 14:56:42','2020-09-14 14:56:42','',203,'https://www.ingivision.com/2020/09/14/203-revision-v1/',0,'revision','',0),(205,1,'2020-09-14 14:56:42','2020-09-14 14:56:42','{{unknown}}','','','publish','closed','closed','','55a36cb4037d17a0f8f43557ff908d2c','','','2020-09-14 14:56:42','2020-09-14 14:56:42','',0,'https://www.ingivision.com/2020/09/14/55a36cb4037d17a0f8f43557ff908d2c/',0,'oembed_cache','',0),(206,1,'2020-09-16 11:31:53','2020-09-16 11:31:53','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-16 11:31:53','2020-09-16 11:31:53','',203,'https://www.ingivision.com/2020/09/16/203-revision-v1/',0,'revision','',0),(207,1,'2020-09-16 11:32:25','2020-09-16 11:32:25','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-16 11:32:25','2020-09-16 11:32:25','',203,'https://www.ingivision.com/2020/09/16/203-revision-v1/',0,'revision','',0),(208,1,'2020-09-16 11:35:01','2020-09-16 11:35:01','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Está afectando la pandemia a las grandes ferias del sector hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-16 11:35:01','2020-09-16 11:35:01','',203,'https://www.ingivision.com/2020/09/16/203-revision-v1/',0,'revision','',0),(209,1,'2020-09-16 11:38:40','2020-09-16 11:38:40','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, pero no hemos asistido nunca a esta feria de forma presencial y hemos descartado también estar en la modalidad online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-16 11:38:40','2020-09-16 11:38:40','',203,'https://www.ingivision.com/2020/09/16/203-revision-v1/',0,'revision','',0),(210,1,'2020-09-16 11:49:55','2020-09-16 11:49:55','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, pero no hemos asistido nunca a esta feria de forma presencial y hemos descartado también estar en la modalidad online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p><cite><em>Vicente Ribera - Dept. Electronics</em></cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se espera una rápida evolución de estas tecnologías y quizá en menor medida el uso de la resonancia magnética, por su precio elevado y la complejidad de los equipos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta absorbe. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-16 11:49:55','2020-09-16 11:49:55','',203,'https://www.ingivision.com/2020/09/16/203-revision-v1/',0,'revision','',0),(211,1,'2020-09-16 11:50:43','2020-09-16 11:50:43','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, pero no hemos asistido nunca a esta feria de forma presencial y hemos descartado también estar en la modalidad online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se espera una rápida evolución de estas tecnologías y quizá en menor medida el uso de la resonancia magnética, por su precio elevado y la complejidad de los equipos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta absorbe. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-16 11:50:43','2020-09-16 11:50:43','',203,'https://www.ingivision.com/2020/09/16/203-revision-v1/',0,'revision','',0),(212,1,'2020-09-16 13:05:14','2020-09-16 13:05:14','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, pero no hemos asistido nunca a esta feria de forma presencial y hemos descartado también estar en la modalidad online.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se espera una rápida evolución de estas tecnologías y quizá en menor medida el uso de la resonancia magnética, por su precio elevado y la complejidad de los equipos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta absorbe. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-16 13:05:14','2020-09-16 13:05:14','',203,'https://www.ingivision.com/2020/09/16/203-revision-v1/',0,'revision','',0),(213,1,'2020-09-18 08:32:03','2020-09-18 08:32:03','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se espera una rápida evolución de estas tecnologías y quizá en menor medida el uso de la resonancia magnética, por su precio elevado y la complejidad de los equipos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta absorbe. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:32:03','2020-09-18 08:32:03','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(214,1,'2020-09-18 08:33:02','2020-09-18 08:33:02','<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:33:02','2020-09-18 08:33:02','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(215,1,'2020-09-18 08:35:07','2020-09-18 08:35:07','','WhatsApp-Image-2020-09-15-at-12.01.06','','inherit','open','closed','','whatsapp-image-2020-09-15-at-12-01-06','','','2020-09-18 08:35:07','2020-09-18 08:35:07','',203,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06.jpeg',0,'attachment','image/jpeg',0),(216,1,'2020-09-18 08:35:54','2020-09-18 08:35:54','<!-- wp:image {\"id\":215,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1024x768.jpeg\" alt=\"\" class=\"wp-image-215\"/><figcaption>Fruit Logística 2020</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:35:54','2020-09-18 08:35:54','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(217,1,'2020-09-18 08:36:46','2020-09-18 08:36:46','<!-- wp:image {\"id\":215,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1024x768.jpeg\" alt=\"\" class=\"wp-image-215\"/><figcaption>Fruit Logística 2020</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:36:46','2020-09-18 08:36:46','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(218,1,'2020-09-18 08:38:39','2020-09-18 08:38:39','','WhatsApp-Image-2020-09-15-at-12.00.51','','inherit','open','closed','','whatsapp-image-2020-09-15-at-12-00-51','','','2020-09-18 08:38:39','2020-09-18 08:38:39','',203,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.00.51.jpeg',0,'attachment','image/jpeg',0),(219,1,'2020-09-18 08:38:40','2020-09-18 08:38:40','','ingivision en Fruit Logistica 2020','','inherit','open','closed','','whatsapp-image-2020-09-15-at-12-01-06-1','','','2020-09-18 08:41:16','2020-09-18 08:41:16','',203,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg',0,'attachment','image/jpeg',0),(220,1,'2020-09-18 08:39:27','2020-09-18 08:39:27','','WhatsApp-Image-2020-09-15-at-12.01.05','','inherit','open','closed','','whatsapp-image-2020-09-15-at-12-01-05','','','2020-09-18 08:39:27','2020-09-18 08:39:27','',203,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.05.jpeg',0,'attachment','image/jpeg',0),(221,1,'2020-09-18 08:39:29','2020-09-18 08:39:29','<!-- wp:gallery {\"ids\":[218,219,220]} -->\n<figure class=\"wp-block-gallery columns-3 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.00.51-1024x768.jpeg\" alt=\"\" data-id=\"218\" data-link=\"https://www.ingivision.com/2020/09/16/fruit-logistica-2021/whatsapp-image-2020-09-15-at-12-00-51/\" class=\"wp-image-218\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1-1024x768.jpeg\" alt=\"\" data-id=\"219\" data-link=\"https://www.ingivision.com/2020/09/16/fruit-logistica-2021/whatsapp-image-2020-09-15-at-12-01-06-1/\" class=\"wp-image-219\"/></figure></li><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.05-1024x768.jpeg\" alt=\"\" data-id=\"220\" data-full-url=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.05.jpeg\" data-link=\"https://www.ingivision.com/2020/09/16/fruit-logistica-2021/whatsapp-image-2020-09-15-at-12-01-05/\" class=\"wp-image-220\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:39:29','2020-09-18 08:39:29','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(222,1,'2020-09-18 08:40:14','2020-09-18 08:40:14','<!-- wp:gallery {\"ids\":[219]} -->\n<figure class=\"wp-block-gallery columns-1 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1-1024x768.jpeg\" alt=\"\" data-id=\"219\" data-link=\"https://www.ingivision.com/2020/09/16/fruit-logistica-2021/whatsapp-image-2020-09-15-at-12-01-06-1/\" class=\"wp-image-219\"/></figure></li></ul></figure>\n<!-- /wp:gallery -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:40:14','2020-09-18 08:40:14','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(223,1,'2020-09-18 08:41:19','2020-09-18 08:41:19','<!-- wp:image {\"id\":219,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1-1024x768.jpeg\" alt=\"ingivision en Fruit Logistica 2020\" class=\"wp-image-219\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:41:19','2020-09-18 08:41:19','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(224,1,'2020-09-18 08:41:59','2020-09-18 08:41:59','<!-- wp:image {\"id\":219,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1-1024x768.jpeg\" alt=\"ingivision en Fruit Logistica 2020\" class=\"wp-image-219\"/><figcaption>Ingivision en Fruit Logistica 2020</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 08:41:59','2020-09-18 08:41:59','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(227,1,'2020-09-18 11:29:32','2020-09-18 11:29:32','<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 11:29:32','2020-09-18 11:29:32','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(228,1,'2020-09-18 11:46:40','2020-09-18 11:46:40','<!-- wp:image {\"id\":219,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1-1024x768.jpeg\" alt=\"ingivision en Fruit Logistica 2020\" class=\"wp-image-219\"/><figcaption>Ingivision en Fruit Logistica 2020</figcaption></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-18 11:46:40','2020-09-18 11:46:40','',203,'https://www.ingivision.com/2020/09/18/203-revision-v1/',0,'revision','',0),(229,1,'2020-09-20 17:54:02','2020-09-20 17:54:02','info@admirae.es\nadmirae360','info@admirae.es','','publish','closed','closed','','info-admirae-es','','','2020-09-20 17:54:02','2020-09-20 17:54:02','',0,'https://www.ingivision.com/2020/09/20/info-admirae-es/',0,'flamingo_contact','',0),(231,0,'2020-09-20 19:32:31','2020-09-20 19:32:31','<blockquote class=\"wp-embedded-content\" data-secret=\"TyG7eZb7Rm\"><a href=\"https://www.ingivision.com/contacto/\">Contacto</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contacto» — Ingivision\" src=\"https://www.ingivision.com/contacto/embed/#?secret=TyG7eZb7Rm\" data-secret=\"TyG7eZb7Rm\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','1e100c34eb7ae272e0da72759893f8c6','','','2020-09-20 19:32:31','2020-09-20 19:32:31','',0,'https://www.ingivision.com/2020/09/20/1e100c34eb7ae272e0da72759893f8c6/',0,'oembed_cache','',0),(232,0,'2020-09-20 19:32:31','2020-09-20 19:32:31','<blockquote class=\"wp-embedded-content\" data-secret=\"aCRxKf0nMT\"><a href=\"https://www.ingivision.com/\">Inicio</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Inicio» — Ingivision\" src=\"https://www.ingivision.com/embed/#?secret=aCRxKf0nMT\" data-secret=\"aCRxKf0nMT\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','807fa3544382f14a6747428fe6bff708','','','2020-09-20 19:32:31','2020-09-20 19:32:31','',0,'https://www.ingivision.com/2020/09/20/807fa3544382f14a6747428fe6bff708/',0,'oembed_cache','',0),(236,0,'2020-10-28 19:01:06','2020-10-28 19:01:06','franmur@gmail.com\npaco','franmur@gmail.com','','publish','closed','closed','','franmur-gmail-com','','','2020-10-28 19:01:06','2020-10-28 19:01:06','',0,'https://www.ingivision.com/?post_type=flamingo_contact&#038;p=236',0,'flamingo_contact','',0),(238,0,'2020-09-20 19:48:46','2020-09-20 19:48:46','no-replyKr@gmail.com\nJoshuaKer','no-replyKr@gmail.com','','publish','closed','closed','','no-replykr-gmail-com','','','2020-09-20 19:48:46','2020-09-20 19:48:46','',0,'https://www.ingivision.com/?post_type=flamingo_contact&p=238',0,'flamingo_contact','',0),(241,0,'2020-09-20 20:45:31','2020-09-20 20:45:31','example@example.com\nyour-name','example@example.com','','publish','closed','closed','','example-example-com','','','2020-09-20 20:45:31','2020-09-20 20:45:31','',0,'https://www.ingivision.com/?post_type=flamingo_contact&p=241',0,'flamingo_contact','',0),(247,0,'2020-09-21 02:23:03','2020-09-21 02:23:03','{{unknown}}','','','publish','closed','closed','','fda9300e3022540144dcf545f999aeb5','','','2020-09-21 02:23:03','2020-09-21 02:23:03','',0,'https://www.ingivision.com/2020/09/21/fda9300e3022540144dcf545f999aeb5/',0,'oembed_cache','',0),(250,0,'2020-09-21 06:47:26','2020-09-21 06:47:26','{{unknown}}','','','publish','closed','closed','','0f398367b1f062b87e650873d5417298','','','2020-09-21 06:47:26','2020-09-21 06:47:26','',0,'https://www.ingivision.com/2020/09/21/0f398367b1f062b87e650873d5417298/',0,'oembed_cache','',0),(251,1,'2020-09-21 07:23:32','2020-09-21 07:23:32','<!-- wp:heading -->\n<h2><strong>¿Está afectando la pandemia a las grandes ferias de nuestro sector?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><em>Fruit Attraction 2020 será solo telepresencial en octubre</em></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Con este titular nos levantamos hace poco más de una semana.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por primera vez en su historia, la 12ª edición del evento será telepresencial y a través de una plataforma tecnológica: <strong>Fruit Attraction LIVEConnect</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Inicialmente nos planteamos la posibilidad de “teleasistir”, aunque finalmente hemos decidido no hacerlo. Bajo nuetro punto de vista, la finalidad de las ferias es siempre el contacto directo y personal con el cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos fijos desde hace años en Fruit Logística Berlín, pero ante la situación de incertidumbre de estos últimos meses, hemos recabado información de otras grandes citas mundiales para contártelo todo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo afecta esta crisis a los eventos comerciales internacionales?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ante la situación de incertidumbre que sigue generando la pandemia, hemos echado un vistazo a las ferias y eventos internacionales relacionados con el sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo es conocer cómo se van a abordar en los próximos meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De forma generalizada, las ferias del sector están siendo <strong>suspendidas</strong>, <strong>aplazadas</strong> o bien se está optando por la modalidad <strong>online y telepresencial</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero vamos a verlo con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Attraction 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como ya hemos comentado, desde la principal feria del sector hortofrutícola de nuestro país se han decantado por una versión online y telepresencial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El evento en esta ocasión durará mucho más de lo que acostumbra, alargándose durante todo el mes de octubre: 31 días de congresos, jornadas, sesiones y seminarios, según su página web.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá por ello las tarifas son muy similares a las que se barajan en eventos presenciales de este tipo:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2 modalidades&nbsp; de participación: basic 3000€ o premium 7000€.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ambas modalidades incluyen un bono/descuento automático de 1.000€ netos en la participación para Fruit Attraction 2021</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a estar muy pendientes de cómo se desarrolla Fruit Attraction este año y de las reacciones y comentarios de los “asistentes” del sector. ¿Quién sabe si el futuro nos depara grandes eventos online a partir de ahora?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Macfrut Digital 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Macfrut apostó ya en mayo por una edición digital en 2020, entre el 8 y el 10 de septiembre y, según han confirmado, colgaron el cartel de “completo”.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>400 expositores, 10 pabellones, y gran presencia de empresas chinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto a firmas hortofrutícolas, reinaron las firmas italianas quitándole carácter internacional al evento en ese aspecto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un stand para los tres días de feria costaba 1.000€ y se componía de: una ficha con descripción de la empresa, logotipo, galería de imágenes, vídeo de presentación de 56 minutos y línea de B2B para gestionar la agenda de reuniones.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Complementaban las actividades los foros abiertos en inglés o italiano. La plataforma ha sido definida por los usuarios como muy intuitiva y usable.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Asia Fruit Logistica 2020</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Otra de las grandes que se apunta a la tele asistencia. En esta ocasión, se celebra en noviembre, bajo el nombre: ASIA FRUIT LOGISTICA ON.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En su web, nos presentan el nuevo formato de evento digital: <strong>una sofisticada plataforma que conecta a los expositores con compradores y vendedores en Asia</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Es un espacio online para miles de expositores y visitantes que permitirá establecer nuevas conexiones, reunirse, organizar reuniones formales de negocios, discutir ofertas y planificar la temporada que se avecina.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Han establecido tres tipologías de tarifas: ON Business, ON Premium, ON Corporate que van desde los 1500 € a los 10.000 €.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>No somos asiduos a la versión asiática de Fruit Logistica, pero estaremos atentos para ver cómo se desarrolla y contarte novedades en un post futuro si lo vemos interesante</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Fruit Logistica 2021 Berlín</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Parece que en esta ocasión (y en estos momentos, claro) sí habrá evento presencial.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria tendrá lugar, si el COVID19 no lo impide, en Berlín del 3 al 5 de febrero de 2021.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los organizadores confían en ello pero aseguran contemplar también otras opciones. Hacen bien, visto lo visto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por supuesto, afirman que la seguridad de expositores, visitantes y personal organizador es algo de máxima prioridad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros somos asiduos al evento en Berlín y consideramos Fruit Logistica uno de los eventos más efectivos como lugar de negocio para el sector hortofrutícola, ya que abarca todo el proceso de los productos frescos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En cuanto al coste de exponer, tienen un amplio abanico de precios que van desde los 3000 € a los 15.000 € dependiendo del tamaño y formato del stand.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>¿Cómo nos fue en la pasada edición de Fruit Logística 2020?</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En la pasada edición, el tema central era la sostenibilidad, una vez más. También estuvo marcada un poco por el miedo a la propagación del Covid-19, que en ese momento ya se conocía y que hizo que alrededor de la mitad de empresas chinas se retiraran. Otras mantuvieron sus stands pero atendidos por personal europeo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nosotros participamos por quinto año consecutivo en la edición 2020 de FruitLogistica.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como novedad estrella de este año, presentamos el nuevo sistema de detección de la calidad externa basado en nuevas tecnologías de autoaprendizaje sobre redes neuronales.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Se notó un incremento importante de visitantes interesados en sistemas plug&amp;play para máquinas de tamaño mediano y pequeño de hasta 4 canales. Hasta ahora, muchos de ellos montaban sistemas muy sofisticados de alto coste económico y tiempos de ajuste largos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Las dos soluciones de las que disponemos, una más completa que incluye los accionadores eléctricos de los motores y la más simple, solo con la parte de calibración, se adaptan perfectamente a esta situación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estamos trabajando con 4 nuevas compañías en Europa.&nbsp; Antes utilizaban productos de la competencia y ahora están instalando nuestro sistema en sus máquinas, tanto de nueva construcción como para actualizar el sistema electrónico de las ya existentes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La feria es muy importante para nosotros.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p><strong>Trabajamos en unos 25 países y este es el único momento del año en que nos vemos en persona con algunos de nuestros clientes.</strong></p></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>Notamos un incremento importante de la demanda de nuestro sistema en países de oriente medio y ex repúblicas soviéticas, también en países del norte de África.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Realizamos dos contactos muy importantes con dos empresas de referencia en Chile y Argentina con las que estamos desarrollando proyectos durante este 2020.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las restricciones e incertidumbre ocasionada por el problema de la pandemia, valoramos la participación en la feria muy positivamente, mucho más que la edición anterior de 2019.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En general, la <strong>calidad de las visitas fue mayor:</strong> profesionales con proyectos concretos y amplios conocimientos del sector frente a años anteriores en los que las visitas eran más de clientes finales y “curiosos” sin proyectos concretos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Observamos las tendencias en feria, y constatamos que la visión artificial está muy implantada en el sector de las frutas y hortalizas. De esta forma se inspecciona la apariencia del producto y se detectan defectos antes de la comercialización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También la estadística predictiva está permitiendo detectar la calidad y composición interna del fruto en la línea de calibrado. Vimos también máquinas capaces de detectar productos extraños o hueso mediante inspección por rayos X.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>También merecen mención los rayos de terahercios (rayos T) aunque hoy por hoy no sea aplicable a productos con alto contenido en agua porque ésta los atenúa. Los rayos T tienen propiedades similares a los rayos X, pero son menos peligrosos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2021 Un año incierto con muchos retos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En vista de la situación, el 2021 pinta incierto a nivel mundial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero somos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>&nbsp;El sector hortofrutícola en España se puso a prueba durante la pandemia y tuvo que adaptarse para garantizar el necesario abastecimiento de la población.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y lo hizo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Quizá esto da para otro post pero no cabe duda de que el entorno es cambiante.<br>Por eso tal vez haya que realizar los eventos de otra manera, adaptarse a otras formas de trabajar y de producir, pero lo haremos con paso firme.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Cómo afrontas tú y tu empresa el 2021? Estamos deseando leerte en comentarios.</p>\n<!-- /wp:paragraph -->','Fruit Logistica en 2021 ¿cómo será?','','inherit','closed','closed','','203-revision-v1','','','2020-09-21 07:23:32','2020-09-21 07:23:32','',203,'https://www.ingivision.com/2020/09/21/203-revision-v1/',0,'revision','',0),(265,0,'2020-09-22 11:37:37','2020-09-22 11:37:37','{{unknown}}','','','publish','closed','closed','','9b9f83c7ec06f263097986dbd5e92214','','','2020-09-22 11:37:37','2020-09-22 11:37:37','',0,'https://www.ingivision.com/2020/09/22/9b9f83c7ec06f263097986dbd5e92214/',0,'oembed_cache','',0),(266,0,'2020-09-22 11:37:38','2020-09-22 11:37:38','{{unknown}}','','','publish','closed','closed','','0c0483b73cb9e4decbcc0298fd828ecc','','','2020-09-22 11:37:38','2020-09-22 11:37:38','',0,'https://www.ingivision.com/2020/09/22/0c0483b73cb9e4decbcc0298fd828ecc/',0,'oembed_cache','',0),(267,0,'2020-09-22 11:37:38','2020-09-22 11:37:38','{{unknown}}','','','publish','closed','closed','','10987a4f4d1cd7faeaf510c10a81d450','','','2020-09-22 11:37:38','2020-09-22 11:37:38','',0,'https://www.ingivision.com/2020/09/22/10987a4f4d1cd7faeaf510c10a81d450/',0,'oembed_cache','',0),(268,0,'2020-09-22 11:37:39','2020-09-22 11:37:39','{{unknown}}','','','publish','closed','closed','','d9d92540c6f534545cf04501a18bf709','','','2020-09-22 11:37:39','2020-09-22 11:37:39','',0,'https://www.ingivision.com/2020/09/22/d9d92540c6f534545cf04501a18bf709/',0,'oembed_cache','',0),(269,0,'2020-09-22 11:37:40','2020-09-22 11:37:40','{{unknown}}','','','publish','closed','closed','','741197364304cae30b079d4d05811a37','','','2020-09-22 11:37:40','2020-09-22 11:37:40','',0,'https://www.ingivision.com/2020/09/22/741197364304cae30b079d4d05811a37/',0,'oembed_cache','',0),(270,0,'2020-09-22 11:37:41','2020-09-22 11:37:41','{{unknown}}','','','publish','closed','closed','','48a2459dec6de1da8130ea0bddeb9e4d','','','2020-09-22 11:37:41','2020-09-22 11:37:41','',0,'https://www.ingivision.com/2020/09/22/48a2459dec6de1da8130ea0bddeb9e4d/',0,'oembed_cache','',0),(271,0,'2020-09-22 11:37:41','2020-09-22 11:37:41','{{unknown}}','','','publish','closed','closed','','4848026ee17ce4de746cd295d50a9b49','','','2020-09-22 11:37:41','2020-09-22 11:37:41','',0,'https://www.ingivision.com/2020/09/22/4848026ee17ce4de746cd295d50a9b49/',0,'oembed_cache','',0),(290,0,'2020-09-24 02:23:57','2020-09-24 02:23:57','{{unknown}}','','','publish','closed','closed','','586220d07e318f25997cc5bf9b348d74','','','2020-09-24 02:23:57','2020-09-24 02:23:57','',0,'https://www.ingivision.com/2020/09/24/586220d07e318f25997cc5bf9b348d74/',0,'oembed_cache','',0),(294,0,'2020-09-24 09:17:41','2020-09-24 09:17:41','{{unknown}}','','','publish','closed','closed','','0445a434cf608f4b1bc3f2c4023fdaae','','','2020-09-24 09:17:41','2020-09-24 09:17:41','',0,'https://www.ingivision.com/2020/09/24/0445a434cf608f4b1bc3f2c4023fdaae/',0,'oembed_cache','',0),(298,1,'2020-09-24 18:13:01','2020-09-24 18:13:01','<!-- wp:heading -->\n<h2></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Services','','inherit','closed','closed','','103-revision-v1','','','2020-09-24 18:13:01','2020-09-24 18:13:01','',103,'https://www.ingivision.com/2020/09/24/103-revision-v1/',0,'revision','',0),(315,0,'2020-09-28 13:51:15','2020-09-28 13:51:15','<blockquote class=\"wp-embedded-content\" data-secret=\"SNYtpeOyb4\"><a href=\"https://offeramazon.ru/2020/09/25/xrumer/\">Xrumer</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Xrumer» &#8212; HookahMagic\" src=\"https://offeramazon.ru/2020/09/25/xrumer/embed/#?secret=SNYtpeOyb4\" data-secret=\"SNYtpeOyb4\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a91ac010620eb2e02e226b9b9a5d0add','','','2020-09-28 13:51:15','2020-09-28 13:51:15','',0,'https://www.ingivision.com/2020/09/28/a91ac010620eb2e02e226b9b9a5d0add/',0,'oembed_cache','',0),(317,0,'2020-09-28 15:59:19','2020-09-28 15:59:19','{{unknown}}','','','publish','closed','closed','','8beb9cebfa696b76aff2a82f1e59a043','','','2020-09-28 15:59:19','2020-09-28 15:59:19','',0,'https://www.ingivision.com/2020/09/28/8beb9cebfa696b76aff2a82f1e59a043/',0,'oembed_cache','',0),(318,0,'2020-09-28 15:59:24','2020-09-28 15:59:24','<blockquote class=\"wp-embedded-content\" data-secret=\"PG15u40lcU\"><a href=\"https://www.monkeydigital.co/product/moz-da60-seo-plan/\">MOZ DA60 SEO plan</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;MOZ DA60 SEO plan&#8221; &#8212; Monkey Digital\" src=\"https://www.monkeydigital.co/product/moz-da60-seo-plan/embed/#?secret=PG15u40lcU\" data-secret=\"PG15u40lcU\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','a23c5eb595767acca21711eb49ded64a','','','2020-09-28 15:59:24','2020-09-28 15:59:24','',0,'https://www.ingivision.com/2020/09/28/a23c5eb595767acca21711eb49ded64a/',0,'oembed_cache','',0),(376,0,'2020-10-02 04:44:23','2020-10-02 04:44:23','{{unknown}}','','','publish','closed','closed','','0139a1ff5c3cff738be9a87aedc42ad5','','','2020-10-02 04:44:23','2020-10-02 04:44:23','',0,'https://www.ingivision.com/2020/10/02/0139a1ff5c3cff738be9a87aedc42ad5/',0,'oembed_cache','',0),(381,0,'2020-10-02 09:24:54','2020-10-02 09:24:54','{{unknown}}','','','publish','closed','closed','','a752d1403056268b81c6184ad2ece543','','','2020-10-02 09:24:54','2020-10-02 09:24:54','',0,'https://www.ingivision.com/2020/10/02/a752d1403056268b81c6184ad2ece543/',0,'oembed_cache','',0),(384,0,'2020-10-02 20:39:59','2020-10-02 20:39:59','{{unknown}}','','','publish','closed','closed','','9f504cdd4402cceb67ac0af4f051af51','','','2020-10-02 20:39:59','2020-10-02 20:39:59','',0,'https://www.ingivision.com/2020/10/02/9f504cdd4402cceb67ac0af4f051af51/',0,'oembed_cache','',0),(389,0,'2020-10-02 23:31:17','2020-10-02 23:31:17','<blockquote class=\"wp-embedded-content\" data-secret=\"htAvY2sdFX\"><a href=\"https://www.hilkom-digital.de/cheap-seo-packages/\">SEO Pricing</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;SEO Pricing&#8221; &#8212; Hilkom Digital\" src=\"https://www.hilkom-digital.de/cheap-seo-packages/embed/#?secret=htAvY2sdFX\" data-secret=\"htAvY2sdFX\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','e35fa63e8e9ac3fb8b41f7c0766840b1','','','2020-10-02 23:31:17','2020-10-02 23:31:17','',0,'https://www.ingivision.com/2020/10/02/e35fa63e8e9ac3fb8b41f7c0766840b1/',0,'oembed_cache','',0),(413,0,'2020-10-05 02:54:19','2020-10-05 02:54:19','{{unknown}}','','','publish','closed','closed','','2568ac4e673a39b2efdc19342b3845e0','','','2020-10-05 02:54:19','2020-10-05 02:54:19','',0,'https://www.ingivision.com/2020/10/05/2568ac4e673a39b2efdc19342b3845e0/',0,'oembed_cache','',0),(421,0,'2020-10-05 17:35:58','2020-10-05 17:35:58','{{unknown}}','','','publish','closed','closed','','164319ad438807a3096b53c28374f78c','','','2020-10-05 17:35:58','2020-10-05 17:35:58','',0,'https://www.ingivision.com/2020/10/05/164319ad438807a3096b53c28374f78c/',0,'oembed_cache','',0),(422,0,'2020-10-05 17:35:59','2020-10-05 17:35:59','{{unknown}}','','','publish','closed','closed','','b85f10370944c95b73cc88a1accff198','','','2020-10-05 17:35:59','2020-10-05 17:35:59','',0,'https://www.ingivision.com/2020/10/05/b85f10370944c95b73cc88a1accff198/',0,'oembed_cache','',0),(423,0,'2020-10-05 17:35:59','2020-10-05 17:35:59','{{unknown}}','','','publish','closed','closed','','51d685381900db9a700544cb9968bc49','','','2020-10-05 17:35:59','2020-10-05 17:35:59','',0,'https://www.ingivision.com/2020/10/05/51d685381900db9a700544cb9968bc49/',0,'oembed_cache','',0),(424,0,'2020-10-05 17:36:00','2020-10-05 17:36:00','{{unknown}}','','','publish','closed','closed','','b0da5c3aeab8957e1cfbe059438bf720','','','2020-10-05 17:36:00','2020-10-05 17:36:00','',0,'https://www.ingivision.com/2020/10/05/b0da5c3aeab8957e1cfbe059438bf720/',0,'oembed_cache','',0),(425,0,'2020-10-05 17:36:01','2020-10-05 17:36:01','{{unknown}}','','','publish','closed','closed','','2cd0f6f407be54e12270f87f466eabc6','','','2020-10-05 17:36:01','2020-10-05 17:36:01','',0,'https://www.ingivision.com/2020/10/05/2cd0f6f407be54e12270f87f466eabc6/',0,'oembed_cache','',0),(432,0,'2020-10-05 22:37:46','2020-10-05 22:37:46','{{unknown}}','','','publish','closed','closed','','6f0003c28d7e93dee0c6b88f35891323','','','2020-10-05 22:37:46','2020-10-05 22:37:46','',0,'https://www.ingivision.com/2020/10/05/6f0003c28d7e93dee0c6b88f35891323/',0,'oembed_cache','',0),(445,0,'2020-10-06 18:39:22','2020-10-06 18:39:22','{{unknown}}','','','publish','closed','closed','','19248a9f178d0910606ad3ebe0ed3f0a','','','2020-10-06 18:39:22','2020-10-06 18:39:22','',0,'https://www.ingivision.com/2020/10/06/19248a9f178d0910606ad3ebe0ed3f0a/',0,'oembed_cache','',0),(446,0,'2020-10-06 18:39:23','2020-10-06 18:39:23','{{unknown}}','','','publish','closed','closed','','4cd7c08170c432d8de8227975464ffb8','','','2020-10-06 18:39:23','2020-10-06 18:39:23','',0,'https://www.ingivision.com/2020/10/06/4cd7c08170c432d8de8227975464ffb8/',0,'oembed_cache','',0),(447,0,'2020-10-06 18:39:24','2020-10-06 18:39:24','{{unknown}}','','','publish','closed','closed','','dec67dd54718c837c5211300ee021691','','','2020-10-06 18:39:24','2020-10-06 18:39:24','',0,'https://www.ingivision.com/2020/10/06/dec67dd54718c837c5211300ee021691/',0,'oembed_cache','',0),(448,0,'2020-10-06 18:39:24','2020-10-06 18:39:24','{{unknown}}','','','publish','closed','closed','','1881d56777014bf115648cc72549d1ab','','','2020-10-06 18:39:24','2020-10-06 18:39:24','',0,'https://www.ingivision.com/2020/10/06/1881d56777014bf115648cc72549d1ab/',0,'oembed_cache','',0),(449,0,'2020-10-06 18:39:25','2020-10-06 18:39:25','{{unknown}}','','','publish','closed','closed','','ec8765a2dd7c39057c4c99768ed7d44b','','','2020-10-06 18:39:25','2020-10-06 18:39:25','',0,'https://www.ingivision.com/2020/10/06/ec8765a2dd7c39057c4c99768ed7d44b/',0,'oembed_cache','',0),(451,0,'2020-10-06 19:51:12','2020-10-06 19:51:12','{{unknown}}','','','publish','closed','closed','','8aee2573e3667d55e269a84421f47e69','','','2020-10-06 19:51:12','2020-10-06 19:51:12','',0,'https://www.ingivision.com/2020/10/06/8aee2573e3667d55e269a84421f47e69/',0,'oembed_cache','',0),(452,0,'2020-10-06 19:51:12','2020-10-06 19:51:12','{{unknown}}','','','publish','closed','closed','','cec38b2ef8732e1a611e8774bfa5f35c','','','2020-10-06 19:51:12','2020-10-06 19:51:12','',0,'https://www.ingivision.com/2020/10/06/cec38b2ef8732e1a611e8774bfa5f35c/',0,'oembed_cache','',0),(453,0,'2020-10-06 19:51:13','2020-10-06 19:51:13','{{unknown}}','','','publish','closed','closed','','3e2695ab21ada130e4ba26df889dbee9','','','2020-10-06 19:51:13','2020-10-06 19:51:13','',0,'https://www.ingivision.com/2020/10/06/3e2695ab21ada130e4ba26df889dbee9/',0,'oembed_cache','',0),(454,0,'2020-10-06 19:51:13','2020-10-06 19:51:13','{{unknown}}','','','publish','closed','closed','','3f324f144ed41ab7813047ea954d42d9','','','2020-10-06 19:51:13','2020-10-06 19:51:13','',0,'https://www.ingivision.com/2020/10/06/3f324f144ed41ab7813047ea954d42d9/',0,'oembed_cache','',0),(455,0,'2020-10-06 19:51:13','2020-10-06 19:51:13','{{unknown}}','','','publish','closed','closed','','627b14ae21aa01eab1f02cd2e8734568','','','2020-10-06 19:51:13','2020-10-06 19:51:13','',0,'https://www.ingivision.com/2020/10/06/627b14ae21aa01eab1f02cd2e8734568/',0,'oembed_cache','',0),(459,0,'2020-10-07 03:28:10','2020-10-07 03:28:10','{{unknown}}','','','publish','closed','closed','','82be062061391ebbb5c5f82dbe40404a','','','2020-10-07 03:28:10','2020-10-07 03:28:10','',0,'https://www.ingivision.com/2020/10/07/82be062061391ebbb5c5f82dbe40404a/',0,'oembed_cache','',0),(465,0,'2020-10-07 20:30:41','2020-10-07 20:30:41','{{unknown}}','','','publish','closed','closed','','f10db88699c64f8079b1858f7c589487','','','2020-10-07 20:30:41','2020-10-07 20:30:41','',0,'https://www.ingivision.com/2020/10/07/f10db88699c64f8079b1858f7c589487/',0,'oembed_cache','',0),(483,0,'2020-10-09 00:35:49','2020-10-09 00:35:49','<iframe title=\"Как становятся бизнесменами. С чего начать начинающему бизнесмену. Первый опыт в бизнесе. | Часть 1\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/vrp4kyuT8vo?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','b15ac287e137f7ad3c678429c2f8c983','','','2020-10-09 00:35:49','2020-10-09 00:35:49','',0,'https://www.ingivision.com/2020/10/09/b15ac287e137f7ad3c678429c2f8c983/',0,'oembed_cache','',0),(498,0,'2020-10-09 22:03:49','2020-10-09 22:03:49','{{unknown}}','','','publish','closed','closed','','907b12c163873e68e4e3545507dbceb2','','','2020-10-09 22:03:49','2020-10-09 22:03:49','',0,'https://www.ingivision.com/2020/10/09/907b12c163873e68e4e3545507dbceb2/',0,'oembed_cache','',0),(499,0,'2020-10-09 22:03:49','2020-10-09 22:03:49','{{unknown}}','','','publish','closed','closed','','b928926229a73f5023959b384bf9f022','','','2020-10-09 22:03:49','2020-10-09 22:03:49','',0,'https://www.ingivision.com/2020/10/09/b928926229a73f5023959b384bf9f022/',0,'oembed_cache','',0),(500,0,'2020-10-09 22:03:49','2020-10-09 22:03:49','{{unknown}}','','','publish','closed','closed','','bfb4df1207f83962a1c738148998a7b6','','','2020-10-09 22:03:49','2020-10-09 22:03:49','',0,'https://www.ingivision.com/2020/10/09/bfb4df1207f83962a1c738148998a7b6/',0,'oembed_cache','',0),(501,0,'2020-10-09 22:03:49','2020-10-09 22:03:49','{{unknown}}','','','publish','closed','closed','','f99c9fce211a0330340778fb4acf58ab','','','2020-10-09 22:03:49','2020-10-09 22:03:49','',0,'https://www.ingivision.com/2020/10/09/f99c9fce211a0330340778fb4acf58ab/',0,'oembed_cache','',0),(502,0,'2020-10-09 22:03:50','2020-10-09 22:03:50','{{unknown}}','','','publish','closed','closed','','c926fd5608b0922d59480eff208d1d36','','','2020-10-09 22:03:50','2020-10-09 22:03:50','',0,'https://www.ingivision.com/2020/10/09/c926fd5608b0922d59480eff208d1d36/',0,'oembed_cache','',0),(509,0,'2020-10-10 03:36:35','2020-10-10 03:36:35','<blockquote class=\"wp-embedded-content\" data-secret=\"FnkJgBkOxO\"><a href=\"http://mhdcharityfoundation.com/\">ABOUT US</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;ABOUT US&#8221; &#8212; \" src=\"http://mhdcharityfoundation.com/embed/#?secret=FnkJgBkOxO\" data-secret=\"FnkJgBkOxO\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','c2e0f2b0e4d332c3d5c38b4db5dbcb1a','','','2020-10-10 03:36:35','2020-10-10 03:36:35','',0,'https://www.ingivision.com/2020/10/10/c2e0f2b0e4d332c3d5c38b4db5dbcb1a/',0,'oembed_cache','',0),(515,0,'2020-10-10 18:25:00','2020-10-10 18:25:00','{{unknown}}','','','publish','closed','closed','','f4151dd9977d98cebc4e4960ede1ff31','','','2020-10-10 18:25:00','2020-10-10 18:25:00','',0,'https://www.ingivision.com/2020/10/10/f4151dd9977d98cebc4e4960ede1ff31/',0,'oembed_cache','',0),(516,0,'2020-10-10 18:25:00','2020-10-10 18:25:00','{{unknown}}','','','publish','closed','closed','','3ed7ea21304f14cf3bdfa267a1ca311c','','','2020-10-10 18:25:00','2020-10-10 18:25:00','',0,'https://www.ingivision.com/2020/10/10/3ed7ea21304f14cf3bdfa267a1ca311c/',0,'oembed_cache','',0),(517,0,'2020-10-10 18:25:00','2020-10-10 18:25:00','{{unknown}}','','','publish','closed','closed','','4079b461ef1ba7f107d0f01a17395e75','','','2020-10-10 18:25:00','2020-10-10 18:25:00','',0,'https://www.ingivision.com/2020/10/10/4079b461ef1ba7f107d0f01a17395e75/',0,'oembed_cache','',0),(549,0,'2020-10-13 00:21:14','2020-10-13 00:21:14','{{unknown}}','','','publish','closed','closed','','28caa9076e54b4ca6c53a4d5c267106d','','','2020-10-13 00:21:14','2020-10-13 00:21:14','',0,'https://www.ingivision.com/2020/10/13/28caa9076e54b4ca6c53a4d5c267106d/',0,'oembed_cache','',0),(556,0,'2020-10-13 12:26:36','2020-10-13 12:26:36','{{unknown}}','','','publish','closed','closed','','e4e0721ff67f6b5dce98d72ff406487d','','','2020-10-13 12:26:36','2020-10-13 12:26:36','',0,'https://www.ingivision.com/2020/10/13/e4e0721ff67f6b5dce98d72ff406487d/',0,'oembed_cache','',0),(558,0,'2020-10-13 13:00:05','2020-10-13 13:00:05','{{unknown}}','','','publish','closed','closed','','e9da30b9edb5ad6d007fa6b468621e8e','','','2020-10-13 13:00:05','2020-10-13 13:00:05','',0,'https://www.ingivision.com/2020/10/13/e9da30b9edb5ad6d007fa6b468621e8e/',0,'oembed_cache','',0),(561,0,'2020-10-13 17:10:53','2020-10-13 17:10:53','eugacemu@gmail.com\nEugenio Acevedo','eugacemu@gmail.com','','publish','closed','closed','','eugacemu-gmail-com','','','2020-10-13 17:10:53','2020-10-13 17:10:53','',0,'https://www.ingivision.com/?post_type=flamingo_contact&p=561',0,'flamingo_contact','',0),(562,0,'2020-10-13 17:10:52','2020-10-13 17:10:52','Eugenio Acevedo\neugacemu@gmail.com\n+57 3146108171\nPresupuesto\nHola Vicente, no sé si me recuerdas, soy Eugenio Acevedo, nos conocimos a través de Danilo Bastoni.\r\nEspero que te encuentres muy bien, al igual que toda tu familia.\r\n\r\nLo que pasa es que tengo un cliente interesado en una maquina para clasificar tomate cherry en tres tamaños y tres colores cada tamaño. quería saber si puedes cotizarme la electronica para esto. Toda la maquina es de Danilo, asi que es la misma maquina que he visto por ahí en tus videos.\r\nSería 9 + 1 salidas.\r\n\r\nNecesito pasarle el presupuesto a mi cliente lo mas rapido posible.\r\n\r\nYo ya no trabajo para agrosermaq, ahora tengo mi propia empresa, se llama Eutech SAS.\r\n\r\nQuedo atento, \r\n\r\nHasta pronto.\n7\n191.95.154.197\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.75 Safari/537.36\nhttps://www.ingivision.com/contacto/\n13 de octubre de 2020\n17:10\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','Presupuesto','','publish','closed','closed','','presupuesto','','','2020-10-13 17:10:52','2020-10-13 17:10:52','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=562',0,'flamingo_inbound','',0),(577,1,'2020-10-15 17:24:03','2020-10-15 17:24:03','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizamos todas las claves del control de calidad en frutas y verduras. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Nos referimos a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogénea y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2020-10-15 17:24:03','2020-10-15 17:24:03','',71,'https://www.ingivision.com/2020/10/15/71-revision-v1/',0,'revision','',0),(582,1,'2020-10-15 21:56:09','2020-10-15 21:56:09','<!-- wp:paragraph -->\n<p>Si eres empresario del sector, te hacemos esta pregunta: ¿te gusta perder parte de tu producto?<br>La respuesta de cualquiera es un rotundo no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero sabes que es algo casi intrínseco en las frutas y las hortalizas: algunas se descartan incluso en el propio árbol, y no dejamos de perder producto a lo largo de todo el proceso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Sigue leyendo porque en el post de hoy te contamos los motivos por los que necesitas un buen procedimiento de clasificación de frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué es un software de clasificación de frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Es un programa informático que permite la separación y clasificación de las frutas y hortalizas según unos parámetros como pueden ser el peso, el color, la forma, o la calidad externa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ya supones, presenta muchas ventajas con respecto a la clasificación manual, pero vamos a profundizar en cada una de ellas y a verlas con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Beneficios de utilizar un software de clasificación</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un software de clasificación de frutas puede darnos muchísima información sobre nuestro producto, y ya sabes el dicho «la información es poder».<br><strong><br></strong>Las ventajas son muchas. A continuación te contamos las 3 principales:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Minimizar la pérdida de producto (ahorro)</strong>.</li><li><strong>Detectar síntomas de podredumbre, golpes y otros defectos.</strong></li><li><strong>Separar la fruta y establecer diferentes calidades y categorías.</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Veámoslas con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>1. <strong>Minimizar la pérdida de producto (ahorro)</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Podemos afirmar que la no clasificación disminuye la posibilidad de aumentar ingresos.<br>Hoy en día es impensable que las cooperativas y centrales hortofrutícolas no clasifiquen, pues las pérdidas de producto resultan enormes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por ejemplo, los productores de frutas que envasan para venta directa al público, se ven en la obligación de igualar o superar el peso que marca el embalaje. Esto implica que siempre deberán sobrepasar ese peso objetivo, por lo que siempre habrá una pérdida más o menos grande de producto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cuanto más ajusten al peso marcado mejor se aprovecha el producto y mayores beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tener el producto separado y clasificado por peso y tamaño resulta en este caso más que interesante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2. <strong>Detectar síntomas de podredumbre, golpes y otros defectos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El beneficio directo de esto es asegurar la calidad del producto y de nuevo disminuir su pérdida.<br><br>Como sabes, la madurez de un fruto está relacionada con la vida de almacenamiento y también con el crecimiento de la fruta: el fruto termina su crecimiento y desarrolla el aroma y el sabor, pasando a ser comestible.<br><br>Es crucial en este punto saber separar y clasificar la fruta, por maduración, pero también poder detectar síntomas de podredumbre, golpes mecánicos producidos durante la recogida y transporte, y cualquier otro defecto.<br><br>¿Por qué? Ni más ni menos que para evitar que se propague la podredumbre al resto del producto. Como dice el refrán «una retirada a tiempo es una victoria».</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Por lo tanto, de nuevo, ahorramos producto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>3. <strong>Separar la fruta y establecer diferentes calidades y categorías</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El último gran motivo o ventaja por la que utilizar un buen software de calibrado de frutas. <br><strong><br></strong>Agrupar las frutas por tamaño, peso, tipo de madurez (color, densidad) y calidad externa te va a permitir poder establecer las categorías comerciales en tu producto que están fijadas por ley:<br>Extra, I y II en base a criterios como defectos admisibles, coloración, forma, daños por manipulación etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dependiendo de esas categorías, el precio variará, por lo que un software de calibrado preciso puede facilitarnos mucho el camino hacia la mejora continua y la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>El consumidor, el gran beneficiado</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Todo este proceso beneficia al productor pero obviamente también al consumidor. <br><br>Al principio de <a href=\"https://www.ingivision.com/2020/08/04/que-es-control-de-calidad-en-frutas/\">este otro post </a>te apuntábamos este dato: «El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto». (Fuente: YouGov para Alimarket Gran Consumo)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Un 24% compra fruta y verdura ¡por el aspecto!.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque el aspecto puede no tener relación directa con la calidad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hay que tener en cuenta que no es lo mismo defecto físico de forma que una lesión producida durante el proceso de recogida, transporte etc.<br>En estos casos, una grieta en la fruta podría convertirse en la puerta de entrada a patógenos causantes de podredumbres.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero en muchos otros casos, los defectos de frutas y verduras no afectan a sus cualidades comestibles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pese a esto, es tendencia generalizada asociar un producto sin defectos a una mayor frescura, por lo que el aspecto del producto es, y va a seguir siendo, algo fundamental en el futuro del sector.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo lo que te hemos contado es importante apostar por un buen software de clasificación de frutas y hortalizas.<br><br>Desde ingivision te animamos a conocer nuestras <a href=\"https://www.ingivision.com/productos/\">tres opciones de sistemas electrónicos de fácil manejo</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y si crees que se nos ha pasado comentar algún beneficio, o te surge cualquier consulta, no dudes en dejar tu comentario. Estaremos encantados de conocerte y contestar.<br>¡Nos leemos!</p>\n<!-- /wp:paragraph -->','Tres motivos por los que necesitas un software de clasificación de frutas y hortalizas','','publish','open','open','','software-clasificacion-frutas','','','2020-10-15 21:56:10','2020-10-15 21:56:10','',0,'https://www.ingivision.com/?p=582',0,'post','',0),(584,1,'2020-10-15 21:43:25','2020-10-15 21:43:25','<!-- wp:paragraph -->\n<p>Si eres empresario del sector, te hacemos esta pregunta: ¿te gusta perder parte de tu producto?<br>La respuesta de cualquiera es un rotundo no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero sabes que es algo casi intrínseco en las frutas y las hortalizas: algunas se descartan incluso en el propio árbol, y no dejamos de perder producto a lo largo de todo el proceso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Sigue leyendo porque en el post de hoy te contamos los motivos por los que necesitas un buen procedimiento de clasificación de frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué es un software de clasificación de frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Es un programa informático que permite la separación y clasificación de las frutas y hortalizas según unos parámetros como pueden ser el peso, el color, la forma, o la calidad externa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ya supones, presenta muchas ventajas con respecto a la clasificación manual, pero vamos a profundizar en cada una de ellas y a verlas con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Beneficios de utilizar un software de clasificación</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un software de clasificación de frutas puede darnos muchísima información sobre nuestro producto, y ya sabes el dicho «la información es poder».<br><strong><br></strong>Las ventajas son muchas. A continuación te contamos las 3 principales:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Minimizar la pérdida de producto (ahorro)</strong>.</li><li><strong>Detectar síntomas de podredumbre, golpes y otros defectos.</strong></li><li><strong>Separar la fruta y establecer diferentes calidades y categorías.</strong></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Veámoslas con detalle.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>1. <strong>Minimizar la pérdida de producto (ahorro)</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Podemos afirmar que la no clasificación disminuye la posibilidad de aumentar ingresos.<br>Hoy en día es impensable que las cooperativas y centrales hortofrutícolas no clasifiquen, pues las pérdidas de producto resultan enormes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por ejemplo, los productores de frutas que envasan para venta directa al público, se ven en la obligación de igualar o superar el peso que marca el embalaje. Esto implica que siempre deberán sobrepasar ese peso objetivo, por lo que siempre habrá una pérdida más o menos grande de producto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cuanto más ajusten al peso marcado mejor se aprovecha el producto y mayores beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Tener el producto separado y clasificado por peso y tamaño resulta en este caso más que interesante.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>2. <strong>Detectar síntomas de podredumbre, golpes y otros defectos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El beneficio directo de esto es asegurar la calidad del producto y de nuevo disminuir su pérdida.<br><br>Como sabes, la madurez de un fruto está relacionada con la vida de almacenamiento y también con el crecimiento de la fruta: el fruto termina su crecimiento y desarrolla el aroma y el sabor, pasando a ser comestible.<br><br>Es crucial en este punto saber separar y clasificar la fruta, por maduración, pero también poder detectar síntomas de podredumbre, golpes mecánicos producidos durante la recogida y transporte, y cualquier otro defecto.<br><br>¿Por qué? Ni más ni menos que para evitar que se propague la podredumbre al resto del producto. Como dice el refrán «una retirada a tiempo es una victoria».</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Por lo tanto, de nuevo, ahorramos producto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>3. <strong>Separar la fruta y establecer diferentes calidades y categorías</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El último gran motivo o ventaja por la que utilizar un buen software de calibrado de frutas. <br><strong><br></strong>Agrupar las frutas por tamaño, peso, tipo de madurez (color, densidad) y calidad externa te va a permitir poder establecer las categorías comerciales en tu producto que están fijadas por ley:<br>Extra, I y II en base a criterios como defectos admisibles, coloración, forma, daños por manipulación etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Dependiendo de esas categorías, el precio variará, por lo que un software de calibrado preciso puede facilitarnos mucho el camino hacia la mejora continua y la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>El consumidor, el gran beneficiado</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Todo este proceso beneficia al productor pero obviamente también al consumidor. <br><br>Al principio de <a href=\"https://www.ingivision.com/2020/08/04/que-es-control-de-calidad-en-frutas/\">este otro post </a>te apuntábamos este dato: «El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto». (Fuente: YouGov para Alimarket Gran Consumo)</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Un 24% compra fruta y verdura ¡por el aspecto!.</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Aunque el aspecto puede no tener relación directa con la calidad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hay que tener en cuenta que no es lo mismo defecto físico de forma que una lesión producida durante el proceso de recogida, transporte etc.<br>En estos casos, una grieta en la fruta podría convertirse en la puerta de entrada a patógenos causantes de podredumbres.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero en muchos otros casos, los defectos de frutas y verduras no afectan a sus cualidades comestibles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pese a esto, es tendencia generalizada asociar un producto sin defectos a una mayor frescura, por lo que el aspecto del producto es, y va a seguir siendo, algo fundamental en el futuro del sector.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo lo que te hemos contado es importante apostar por un buen software de clasificación de frutas y hortalizas.<br><br>Desde ingivision te animamos a conocer nuestras <a href=\"https://www.ingivision.com/productos/\">tres opciones de sistemas electrónicos de fácil manejo</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y si crees que se nos ha pasado comentar algún beneficio, o te surge cualquier consulta, no dudes en dejar tu comentario. Estaremos encantados de conocerte y contestar.<br>¡Nos leemos!</p>\n<!-- /wp:paragraph -->','Tres motivos por los que necesitas un software de clasificación de frutas y hortalizas','','inherit','closed','closed','','582-revision-v1','','','2020-10-15 21:43:25','2020-10-15 21:43:25','',582,'https://www.ingivision.com/2020/10/15/582-revision-v1/',0,'revision','',0),(585,1,'2020-10-15 21:50:58','2020-10-15 21:50:58','','ingi-sorter-plus','','inherit','open','closed','','ingi-sorter-plus','','','2020-10-15 21:51:31','2020-10-15 21:51:31','',582,'https://www.ingivision.com/wp-content/uploads/2020/10/ingi-sorter-plus.jpg',0,'attachment','image/jpeg',0),(586,1,'2020-10-15 21:55:50','2020-10-15 21:55:50','','software-clasificacion-frutas','','inherit','open','closed','','software-clasificacion-frutas-2','','','2020-10-15 21:56:01','2020-10-15 21:56:01','',582,'https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg',0,'attachment','image/jpeg',0),(590,0,'2020-10-16 00:28:56','2020-10-16 00:28:56','<iframe title=\"Как становятся бизнесменами. С чего начать начинающему бизнесмену. Первый опыт в бизнесе | Часть 2\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/AGmYnMDC0ko?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','e1027605d1058dc376f61f7164218b73','','','2020-10-16 00:28:56','2020-10-16 00:28:56','',0,'https://www.ingivision.com/2020/10/16/e1027605d1058dc376f61f7164218b73/',0,'oembed_cache','',0),(597,0,'2020-10-16 08:31:11','2020-10-16 08:31:11','{{unknown}}','','','publish','closed','closed','','d41e34cd6b851b8a2c490cb6c665194b','','','2020-10-16 08:31:11','2020-10-16 08:31:11','',0,'https://www.ingivision.com/2020/10/16/d41e34cd6b851b8a2c490cb6c665194b/',0,'oembed_cache','',0),(601,0,'2020-10-16 10:17:51','2020-10-16 10:17:51','<iframe title=\"FREEBITCOIN СТРАТЕГИЯ НИНДЗЯ В РУЧНОМ РЕЖИМЕ. ВОЗМОЖНО ЛИ ОБЫГРАТЬ ФРИБИТКОИН И ЗАРАБОТАТЬ BITCOIN?\" width=\"500\" height=\"281\" src=\"https://www.youtube.com/embed/QOMwHYnghbU?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture\" allowfullscreen></iframe>','','','publish','closed','closed','','72dfaa744be9dba0c1b87c82931206d1','','','2020-10-16 10:17:51','2020-10-16 10:17:51','',0,'https://www.ingivision.com/2020/10/16/72dfaa744be9dba0c1b87c82931206d1/',0,'oembed_cache','',0),(626,0,'2020-10-17 16:27:56','2020-10-17 16:27:56','{{unknown}}','','','publish','closed','closed','','9a03b01109756c54e6714183ab6c692e','','','2020-10-17 16:27:56','2020-10-17 16:27:56','',0,'https://www.ingivision.com/2020/10/17/9a03b01109756c54e6714183ab6c692e/',0,'oembed_cache','',0),(634,0,'2020-10-18 13:19:25','2020-10-18 13:19:25','{{unknown}}','','','publish','closed','closed','','5e82534f0d071ed487f26b2772e154c7','','','2020-10-18 13:19:25','2020-10-18 13:19:25','',0,'https://www.ingivision.com/2020/10/18/5e82534f0d071ed487f26b2772e154c7/',0,'oembed_cache','',0),(639,0,'2020-10-18 20:37:26','2020-10-18 20:37:26','{{unknown}}','','','publish','closed','closed','','7529360a09427a5cf44c3ee8173b2b0c','','','2020-10-18 20:37:26','2020-10-18 20:37:26','',0,'https://www.ingivision.com/2020/10/18/7529360a09427a5cf44c3ee8173b2b0c/',0,'oembed_cache','',0),(640,0,'2020-10-18 20:37:26','2020-10-18 20:37:26','{{unknown}}','','','publish','closed','closed','','d56b2370e32af71a2fb53b718a4418e5','','','2020-10-18 20:37:26','2020-10-18 20:37:26','',0,'https://www.ingivision.com/2020/10/18/d56b2370e32af71a2fb53b718a4418e5/',0,'oembed_cache','',0),(682,1,'2020-10-21 17:03:13','2020-10-21 17:03:13','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>¡Únete a nuestro equipo!</h2>\n                    </div> \n                                 \n                </div>                \n                \n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">\n\nEn Ingivisión necesitamos personas con talento, curiosas, comprometidas que puedan aportar valor a la nuestra empresa.\n\nEstamos en constante de evolución de nuestro software buscamos personal técnico, informático y electrónico que hable idiomas que tengan ganas de aportar y de crecer. \n\n\n</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"100\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n     \n       \n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row \">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>Trabaja con nosotros</h4>\n                        <h1>¿Quieres unirte a nosotros?</h1>\n                        <p class=\"text\">\n\n\nSi actualmente no tenemos ofertas laborales o no se adaptan a su perfil, puedes adjuntarnos tu CV rellenando el siguiente formulario.\n\n<br> Prometemos tenerte en cuenta para futuros procesos de selección en los que puedas encajar.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n               [contact-form-7 id=\"209\" title=\"Formulario oferta de trabajo\"]\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabaja con nosotros','','publish','closed','closed','','trabajos','','','2021-01-27 10:25:23','2021-01-27 10:25:23','',0,'https://www.ingivision.com/?page_id=682',6,'page','',0),(683,1,'2020-10-21 17:03:13','2020-10-21 17:03:13','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Explore opportunities to take<br>your career to the<br>next level</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet.Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>\n                    <div class=\"button-wrap text-center\">\n                        <a href=\"\" target=\"_blank\" class=\"themesflat_sc_vc-button big\" rel=\"noopener noreferrer\">\n                        <span>Start Exploring </span>\n                        </a>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">  Talent Development </a></td>\n                                    <td> Haft Time </td>\n                                    <td> Corporate </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Techinical Support Analyst </a></td>\n                                    <td> Full Time </td>\n                                    <td> Technology </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Implementation Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Industry </td>\n                                    <td> Rochester NY </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Outside B2B Sales Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Material </td>\n                                    <td> Columbus OH </td>\n                                </tr>\n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabajos','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 17:03:13','2020-10-21 17:03:13','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(686,1,'2020-10-21 17:57:40','2020-10-21 17:57:40','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\">/div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Explore opportunities to take<br>your career to the<br>next level</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet.Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">  Talent Development </a></td>\n                                    <td> Haft Time </td>\n                                    <td> Corporate </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Techinical Support Analyst </a></td>\n                                    <td> Full Time </td>\n                                    <td> Technology </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Implementation Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Industry </td>\n                                    <td> Rochester NY </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Outside B2B Sales Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Material </td>\n                                    <td> Columbus OH </td>\n                                </tr>\n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabajos','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 17:57:40','2020-10-21 17:57:40','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(687,1,'2020-10-21 17:58:11','2020-10-21 17:58:11','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\">/div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Explore opportunities to take<br>your career to the<br>next level</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet.Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>\n                    <div class=\"button-wrap text-center\">\n                        <a href=\"\" target=\"_blank\" class=\"themesflat_sc_vc-button big\" rel=\"noopener noreferrer\">\n                        <span>Start Exploring </span>\n                        </a>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">  Talent Development </a></td>\n                                    <td> Haft Time </td>\n                                    <td> Corporate </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Techinical Support Analyst </a></td>\n                                    <td> Full Time </td>\n                                    <td> Technology </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Implementation Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Industry </td>\n                                    <td> Rochester NY </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Outside B2B Sales Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Material </td>\n                                    <td> Columbus OH </td>\n                                </tr>\n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabajos','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 17:58:11','2020-10-21 17:58:11','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(688,1,'2020-10-21 17:59:52','2020-10-21 17:59:52','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Explore opportunities to take<br>your career to the<br>next level</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet.Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>\n                    <div class=\"button-wrap text-center\">\n                        <a href=\"\" target=\"_blank\" class=\"themesflat_sc_vc-button big\" rel=\"noopener noreferrer\">\n                        <span>Start Exploring </span>\n                        </a>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">  Talent Development </a></td>\n                                    <td> Haft Time </td>\n                                    <td> Corporate </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Techinical Support Analyst </a></td>\n                                    <td> Full Time </td>\n                                    <td> Technology </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Implementation Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Industry </td>\n                                    <td> Rochester NY </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Outside B2B Sales Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Material </td>\n                                    <td> Columbus OH </td>\n                                </tr>\n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabajos','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 17:59:52','2020-10-21 17:59:52','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(689,1,'2020-10-21 18:00:22','2020-10-21 18:00:22','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Explore opportunities to take<br>your career to the<br>next level</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet.Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\">  Talent Development </a></td>\n                                    <td> Haft Time </td>\n                                    <td> Corporate </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Techinical Support Analyst </a></td>\n                                    <td> Full Time </td>\n                                    <td> Technology </td>\n                                    <td> Oklahoma City OK </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Implementation Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Industry </td>\n                                    <td> Rochester NY </td>\n                                </tr>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Outside B2B Sales Represntative </a></td>\n                                    <td> Full Time </td>\n                                    <td> Material </td>\n                                    <td> Columbus OH </td>\n                                </tr>\n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabajos','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 18:00:22','2020-10-21 18:00:22','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(690,1,'2020-10-21 18:01:01','2020-10-21 18:01:01','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Explore opportunities to take<br>your career to the<br>next level</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet.Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                            \n                             \n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabajos','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 18:01:01','2020-10-21 18:01:01','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(691,1,'2020-10-21 18:20:39','2020-10-21 18:20:39','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Esta la xica sesi<br>venent a la para</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet.Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                            \n                             \n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabajos','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 18:20:39','2020-10-21 18:20:39','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(693,1,'2020-10-21 19:01:04','2020-10-21 19:01:04','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>¿Te unes<br>a nuestro equipo?</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Buscamos profesionales que quieran incorporarse a nuestro equipo. Si quieres crecer con nosotros en un entorno inspirador y en constante evolución, estás en el sitio indicado. A continuación tienes todas las ofertas que tenemos activas en este momento.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                            \n                             \n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabaja con nosotros','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 19:01:04','2020-10-21 19:01:04','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(694,1,'2020-10-21 19:02:03','2020-10-21 19:02:03','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>¿Te unes a nuestro equipo?</h2>\n                    </div> \n                    <div class=\"spacer clearfix\" data-desktop_height=\"47\" data-mobile_height=\"47\" data-smobile_height=\"47\"></div>                   \n                </div>                \n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-1.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-3 col-sm-6 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-2.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                </div>\n                <div class=\"col-md-6 col-sm-12 clearfix\">\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-3.jpg\" alt=\"image\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"30\" data-mobile_height=\"30\" data-smobile_height=\"30\"></div>\n                    <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/career/img-career-4.jpg\" alt=\"image\">\n                </div>\n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">Buscamos profesionales que quieran incorporarse a nuestro equipo. Si quieres crecer con nosotros en un entorno inspirador y en constante evolución, estás en el sitio indicado. A continuación tienes todas las ofertas que tenemos activas en este momento.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"120\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n        <div class=\"spacer clearfix\" data-desktop_height=\"115\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n            <div class=\"row\">\n                <div class=\"col-md-12\">\n                    <div class=\"title-section style2 text-center\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>JOBS AVAILABLE</h4>\n                        <h1>Open Positions</h1>\n                    </div>\n                    <div class=\"spacer clearfix\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-table table-responsive tb-text-left\">\n                        <table class=\"table table-simple\">\n                            <thead>\n                                <tr>\n                                    <th>Job Title</th>\n                                    <th>Type</th>\n                                    <th>Category</th>\n                                    <th>Location</th>\n                                </tr>\n                            </thead>\n                            <tbody>\n                                <tr>\n                                    <td> <a href=\"#\" target=\"_blank\" rel=\"noopener noreferrer\"> Sales Account Manager </a></td>\n                                    <td> Full Time </td>\n                                    <td> Sales </td>\n                                    <td> Los Angeles CA </td>\n                                </tr>\n                            \n                             \n                            </tbody>\n                        </table>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row no-gutters\">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>LIST OF BENEFITS</h4>\n                        <h1>Check benefits of working with our company</h1>\n                        <p class=\"text\">Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit vehicula est eget felis vehicula imperdiet non lacus at quam gravida porta usce viverra consectetur turpis id lacinia dolor sit amet. Consectetur adipiscing elit vehicula est eget felis vehicula imperdiet.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n                        <div class=\"benefit-page-career\">\n                            <ul>\n                                <li>Free Medical Checkups &amp; Insurance</li>\n                                <li>Free Lunch on a Daily Basis</li>\n                                <li>Free Pick &amp; Drop Service</li>\n                            </ul>\n                        </div>\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabaja con nosotros','','inherit','closed','closed','','682-revision-v1','','','2020-10-21 19:02:03','2020-10-21 19:02:03','',682,'https://www.ingivision.com/2020/10/21/682-revision-v1/',0,'revision','',0),(739,0,'2020-10-24 07:06:59','2020-10-24 07:06:59','{{unknown}}','','','publish','closed','closed','','1f1945dccdc1440d9f7cae777ffbe696','','','2020-10-24 07:06:59','2020-10-24 07:06:59','',0,'https://www.ingivision.com/2020/10/24/1f1945dccdc1440d9f7cae777ffbe696/',0,'oembed_cache','',0),(742,0,'2020-10-24 14:14:20','2020-10-24 14:14:20','{{unknown}}','','','publish','closed','closed','','8785a4ff4f2411e0e9b7852bc89f187a','','','2020-10-24 14:14:20','2020-10-24 14:14:20','',0,'https://www.ingivision.com/2020/10/24/8785a4ff4f2411e0e9b7852bc89f187a/',0,'oembed_cache','',0),(749,0,'2020-10-25 03:15:13','2020-10-25 03:15:13','{{unknown}}','','','publish','closed','closed','','2bb9213ceb6dccbe62516f6418f7b4cd','','','2020-10-25 03:15:13','2020-10-25 03:15:13','',0,'https://www.ingivision.com/2020/10/25/2bb9213ceb6dccbe62516f6418f7b4cd/',0,'oembed_cache','',0),(750,0,'2020-10-25 03:15:13','2020-10-25 03:15:13','{{unknown}}','','','publish','closed','closed','','43730f0f03d0690ed96a94c3d3a7f426','','','2020-10-25 03:15:13','2020-10-25 03:15:13','',0,'https://www.ingivision.com/2020/10/25/43730f0f03d0690ed96a94c3d3a7f426/',0,'oembed_cache','',0),(751,0,'2020-10-25 03:15:14','2020-10-25 03:15:14','{{unknown}}','','','publish','closed','closed','','5cf5b5f5b4cbb9e777e9cf5cc5906780','','','2020-10-25 03:15:14','2020-10-25 03:15:14','',0,'https://www.ingivision.com/2020/10/25/5cf5b5f5b4cbb9e777e9cf5cc5906780/',0,'oembed_cache','',0),(752,0,'2020-10-25 03:15:14','2020-10-25 03:15:14','{{unknown}}','','','publish','closed','closed','','5836123fae4db2fa298cee016de6e9e2','','','2020-10-25 03:15:14','2020-10-25 03:15:14','',0,'https://www.ingivision.com/2020/10/25/5836123fae4db2fa298cee016de6e9e2/',0,'oembed_cache','',0),(753,0,'2020-10-25 03:15:15','2020-10-25 03:15:15','{{unknown}}','','','publish','closed','closed','','359c18aa2afde08d2b081cceb1171ea2','','','2020-10-25 03:15:15','2020-10-25 03:15:15','',0,'https://www.ingivision.com/2020/10/25/359c18aa2afde08d2b081cceb1171ea2/',0,'oembed_cache','',0),(754,0,'2020-10-25 03:15:15','2020-10-25 03:15:15','{{unknown}}','','','publish','closed','closed','','df1eaae6334a499c4c40929a897aae11','','','2020-10-25 03:15:15','2020-10-25 03:15:15','',0,'https://www.ingivision.com/2020/10/25/df1eaae6334a499c4c40929a897aae11/',0,'oembed_cache','',0),(755,0,'2020-10-25 03:15:15','2020-10-25 03:15:15','{{unknown}}','','','publish','closed','closed','','740ed6fb8d347b2b20b830d749f7fdbb','','','2020-10-25 03:15:15','2020-10-25 03:15:15','',0,'https://www.ingivision.com/2020/10/25/740ed6fb8d347b2b20b830d749f7fdbb/',0,'oembed_cache','',0),(756,0,'2020-10-25 03:15:15','2020-10-25 03:15:15','{{unknown}}','','','publish','closed','closed','','4795a7e53ab66a5b43504c0b1369ab45','','','2020-10-25 03:15:15','2020-10-25 03:15:15','',0,'https://www.ingivision.com/2020/10/25/4795a7e53ab66a5b43504c0b1369ab45/',0,'oembed_cache','',0),(757,0,'2020-10-25 03:15:16','2020-10-25 03:15:16','{{unknown}}','','','publish','closed','closed','','e4843d28e7404d2f0f4f5ea637bdbae9','','','2020-10-25 03:15:16','2020-10-25 03:15:16','',0,'https://www.ingivision.com/2020/10/25/e4843d28e7404d2f0f4f5ea637bdbae9/',0,'oembed_cache','',0),(758,0,'2020-10-25 03:15:16','2020-10-25 03:15:16','{{unknown}}','','','publish','closed','closed','','1deedfd7b633455684e5ac6bc2e3f80d','','','2020-10-25 03:15:16','2020-10-25 03:15:16','',0,'https://www.ingivision.com/2020/10/25/1deedfd7b633455684e5ac6bc2e3f80d/',0,'oembed_cache','',0),(759,0,'2020-10-25 03:15:16','2020-10-25 03:15:16','{{unknown}}','','','publish','closed','closed','','a164e3528c2b3f83a9c3db63581097fe','','','2020-10-25 03:15:16','2020-10-25 03:15:16','',0,'https://www.ingivision.com/2020/10/25/a164e3528c2b3f83a9c3db63581097fe/',0,'oembed_cache','',0),(760,0,'2020-10-25 03:15:17','2020-10-25 03:15:17','{{unknown}}','','','publish','closed','closed','','4065cb26af3db3535ae68d170771b983','','','2020-10-25 03:15:17','2020-10-25 03:15:17','',0,'https://www.ingivision.com/2020/10/25/4065cb26af3db3535ae68d170771b983/',0,'oembed_cache','',0),(761,0,'2020-10-25 03:15:17','2020-10-25 03:15:17','{{unknown}}','','','publish','closed','closed','','77a93e9009d436a83ba72571bccf3301','','','2020-10-25 03:15:17','2020-10-25 03:15:17','',0,'https://www.ingivision.com/2020/10/25/77a93e9009d436a83ba72571bccf3301/',0,'oembed_cache','',0),(762,0,'2020-10-25 03:15:17','2020-10-25 03:15:17','{{unknown}}','','','publish','closed','closed','','fe7b116367f8bce12d39f0ad30b3d917','','','2020-10-25 03:15:17','2020-10-25 03:15:17','',0,'https://www.ingivision.com/2020/10/25/fe7b116367f8bce12d39f0ad30b3d917/',0,'oembed_cache','',0),(763,0,'2020-10-25 03:15:17','2020-10-25 03:15:17','{{unknown}}','','','publish','closed','closed','','07f0de50d02ddf8818bf0d806a2c3573','','','2020-10-25 03:15:17','2020-10-25 03:15:17','',0,'https://www.ingivision.com/2020/10/25/07f0de50d02ddf8818bf0d806a2c3573/',0,'oembed_cache','',0),(764,0,'2020-10-25 03:15:18','2020-10-25 03:15:18','{{unknown}}','','','publish','closed','closed','','7b15e8ff36c31374b6e527fbaaa724b7','','','2020-10-25 03:15:18','2020-10-25 03:15:18','',0,'https://www.ingivision.com/2020/10/25/7b15e8ff36c31374b6e527fbaaa724b7/',0,'oembed_cache','',0),(765,0,'2020-10-25 03:15:18','2020-10-25 03:15:18','{{unknown}}','','','publish','closed','closed','','5f1ba7b8d665ef85500f2830624cbdca','','','2020-10-25 03:15:18','2020-10-25 03:15:18','',0,'https://www.ingivision.com/2020/10/25/5f1ba7b8d665ef85500f2830624cbdca/',0,'oembed_cache','',0),(766,0,'2020-10-25 03:15:19','2020-10-25 03:15:19','{{unknown}}','','','publish','closed','closed','','178be827c2dd9f0d90d30cf51458d239','','','2020-10-25 03:15:19','2020-10-25 03:15:19','',0,'https://www.ingivision.com/2020/10/25/178be827c2dd9f0d90d30cf51458d239/',0,'oembed_cache','',0),(767,0,'2020-10-25 03:15:19','2020-10-25 03:15:19','{{unknown}}','','','publish','closed','closed','','55c47a49294d729d4dc3f9528e3db85e','','','2020-10-25 03:15:19','2020-10-25 03:15:19','',0,'https://www.ingivision.com/2020/10/25/55c47a49294d729d4dc3f9528e3db85e/',0,'oembed_cache','',0),(768,0,'2020-10-25 03:15:20','2020-10-25 03:15:20','{{unknown}}','','','publish','closed','closed','','258e5767f6a48bc495895dc0b78a9fe9','','','2020-10-25 03:15:20','2020-10-25 03:15:20','',0,'https://www.ingivision.com/2020/10/25/258e5767f6a48bc495895dc0b78a9fe9/',0,'oembed_cache','',0),(769,0,'2020-10-25 03:15:20','2020-10-25 03:15:20','{{unknown}}','','','publish','closed','closed','','21295ee521da3ad0da583e83702aa432','','','2020-10-25 03:15:20','2020-10-25 03:15:20','',0,'https://www.ingivision.com/2020/10/25/21295ee521da3ad0da583e83702aa432/',0,'oembed_cache','',0),(770,0,'2020-10-25 03:15:20','2020-10-25 03:15:20','{{unknown}}','','','publish','closed','closed','','2315eaf3363b8743549d34b190b133e7','','','2020-10-25 03:15:20','2020-10-25 03:15:20','',0,'https://www.ingivision.com/2020/10/25/2315eaf3363b8743549d34b190b133e7/',0,'oembed_cache','',0),(771,0,'2020-10-25 03:15:20','2020-10-25 03:15:20','{{unknown}}','','','publish','closed','closed','','0d48188cba620d6363a642b010e88672','','','2020-10-25 03:15:20','2020-10-25 03:15:20','',0,'https://www.ingivision.com/2020/10/25/0d48188cba620d6363a642b010e88672/',0,'oembed_cache','',0),(772,0,'2020-10-25 03:15:20','2020-10-25 03:15:20','{{unknown}}','','','publish','closed','closed','','939682ebf84eee13cbc0ffad266c87b5','','','2020-10-25 03:15:20','2020-10-25 03:15:20','',0,'https://www.ingivision.com/2020/10/25/939682ebf84eee13cbc0ffad266c87b5/',0,'oembed_cache','',0),(773,0,'2020-10-25 03:15:21','2020-10-25 03:15:21','{{unknown}}','','','publish','closed','closed','','1efaabe67d5dc141c2e19139c7af8030','','','2020-10-25 03:15:21','2020-10-25 03:15:21','',0,'https://www.ingivision.com/2020/10/25/1efaabe67d5dc141c2e19139c7af8030/',0,'oembed_cache','',0),(774,0,'2020-10-25 03:15:22','2020-10-25 03:15:22','{{unknown}}','','','publish','closed','closed','','243868118f5cf613cf51f4babcfbc6b2','','','2020-10-25 03:15:22','2020-10-25 03:15:22','',0,'https://www.ingivision.com/2020/10/25/243868118f5cf613cf51f4babcfbc6b2/',0,'oembed_cache','',0),(775,0,'2020-10-25 03:15:22','2020-10-25 03:15:22','{{unknown}}','','','publish','closed','closed','','61586a905edcff773836c8695ab9ed3d','','','2020-10-25 03:15:22','2020-10-25 03:15:22','',0,'https://www.ingivision.com/2020/10/25/61586a905edcff773836c8695ab9ed3d/',0,'oembed_cache','',0),(776,0,'2020-10-25 03:15:22','2020-10-25 03:15:22','{{unknown}}','','','publish','closed','closed','','5c80bf86af47e8cd6a80cdf8bcbd5071','','','2020-10-25 03:15:22','2020-10-25 03:15:22','',0,'https://www.ingivision.com/2020/10/25/5c80bf86af47e8cd6a80cdf8bcbd5071/',0,'oembed_cache','',0),(777,0,'2020-10-25 03:15:22','2020-10-25 03:15:22','{{unknown}}','','','publish','closed','closed','','9655a2548b02c5e68982e7adae1ced2d','','','2020-10-25 03:15:22','2020-10-25 03:15:22','',0,'https://www.ingivision.com/2020/10/25/9655a2548b02c5e68982e7adae1ced2d/',0,'oembed_cache','',0),(778,0,'2020-10-25 03:15:23','2020-10-25 03:15:23','{{unknown}}','','','publish','closed','closed','','239b850003ae0dab34beb5002a38b9f8','','','2020-10-25 03:15:23','2020-10-25 03:15:23','',0,'https://www.ingivision.com/2020/10/25/239b850003ae0dab34beb5002a38b9f8/',0,'oembed_cache','',0),(779,0,'2020-10-25 03:15:23','2020-10-25 03:15:23','{{unknown}}','','','publish','closed','closed','','e4dac3c0653c5d7ae98205a0a435819c','','','2020-10-25 03:15:23','2020-10-25 03:15:23','',0,'https://www.ingivision.com/2020/10/25/e4dac3c0653c5d7ae98205a0a435819c/',0,'oembed_cache','',0),(780,0,'2020-10-25 03:15:23','2020-10-25 03:15:23','{{unknown}}','','','publish','closed','closed','','03dfb93d2ce18a4a4d7ba43df4c8c6fe','','','2020-10-25 03:15:23','2020-10-25 03:15:23','',0,'https://www.ingivision.com/2020/10/25/03dfb93d2ce18a4a4d7ba43df4c8c6fe/',0,'oembed_cache','',0),(781,0,'2020-10-25 03:15:24','2020-10-25 03:15:24','{{unknown}}','','','publish','closed','closed','','60b1e29d1da71ee34d1bdb1cbf58e0ba','','','2020-10-25 03:15:24','2020-10-25 03:15:24','',0,'https://www.ingivision.com/2020/10/25/60b1e29d1da71ee34d1bdb1cbf58e0ba/',0,'oembed_cache','',0),(782,0,'2020-10-25 03:15:27','2020-10-25 03:15:27','<blockquote class=\"wp-embedded-content\" data-secret=\"zjMvJB0soU\"><a href=\"http://www.ilrecensore.com/wp2/go-php/\">go.php</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"&#8220;go.php&#8221; &#8212; Il Recensore.com\" src=\"http://www.ilrecensore.com/wp2/go-php/embed/#?secret=zjMvJB0soU\" data-secret=\"zjMvJB0soU\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','c29b5b42315a0284f65b1ea6b736503c','','','2020-10-25 03:15:27','2020-10-25 03:15:27','',0,'https://www.ingivision.com/2020/10/25/c29b5b42315a0284f65b1ea6b736503c/',0,'oembed_cache','',0),(783,0,'2020-10-25 03:15:27','2020-10-25 03:15:27','{{unknown}}','','','publish','closed','closed','','21adb45cec4db04ff16b83402f9ff2fe','','','2020-10-25 03:15:27','2020-10-25 03:15:27','',0,'https://www.ingivision.com/2020/10/25/21adb45cec4db04ff16b83402f9ff2fe/',0,'oembed_cache','',0),(784,0,'2020-10-25 03:15:27','2020-10-25 03:15:27','{{unknown}}','','','publish','closed','closed','','14fa131d26f55e68239fddf3897fcac5','','','2020-10-25 03:15:27','2020-10-25 03:15:27','',0,'https://www.ingivision.com/2020/10/25/14fa131d26f55e68239fddf3897fcac5/',0,'oembed_cache','',0),(785,0,'2020-10-25 03:15:28','2020-10-25 03:15:28','{{unknown}}','','','publish','closed','closed','','cb919672daae73a0f0958eb4d1713e58','','','2020-10-25 03:15:28','2020-10-25 03:15:28','',0,'https://www.ingivision.com/2020/10/25/cb919672daae73a0f0958eb4d1713e58/',0,'oembed_cache','',0),(786,0,'2020-10-25 03:15:28','2020-10-25 03:15:28','{{unknown}}','','','publish','closed','closed','','669ac1adcc223bc64217ff42b7efc91b','','','2020-10-25 03:15:28','2020-10-25 03:15:28','',0,'https://www.ingivision.com/2020/10/25/669ac1adcc223bc64217ff42b7efc91b/',0,'oembed_cache','',0),(787,0,'2020-10-25 03:15:28','2020-10-25 03:15:28','{{unknown}}','','','publish','closed','closed','','7609753ebde166a91e1b602f7470aa41','','','2020-10-25 03:15:28','2020-10-25 03:15:28','',0,'https://www.ingivision.com/2020/10/25/7609753ebde166a91e1b602f7470aa41/',0,'oembed_cache','',0),(788,0,'2020-10-25 03:15:29','2020-10-25 03:15:29','{{unknown}}','','','publish','closed','closed','','4cf435e000e2542c58689a5db496e71b','','','2020-10-25 03:15:29','2020-10-25 03:15:29','',0,'https://www.ingivision.com/2020/10/25/4cf435e000e2542c58689a5db496e71b/',0,'oembed_cache','',0),(789,0,'2020-10-25 03:15:29','2020-10-25 03:15:29','{{unknown}}','','','publish','closed','closed','','f6ba5f891262f1f68a9dbdca8c6c80ab','','','2020-10-25 03:15:29','2020-10-25 03:15:29','',0,'https://www.ingivision.com/2020/10/25/f6ba5f891262f1f68a9dbdca8c6c80ab/',0,'oembed_cache','',0),(790,0,'2020-10-25 03:15:29','2020-10-25 03:15:29','{{unknown}}','','','publish','closed','closed','','483fb5fd62432d8dafc2949665bcad7c','','','2020-10-25 03:15:29','2020-10-25 03:15:29','',0,'https://www.ingivision.com/2020/10/25/483fb5fd62432d8dafc2949665bcad7c/',0,'oembed_cache','',0),(791,0,'2020-10-25 03:15:32','2020-10-25 03:15:32','{{unknown}}','','','publish','closed','closed','','3b7347380e1ba9832aa03223982b4163','','','2020-10-25 03:15:32','2020-10-25 03:15:32','',0,'https://www.ingivision.com/2020/10/25/3b7347380e1ba9832aa03223982b4163/',0,'oembed_cache','',0),(792,0,'2020-10-25 03:15:32','2020-10-25 03:15:32','{{unknown}}','','','publish','closed','closed','','25ff7afc4c25f7d6f84ce0ec195f7a64','','','2020-10-25 03:15:32','2020-10-25 03:15:32','',0,'https://www.ingivision.com/2020/10/25/25ff7afc4c25f7d6f84ce0ec195f7a64/',0,'oembed_cache','',0),(793,0,'2020-10-25 03:15:37','2020-10-25 03:15:37','{{unknown}}','','','publish','closed','closed','','6fb4172eccffa4beeef6a6852b6108d9','','','2020-10-25 03:15:37','2020-10-25 03:15:37','',0,'https://www.ingivision.com/2020/10/25/6fb4172eccffa4beeef6a6852b6108d9/',0,'oembed_cache','',0),(794,0,'2020-10-25 03:15:37','2020-10-25 03:15:37','{{unknown}}','','','publish','closed','closed','','c4254a1e6b9b6b4d48308df9752e245e','','','2020-10-25 03:15:37','2020-10-25 03:15:37','',0,'https://www.ingivision.com/2020/10/25/c4254a1e6b9b6b4d48308df9752e245e/',0,'oembed_cache','',0),(810,0,'2020-10-26 05:11:17','2020-10-26 05:11:17','{{unknown}}','','','publish','closed','closed','','1b6c9536634ff7edb62444032bf5912b','','','2020-10-26 05:11:17','2020-10-26 05:11:17','',0,'https://www.ingivision.com/2020/10/26/1b6c9536634ff7edb62444032bf5912b/',0,'oembed_cache','',0),(811,0,'2020-10-26 05:11:17','2020-10-26 05:11:17','{{unknown}}','','','publish','closed','closed','','b8a2e78b1fbbf5d0f7ae6a55fe260b02','','','2020-10-26 05:11:17','2020-10-26 05:11:17','',0,'https://www.ingivision.com/2020/10/26/b8a2e78b1fbbf5d0f7ae6a55fe260b02/',0,'oembed_cache','',0),(812,0,'2020-10-26 05:11:18','2020-10-26 05:11:18','{{unknown}}','','','publish','closed','closed','','6271b3732bea800ac733ede5410a1593','','','2020-10-26 05:11:18','2020-10-26 05:11:18','',0,'https://www.ingivision.com/2020/10/26/6271b3732bea800ac733ede5410a1593/',0,'oembed_cache','',0),(813,0,'2020-10-26 05:11:18','2020-10-26 05:11:18','{{unknown}}','','','publish','closed','closed','','2109b8d56a6d2af10d20472062e1b0bc','','','2020-10-26 05:11:18','2020-10-26 05:11:18','',0,'https://www.ingivision.com/2020/10/26/2109b8d56a6d2af10d20472062e1b0bc/',0,'oembed_cache','',0),(814,0,'2020-10-26 05:11:19','2020-10-26 05:11:19','{{unknown}}','','','publish','closed','closed','','b63d2ecf73190aa628292a40f6e7d2f3','','','2020-10-26 05:11:19','2020-10-26 05:11:19','',0,'https://www.ingivision.com/2020/10/26/b63d2ecf73190aa628292a40f6e7d2f3/',0,'oembed_cache','',0),(826,1,'2020-10-26 14:38:41','2020-10-26 14:38:41','<!-- wp:heading -->\n<h2>Computer/Electronic Engineer. Support and development technician.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purpose Of The Role</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key Responsibilities</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Behavioural Skills</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Core Competencies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Experience</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Sector</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job type</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job functions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Jobs','','publish','closed','closed','','computer-electronic-engineer','','','2020-10-28 18:48:02','2020-10-28 18:48:02','',99,'https://www.ingivision.com/?page_id=826',1,'page','',0),(827,1,'2020-10-26 14:38:41','2020-10-26 14:38:41','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.<br>Key Responsibilities<br>Customer remote support<br>Responsible for delivering implementation/testing and perform the technical work.<br>Collaborate to perform system start-up assistance at customer site.<br>Installation and commissioning of computer systems<br>Final assembly and checking of electronic systems.<br>Maintain technical coordination and a highly responsive service oriented interface to the customer.<br>Provide the necessary information to allow administrative customer and project follow-up<br>Acquires and maintains a good knowledge Ingivision electronic systems.<br>Behavioural Skills<br>Degree in Electronic/Electrical/Computer or Automation Vocational Training<br>No previous experience is necessary, but it will be valued<br>Knowledge in process automation, systems, and solutions<br>Good communications skills<br>High level of English – written and spoken<br>Knowledge of a second language will be valued, mainly: French, Italian or Arabic<br>Willingness to work at customer site and eventually abroad for a limited period of time<br>Driving License for car<br>Core Competencies<br>Change Oriented<br>Collaboration - Teamwork<br>Communication<br>Customer Oriented<br>Innovation / Continuous Improvement<br>Result Focus<br>Experience<br>It is not necessary, it will be valued. Training by the company.<br>Sector<br>Industrial Automation<br>Electronics, electrics, AI<br>Job type<br>Full time<br>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 14:38:41','2020-10-26 14:38:41','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(829,1,'2020-10-26 14:43:46','2020-10-26 14:43:46','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>.<br>Behavioural Skills</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Degree in Electronic/Electrical/Computer or Automation Vocational Training<br>No previous experience is necessary, but it will be valued<br>Knowledge in process automation, systems, and solutions<br>Good communications skills<br>High level of English – written and spoken<br>Knowledge of a second language will be valued, mainly: French, Italian or Arabic<br>Willingness to work at customer site and eventually abroad for a limited period of time<br>Driving License for car<br>Core Competencies<br>Change Oriented<br>Collaboration - Teamwork<br>Communication<br>Customer Oriented<br>Innovation / Continuous Improvement<br>Result Focus<br>Experience<br>It is not necessary, it will be valued. Training by the company.<br>Sector<br>Industrial Automation<br>Electronics, electrics, AI<br>Job type<br>Full time<br>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 14:43:46','2020-10-26 14:43:46','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(831,1,'2020-10-26 14:45:28','2020-10-26 14:45:28','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>.<br>Behavioural Skills</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Degree in Electronic/Electrical/Computer or Automation Vocational Training<br>No previous experience is necessary, but it will be valued<br>Knowledge in process automation, systems, and solutions<br>Good communications skills<br>High level of English – written and spoken<br>Knowledge of a second language will be valued, mainly: French, Italian or Arabic<br>Willingness to work at customer site and eventually abroad for a limited period of time<br>Driving License for car<br>Core Competencies<br>Change Oriented<br>Collaboration - Teamwork<br>Communication<br>Customer Oriented<br>Innovation / Continuous Improvement<br>Result Focus<br>Experience<br>It is not necessary, it will be valued. Training by the company.<br>Sector<br>Industrial Automation<br>Electronics, electrics, AI<br>Job type<br>Full time<br>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 14:45:28','2020-10-26 14:45:28','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(833,1,'2020-10-26 15:07:42','2020-10-26 15:07:42','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>.<br>Behavioural Skills</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Degree in Electronic/Electrical/Computer or Automation Vocational Training<br>No previous experience is necessary, but it will be valued<br>Knowledge in process automation, systems, and solutions<br>Good communications skills<br>High level of English – written and spoken<br>Knowledge of a second language will be valued, mainly: French, Italian or Arabic<br>Willingness to work at customer site and eventually abroad for a limited period of time<br>Driving License for car<br>Core Competencies<br>Change Oriented<br>Collaboration - Teamwork<br>Communication<br>Customer Oriented<br>Innovation / Continuous Improvement<br>Result Focus<br>Experience<br>It is not necessary, it will be valued. Training by the company.<br>Sector<br>Industrial Automation<br>Electronics, electrics, AI<br>Job type<br>Full time<br>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:07:42','2020-10-26 15:07:42','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(834,1,'2020-10-26 15:08:19','2020-10-26 15:08:19','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>.<br>Behavioural Skills</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Degree in Electronic/Electrical/Computer or Automation Vocational Training<br>No previous experience is necessary, but it will be valued<br>Knowledge in process automation, systems, and solutions<br>Good communications skills<br>High level of English – written and spoken<br>Knowledge of a second language will be valued, mainly: French, Italian or Arabic<br>Willingness to work at customer site and eventually abroad for a limited period of time<br>Driving License for car<br>Core Competencies<br>Change Oriented<br>Collaboration - Teamwork<br>Communication<br>Customer Oriented<br>Innovation / Continuous Improvement<br>Result Focus<br>Experience<br>It is not necessary, it will be valued. Training by the company.<br>Sector<br>Industrial Automation<br>Electronics, electrics, AI<br>Job type<br>Full time<br>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:08:19','2020-10-26 15:08:19','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(835,1,'2020-10-26 15:15:51','2020-10-26 15:15:51','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>.<br>Behavioural Skills</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Degree in Electronic/Electrical/Computer or Automation Vocational Training<br>No previous experience is necessary, but it will be valued<br>Knowledge in process automation, systems, and solutions<br>Good communications skills<br>High level of English – written and spoken<br>Knowledge of a second language will be valued, mainly: French, Italian or Arabic<br>Willingness to work at customer site and eventually abroad for a limited period of time<br>Driving License for car<br>Core Competencies<br>Change Oriented<br>Collaboration - Teamwork<br>Communication<br>Customer Oriented<br>Innovation / Continuous Improvement<br>Result Focus<br>Experience<br>It is not necessary, it will be valued. Training by the company.<br>Sector<br>Industrial Automation<br>Electronics, electrics, AI<br>Job type<br>Full time<br>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:15:51','2020-10-26 15:15:51','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(836,1,'2020-10-26 15:16:15','2020-10-26 15:16:15','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>.<br>Behavioural Skills</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Degree in Electronic/Electrical/Computer or Automation Vocational Training<br>No previous experience is necessary, but it will be valued<br>Knowledge in process automation, systems, and solutions<br>Good communications skills<br>High level of English – written and spoken<br>Knowledge of a second language will be valued, mainly: French, Italian or Arabic<br>Willingness to work at customer site and eventually abroad for a limited period of time<br>Driving License for car<br>Core Competencies<br>Change Oriented<br>Collaboration - Teamwork<br>Communication<br>Customer Oriented<br>Innovation / Continuous Improvement<br>Result Focus<br>Experience<br>It is not necessary, it will be valued. Training by the company.<br>Sector<br>Industrial Automation<br>Electronics, electrics, AI<br>Job type<br>Full time<br>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:16:15','2020-10-26 15:16:15','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(838,1,'2020-10-26 15:54:15','2020-10-26 15:54:15','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:54:15','2020-10-26 15:54:15','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(839,1,'2020-10-26 15:54:15','2020-10-26 15:54:15','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Job functions<br>Post sales supporting<br>Final assembly and checking of electronic systems.<br>Over time, joining the product development team</p>\n<!-- /wp:paragraph -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:54:15','2020-10-26 15:54:15','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(840,1,'2020-10-26 15:54:40','2020-10-26 15:54:40','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:54:40','2020-10-26 15:54:40','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(841,1,'2020-10-26 15:54:40','2020-10-26 15:54:40','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer {\"height\":30} -->\n<div style=\"height:30px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:54:40','2020-10-26 15:54:40','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0);
INSERT INTO `ingi_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (842,1,'2020-10-26 15:58:31','2020-10-26 15:58:31','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:58:31','2020-10-26 15:58:31','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(843,1,'2020-10-26 15:58:31','2020-10-26 15:58:31','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Incorporation to the technical team of the company','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 15:58:31','2020-10-26 15:58:31','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(844,1,'2020-10-26 16:03:01','2020-10-26 16:03:01','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Remote post-sale support service','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:03:01','2020-10-26 16:03:01','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(845,1,'2020-10-26 16:03:01','2020-10-26 16:03:01','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Remote post-sale support service','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:03:01','2020-10-26 16:03:01','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(846,1,'2020-10-26 16:03:43','2020-10-26 16:03:43','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Pon, Ingeniero Informático/electrónico. Técnico de soporte y desarrollo','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:03:43','2020-10-26 16:03:43','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(847,1,'2020-10-26 16:03:43','2020-10-26 16:03:43','<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Purpose Of The Role</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Key Responsibilities</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Behavioural Skills</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Core Competencies</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Experience</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sector</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>Job type</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Job functions</h2>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Pon, Ingeniero Informático/electrónico. Técnico de soporte y desarrollo','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:03:43','2020-10-26 16:03:43','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(848,1,'2020-10-26 16:06:44','2020-10-26 16:06:44','<!-- wp:heading -->\n<h2><br>Computer / Electronic Engineer. Support and development technician</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purpose Of The Role</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key Responsibilities</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Behavioural Skills</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Core Competencies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Experience</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Sector</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job type</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job functions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Jobs','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:06:44','2020-10-26 16:06:44','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(849,1,'2020-10-26 16:06:44','2020-10-26 16:06:44','<!-- wp:heading -->\n<h2><br>Computer / Electronic Engineer. Support and development technician</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purpose Of The Role</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key Responsibilities</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Behavioural Skills</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Core Competencies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Experience</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Sector</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job type</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job functions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Jobs','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:06:44','2020-10-26 16:06:44','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(850,1,'2020-10-26 16:09:19','2020-10-26 16:09:19','<!-- wp:heading -->\n<h2>Computer/Electronic Engineer. Support and development technician.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purpose Of The Role</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key Responsibilities</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Behavioural Skills</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Core Competencies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Experience</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Sector</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job type</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job functions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Jobs','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:09:19','2020-10-26 16:09:19','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(851,1,'2020-10-26 16:09:20','2020-10-26 16:09:20','<!-- wp:heading -->\n<h2>Computer/Electronic Engineer. Support and development technician.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Incorporation to the technical team of the company. Supervision and remote support tasks will be carried out to the systems.<br>Possibility of joining the development team depending on the value and evolution of the candidate.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Purpose Of The Role</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>The candidate, after a period of adaptation, should be able to provide remote post-sale support service, maximizing customer<br>satisfaction. Final assembly and checking of electronic systems. Installation and commissioning of computer systems.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Key Responsibilities</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Customer remote support</li><li>Responsible for delivering implementation/testing and perform the technical work.</li><li>Collaborate to perform system start-up assistance at customer site.</li><li>Installation and commissioning of computer systems</li><li>Final assembly and checking of electronic systems.</li><li>Maintain technical coordination and a highly responsive service oriented interface to the customer.</li><li>Provide the necessary information to allow administrative customer and project follow-up</li><li>Acquires and maintains a good knowledge Ingivision electronic systems</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Behavioural Skills</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Degree in Electronic/Electrical/Computer or Automation Vocational Training</li><li>No previous experience is necessary, but it will be valued</li><li>Knowledge in process automation, systems, and solutions</li><li>Good communications skills</li><li>High level of English – written and spoken</li><li>Knowledge of a second language will be valued, mainly: French, Italian or Arabic</li><li>Willingness to work at customer site and eventually abroad for a limited period of time</li><li>Driving License for car</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Core Competencies</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Change Oriented</li><li>Collaboration - Teamwork</li><li>Communication</li><li>Customer Oriented</li><li>Innovation / Continuous Improvement</li><li>Result Focus</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Experience</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>It is not necessary, it will be valued. Training by the company.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Sector</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Industrial Automation</li><li>Electronics, electrics, AI</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job type</h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Full time</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3>Job functions</h3>\n<!-- /wp:heading -->\n\n<!-- wp:list -->\n<ul><li>Post sales supporting</li><li>Final assembly and checking of electronic systems.</li><li>Over time, joining the product development team</li></ul>\n<!-- /wp:list -->','Jobs','','inherit','closed','closed','','826-revision-v1','','','2020-10-26 16:09:20','2020-10-26 16:09:20','',826,'https://www.ingivision.com/2020/10/26/826-revision-v1/',0,'revision','',0),(861,0,'2020-10-27 15:40:18','2020-10-27 15:40:18','{{unknown}}','','','publish','closed','closed','','7944fb440b9d8a60f80b9c1eb417948b','','','2020-10-27 15:40:18','2020-10-27 15:40:18','',0,'https://www.ingivision.com/2020/10/27/7944fb440b9d8a60f80b9c1eb417948b/',0,'oembed_cache','',0),(877,0,'2020-10-28 16:31:20','2020-10-28 16:31:20','vmribera@ingivision.com\nVicente Ribera','vmribera@ingivision.com','','publish','closed','closed','','vmribera-ingivision-com','','','2020-10-28 16:31:20','2020-10-28 16:31:20','',0,'https://www.ingivision.com/?post_type=flamingo_contact&p=877',0,'flamingo_contact','',0),(878,0,'2020-10-28 16:31:20','2020-10-28 16:31:20','Vicente Ribera\nvmribera@ingivision.com\n722125603\nPrueba\nPrueba\n2\n93.175.240.244\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\nhttps://www.ingivision.com/contacto/\n28 de octubre de 2020\n16:31\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','Prueba','','publish','closed','closed','','prueba','','','2020-10-28 16:31:20','2020-10-28 16:31:20','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=878',0,'flamingo_inbound','',0),(879,1,'2020-10-28 17:57:05','2020-10-28 17:57:05','<p class=\"comment-form-author\"><!-- <label>Nombre*</label> -->[text* your-name placeholder \"Nombre\"]</p>\r\n<p class=\"comment-form-email\"><!-- <label>Email *</label> -->[email* your-email placeholder \"Email\"]</p>\r\n<p class=\"comment-form-author\"><!-- <label>Name *</label> -->[text* your-telefono placeholder \"Teléfono\"]</p>\r\n <div class=\"clearfix\"></div>\r\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->[textarea* your-message placeholder \"Mensaje\"]</p>\r\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->Adjunta tu curriculum [file* file-580 limit:2mb filetypes:pdf]</p>\r\n <div class=\"clearfix\"></div>\r\n<div class=\"spacer\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\" style=\"height: 50px;\"></div>\r\n<div class=\"flat-contact\"><p class=\"submit-form\">[submit class:btn class:btn-normal class:btn-md \"Enviar curriculum\"]</p></div>\n1\nAlta en oferta de trabajo\nIngivision <ingivision@ingivision.com>\ningivision@ingivision.com\nDe: [your-name] <[your-email]>\r\nTelefono: [your-telefono]\r\nMensaje: [your-message]\r\n\r\nCurriculum:\r\n[file-580]\nCc:info@admirae.es\n[file-580]\n\n\n\n[_site_title] «[your-subject]»\n[_site_title] <wordpress@ingivision.com>\n[your-email]\nCuerpo del mensaje:\r\n[your-message]\r\n\r\n-- \r\nEste mensaje se ha enviado desde un formulario de contacto en [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nGracias por tu mensaje. Ha sido enviado.\nHa ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\nUno o más campos tienen un error. Por favor, revísalos e inténtalo de nuevo.\nHa ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\nDebes aceptar los términos y condiciones antes de enviar tu mensaje.\nEl campo es obligatorio.\nEl campo es demasiado largo.\nEl campo es demasiado corto.\nEl formato de fecha es incorrecto.\nLa fecha es anterior a la más temprana permitida.\nLa fecha es posterior a la más tardía permitida.\nHa ocurrido un error desconocido al subir el archivo.\nNo tienes permisos para subir archivos de este tipo.\nEl archivo es demasiado grande.\nHa ocurrido un error al subir el archivo.\nEl formato de número no es válido.\nEl número es menor que el mínimo permitido.\nEl número es mayor que el máximo permitido.\nLa respuesta al cuestionario no es correcta.\nLa dirección de correo electrónico que has introducido no es válida.\nLa URL no es válida.\nEl número de teléfono no es válido.','Formulario oferta de trabajo','','publish','closed','closed','','formulario-oferta-de-trabajo','','','2020-10-28 19:06:18','2020-10-28 19:06:18','',0,'https://www.ingivision.com/?post_type=wpcf7_contact_form&#038;p=879',0,'wpcf7_contact_form','',0),(882,0,'2020-10-28 18:48:18','2020-10-28 18:48:18','Francisco Murciano Gomez\nfranmur@gmail.com\n678514993\nno se\n1\n88.3.230.208\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\nhttps://www.ingivision.com/en/computer-electronic-engineer/\n28 de octubre de 2020\n18:48\n826\ncomputer-electronic-engineer\nJobs\nhttps://www.ingivision.com/en/computer-electronic-engineer/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject','','','2020-10-28 18:48:18','2020-10-28 18:48:18','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=882',0,'flamingo_inbound','',0),(883,0,'2020-10-28 18:48:18','2020-10-28 18:48:18','<blockquote class=\"wp-embedded-content\" data-secret=\"cTJLLYYKo5\"><a href=\"https://www.ingivision.com/en/computer-electronic-engineer/\">Jobs</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Jobs» — Ingivision\" src=\"https://www.ingivision.com/en/computer-electronic-engineer/embed/#?secret=cTJLLYYKo5\" data-secret=\"cTJLLYYKo5\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','be3be565bb848faaaca1fab07b002f52','','','2020-10-28 18:48:18','2020-10-28 18:48:18','',0,'https://www.ingivision.com/2020/10/28/be3be565bb848faaaca1fab07b002f52/',0,'oembed_cache','',0),(884,0,'2020-10-28 19:01:06','2020-10-28 19:01:06','Francisco Murciano Gomez\nfranmur@gmail.com\n678514993\nprueba\n852d5e64a6bb34b35d599d2e01824b3e\n2\n88.3.230.208\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36\nhttps://www.ingivision.com/en/computer-electronic-engineer/\n28 de octubre de 2020\n19:01\n826\ncomputer-electronic-engineer\nJobs\nhttps://www.ingivision.com/en/computer-electronic-engineer/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-2','','','2020-10-28 19:01:06','2020-10-28 19:01:06','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=884',0,'flamingo_inbound','',0),(887,1,'2020-10-29 11:27:29','0000-00-00 00:00:00','<!-- wp:heading -->\n<h2>\"Software de clasificación para naranjas y mandarinas\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por color</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El color en los cítricos y en la fruta en general es muy representativo del grado de madurez.<br> Nuestro sistema combina varia imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por tamaño</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por peso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','draft','closed','closed','','','','','2020-10-29 11:27:29','2020-10-29 11:27:29','',0,'https://www.ingivision.com/?page_id=887',22,'page','',0),(888,1,'2020-10-29 11:17:30','2020-10-29 11:17:30','<!-- wp:heading -->\n<h2>\"Software de clasificación para naranjas y mandarinas\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de .... proporcina alta productividad y precisión a tus máquinas. Posiblidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por color.</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El color en los cítricos y en la fruta en general es muy representativo del grado de madurez.<br> Nuestro sistema combina varia imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Clasificación por tamaño<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Soporte</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por peso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','887-revision-v1','','','2020-10-29 11:17:30','2020-10-29 11:17:30','',887,'https://www.ingivision.com/2020/10/29/887-revision-v1/',0,'revision','',0),(889,1,'2020-10-29 11:22:12','2020-10-29 11:22:12','<!-- wp:heading -->\n<h2>\"Software de clasificación para naranjas y mandarinas\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de .... proporcina alta productividad y precisión a tus máquinas. Posiblidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por color</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El color en los cítricos y en la fruta en general es muy representativo del grado de madurez.<br> Nuestro sistema combina varia imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por tamaño</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por peso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','887-revision-v1','','','2020-10-29 11:22:12','2020-10-29 11:22:12','',887,'https://www.ingivision.com/2020/10/29/887-revision-v1/',0,'revision','',0),(890,1,'2020-10-29 11:27:29','2020-10-29 11:27:29','<!-- wp:heading -->\n<h2>\"Software de clasificación para naranjas y mandarinas\"</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por color</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El color en los cítricos y en la fruta en general es muy representativo del grado de madurez.<br> Nuestro sistema combina varia imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por tamaño</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.<br><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Clasificación por peso</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','887-revision-v1','','','2020-10-29 11:27:29','2020-10-29 11:27:29','',887,'https://www.ingivision.com/2020/10/29/887-revision-v1/',0,'revision','',0),(924,1,'2020-11-13 11:38:01','2020-11-13 11:38:01','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/patata.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\">Pepinos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pera.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\">Sandías</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\">Tomates y cherries</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','draft','closed','closed','','frutas-y-verduras','','','2021-01-18 12:50:22','2021-01-18 12:50:22','',0,'https://www.ingivision.com/?page_id=924',0,'page','',0),(925,1,'2020-11-10 14:36:36','2020-11-10 14:36:36','','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-10 14:36:36','2020-11-10 14:36:36','',924,'https://www.ingivision.com/2020/11/10/924-revision-v1/',0,'revision','',0),(926,1,'2020-11-13 19:02:12','2020-11-13 19:02:12','<!-- wp:heading -->\n<h2><strong>Software de clasificación para naranjas y mandarinas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de naranjas y mandarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1022,\"width\":580,\"height\":549,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png\" alt=\"\" class=\"wp-image-1022\" width=\"580\" height=\"549\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas, mandarinas</strong> y otros cítricos por calidad externa</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.<br><br>No te pierdas nuestro post relacionado: <a href=\"https://www.ingivision.com/2021/01/14/clasificacion-automatica-calidad-externa-citricos/\">Conseguir mandarinas de calidad superextra de forma automática ya es posible</a></p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','draft','closed','closed','','naranjas-y-mandarinas','','','2021-01-18 12:51:20','2021-01-18 12:51:20','',924,'https://www.ingivision.com/?page_id=926',1,'page','',0),(927,1,'2020-11-10 14:38:03','2020-11-10 14:38:03','','Naranjas','','inherit','closed','closed','','926-revision-v1','','','2020-11-10 14:38:03','2020-11-10 14:38:03','',926,'https://www.ingivision.com/2020/11/10/926-revision-v1/',0,'revision','',0),(930,1,'2020-11-16 10:44:29','2020-11-16 10:44:29','<!-- wp:heading -->\n<h2>Software de clasificación para limones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de limones. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de limones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los limones, en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del limón, el tono de amarillo/verde y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de limones </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada limón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de limones</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 limones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Limones','','draft','closed','closed','','limones','','','2021-01-18 12:52:37','2021-01-18 12:52:37','',924,'https://www.ingivision.com/?page_id=930',6,'page','',0),(931,1,'2020-11-10 14:38:59','2020-11-10 14:38:59','','Limones','','inherit','closed','closed','','930-revision-v1','','','2020-11-10 14:38:59','2020-11-10 14:38:59','',930,'https://www.ingivision.com/2020/11/10/930-revision-v1/',0,'revision','',0),(932,1,'2020-11-16 10:44:44','2020-11-16 10:44:44','<!-- wp:heading -->\n<h2><strong>Software de clasificación para manzanas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de manzanas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de manzanas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El color en las manzanas es muy representativo del grado de madurez, sea cual sea su variedad. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la manzana y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada manzana para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 manzanas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Manzanas','','draft','closed','closed','','manzanas','','','2021-01-18 12:53:02','2021-01-18 12:53:02','',924,'https://www.ingivision.com/?page_id=932',6,'page','',0),(933,1,'2020-11-10 14:39:30','2020-11-10 14:39:30','','Manzanas','','inherit','closed','closed','','932-revision-v1','','','2020-11-10 14:39:30','2020-11-10 14:39:30','',932,'https://www.ingivision.com/2020/11/10/932-revision-v1/',0,'revision','',0),(934,1,'2020-11-16 10:45:44','2020-11-16 10:45:44','<!-- wp:heading -->\n<h2>Software de clasificación para peras</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de peras de cualquier variedad. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de peras por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las peras, sea cual sea su variedad, es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de pera, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de peras </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada pera para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de peras</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 peras dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Peras','','draft','closed','closed','','peras','','','2021-01-18 12:53:46','2021-01-18 12:53:46','',924,'https://www.ingivision.com/?page_id=934',6,'page','',0),(935,1,'2020-11-10 14:39:40','2020-11-10 14:39:40','','Peras','','inherit','closed','closed','','934-revision-v1','','','2020-11-10 14:39:40','2020-11-10 14:39:40','',934,'https://www.ingivision.com/2020/11/10/934-revision-v1/',0,'revision','',0),(936,1,'2020-11-16 10:44:53','2020-11-16 10:44:53','<!-- wp:heading -->\n<h2><strong>Software de clasificación para melocotones</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de melocotones y otras frutas de hueso. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de melocotones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El color en los melocotones es muy representativo del grado de madurez, sea cual sea su variedad. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del melocotón y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de melocotones</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada melocotón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de <strong>melocotones</strong></strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 melocotones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Melocotones','','draft','closed','closed','','melocotones','','','2021-01-18 12:53:04','2021-01-18 12:53:04','',924,'https://www.ingivision.com/?page_id=936',6,'page','',0),(937,1,'2020-11-10 14:39:53','2020-11-10 14:39:53','','Melocotones','','inherit','closed','closed','','936-revision-v1','','','2020-11-10 14:39:53','2020-11-10 14:39:53','',936,'https://www.ingivision.com/2020/11/10/936-revision-v1/',0,'revision','',0),(940,1,'2020-11-16 10:45:28','2020-11-16 10:45:28','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para paraguayos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de paraguayos</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de paraguayos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los paraguayos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del paraguayo, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de paraguayos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada paraguayo para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de paraguayos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 paraguayos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Paraguayos','','draft','closed','closed','','paraguayos','','','2021-01-18 12:53:25','2021-01-18 12:53:25','',924,'https://www.ingivision.com/?page_id=940',6,'page','',0),(941,1,'2020-11-10 14:40:31','2020-11-10 14:40:31','','Paraguayos','','inherit','closed','closed','','940-revision-v1','','','2020-11-10 14:40:31','2020-11-10 14:40:31','',940,'https://www.ingivision.com/2020/11/10/940-revision-v1/',0,'revision','',0),(942,1,'2020-11-16 10:45:20','2020-11-16 10:45:20','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para nectarinas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de nectarinas</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de nectarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las nectarinas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la nectarina, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de nectarinas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada nectarina para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de nectarinas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 nectarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Nectarinas','','draft','closed','closed','','nectarinas','','','2021-01-18 12:53:22','2021-01-18 12:53:22','',924,'https://www.ingivision.com/?page_id=942',6,'page','',0),(943,1,'2020-11-10 14:40:42','2020-11-10 14:40:42','','Nectarinas','','inherit','closed','closed','','942-revision-v1','','','2020-11-10 14:40:42','2020-11-10 14:40:42','',942,'https://www.ingivision.com/2020/11/10/942-revision-v1/',0,'revision','',0),(944,1,'2020-11-11 09:39:50','2020-11-11 09:39:50','<!-- wp:heading -->\n<h2>Software de clasificación para albaricoques</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de albaricoques y otras frutas de hueso. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de albaricoques por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los albaricoques es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de albaricoque, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de albaricoques </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada albaricoque para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de albaricoques</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 albaricoques dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Albaricoques','','draft','closed','closed','','albaricoques','','','2021-01-18 12:51:47','2021-01-18 12:51:47','',924,'https://www.ingivision.com/?page_id=944',6,'page','',0),(945,1,'2020-11-10 14:40:53','2020-11-10 14:40:53','','Albaricoques','','inherit','closed','closed','','944-revision-v1','','','2020-11-10 14:40:53','2020-11-10 14:40:53','',944,'https://www.ingivision.com/2020/11/10/944-revision-v1/',0,'revision','',0),(946,1,'2020-11-13 19:01:54','2020-11-13 19:01:54','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para kiwis</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la clasificación de kiwis. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de kiwis por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los kiwis es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del kiwi, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de kiwis por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada kiwi para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de kiwis por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 kiwis dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y no te pierdas nuestro post relacionado: <a href=\"https://www.ingivision.com/2021/01/18/el-sistema-definitivo-para-la-deteccion-de-kiwis-planos/\">El sistema definitivo para la detección de kiwis planos.</a></p>\n<!-- /wp:paragraph -->','Kiwis','','draft','closed','closed','','kiwis','','','2021-01-18 12:52:31','2021-01-18 12:52:31','',924,'https://www.ingivision.com/?page_id=946',6,'page','',0),(947,1,'2020-11-10 14:41:27','2020-11-10 14:41:27','','Kiwis','','inherit','closed','closed','','946-revision-v1','','','2020-11-10 14:41:27','2020-11-10 14:41:27','',946,'https://www.ingivision.com/2020/11/10/946-revision-v1/',0,'revision','',0),(948,1,'2020-11-11 09:37:01','2020-11-11 09:37:01','<!-- wp:heading -->\n<h2 id=\"block-33f036d8-cf02-4843-b7d0-641c0035f6c2\">Software de clasificación para aguacates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-f0e6fea6-05c5-4d7d-a69d-1eea821dbf53\">Nuestro software de fácil manejo es ideal para la clasificación de aguacates de cualquier variedad. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-19022594-0fb2-4d41-99f1-2e2138fef78c\">Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-82e1f942-480a-4388-bb98-d33a31156b09\"><strong>Clasificación de aguacates por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2046f56e-e860-45c9-8db2-8e836a3f0b3e\"><br>El color en los aguacates, es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de aguacate, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-7acdd99b-f215-45df-b032-5556ee4fd176\"><strong>Clasificación de aguacates por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-5f01beb9-2961-408a-8430-e8852034ff52\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada aguacate para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-e8d0ebd6-2d41-4d5f-b5de-0fc9b5240471\"><strong>Clasificación de aguacates por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-e92e5dca-f155-492d-a035-ba6870953bd1\"><br>Nuestro software es capaz de determinar el peso de hasta 15 aguacates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1119,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01-1024x596.png\" alt=\"clasificación de aguacates\" class=\"wp-image-1119\"/></figure>\n<!-- /wp:image -->','Aguacates','','draft','closed','closed','','aguacates','','','2021-01-18 12:51:25','2021-01-18 12:51:25','',924,'https://www.ingivision.com/?page_id=948',6,'page','',0),(949,1,'2020-11-10 14:41:41','2020-11-10 14:41:41','','Aguacates','','inherit','closed','closed','','948-revision-v1','','','2020-11-10 14:41:41','2020-11-10 14:41:41','',948,'https://www.ingivision.com/2020/11/10/948-revision-v1/',0,'revision','',0),(950,1,'2020-11-13 18:52:20','2020-11-13 18:52:20','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para dátiles</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de dátiles. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de dátiles por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en los dátiles es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de dátil, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de dátiles por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada dátil para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de dátiles por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 dátiles dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Dátiles','','draft','closed','closed','','datiles','','','2021-01-18 12:52:10','2021-01-18 12:52:10','',924,'https://www.ingivision.com/?page_id=950',6,'page','',0),(951,1,'2020-11-10 14:45:52','2020-11-10 14:45:52','','Dátiles','','inherit','closed','closed','','950-revision-v1','','','2020-11-10 14:45:52','2020-11-10 14:45:52','',950,'https://www.ingivision.com/2020/11/10/950-revision-v1/',0,'revision','',0),(952,1,'2020-11-13 18:52:12','2020-11-13 18:52:12','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para cerezas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de cerezas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de cerezas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en las cerezas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de cereza, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de cerezas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada cereza para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de cerezas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 cerezas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Cerezas','','draft','closed','closed','','cerezas','','','2021-01-18 12:51:53','2021-01-18 12:51:53','',924,'https://www.ingivision.com/?page_id=952',6,'page','',0),(953,1,'2020-11-10 14:45:59','2020-11-10 14:45:59','','Cerezas','','inherit','closed','closed','','952-revision-v1','','','2020-11-10 14:45:59','2020-11-10 14:45:59','',952,'https://www.ingivision.com/2020/11/10/952-revision-v1/',0,'revision','',0),(954,1,'2020-11-16 10:51:02','2020-11-16 10:51:02','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para tomates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de tomates</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>tomates</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los tomates es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tomate, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>tomates</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada tomate para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>tomates</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 tomates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Tomates y cherries','','draft','closed','closed','','tomate','','','2021-01-18 12:54:06','2021-01-18 12:54:06','',924,'https://www.ingivision.com/?page_id=954',6,'page','',0),(955,1,'2020-11-10 14:46:45','2020-11-10 14:46:45','','Tomate','','inherit','closed','closed','','954-revision-v1','','','2020-11-10 14:46:45','2020-11-10 14:46:45','',954,'https://www.ingivision.com/2020/11/10/954-revision-v1/',0,'revision','',0),(956,1,'2020-11-16 10:50:49','2020-11-16 10:50:49','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para melones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de melones</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de melones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los melones es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del melón, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de melones por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada melón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de melones por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 melones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Melones','','draft','closed','closed','','melon','','','2021-01-18 12:53:07','2021-01-18 12:53:07','',924,'https://www.ingivision.com/?page_id=956',6,'page','',0),(957,1,'2020-11-10 14:46:56','2020-11-10 14:46:56','','Melon','','inherit','closed','closed','','956-revision-v1','','','2020-11-10 14:46:56','2020-11-10 14:46:56','',956,'https://www.ingivision.com/2020/11/10/956-revision-v1/',0,'revision','',0),(958,1,'2020-11-16 10:50:54','2020-11-16 10:50:54','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para sandías</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de sandías</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de sandías por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las sandías es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la sandía, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de sandías por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada sandía para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de sandías por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 sandías dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Sandías','','draft','closed','closed','','sandia','','','2021-01-18 12:53:49','2021-01-18 12:53:49','',924,'https://www.ingivision.com/?page_id=958',6,'page','',0),(959,1,'2020-11-10 14:47:08','2020-11-10 14:47:08','','Sandia','','inherit','closed','closed','','958-revision-v1','','','2020-11-10 14:47:08','2020-11-10 14:47:08','',958,'https://www.ingivision.com/2020/11/10/958-revision-v1/',0,'revision','',0),(960,1,'2020-11-16 10:45:35','2020-11-16 10:45:35','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para pepinos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de pepinos</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de pepinos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los pepinos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del pepino, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de pepinos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada pepinos para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de pepinos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 pepinos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Pepinos','','draft','closed','closed','','pepino','','','2021-01-18 12:53:43','2021-01-18 12:53:43','',924,'https://www.ingivision.com/?page_id=960',6,'page','',0),(961,1,'2020-11-10 14:47:24','2020-11-10 14:47:24','','Pepino','','inherit','closed','closed','','960-revision-v1','','','2020-11-10 14:47:24','2020-11-10 14:47:24','',960,'https://www.ingivision.com/2020/11/10/960-revision-v1/',0,'revision','',0),(962,1,'2020-11-13 18:52:03','2020-11-13 18:52:03','<!-- wp:heading -->\n<h2>Software de clasificación para calabacines</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de calabacines. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de calabacines por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los calabacines es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de calabacín, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada calabacín para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 calabacines dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Calabacines','','draft','closed','closed','','calabacin','','','2021-01-18 12:51:50','2021-01-18 12:51:50','',924,'https://www.ingivision.com/?page_id=962',6,'page','',0),(963,1,'2020-11-10 14:47:34','2020-11-10 14:47:34','','Calabacin','','inherit','closed','closed','','962-revision-v1','','','2020-11-10 14:47:34','2020-11-10 14:47:34','',962,'https://www.ingivision.com/2020/11/10/962-revision-v1/',0,'revision','',0),(964,1,'2020-11-11 09:46:16','2020-11-11 09:46:16','<!-- wp:heading -->\n<h2>Software de clasificación para berenjenas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de berenjenas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de berenjenas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las berenjenas en cualquiera de sus variedades es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de berenjena, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada berenjena para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 albaricoques dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1116,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01-1024x684.png\" alt=\"clasificación de berenjena\" class=\"wp-image-1116\"/></figure>\n<!-- /wp:image -->','Berenjenas','','draft','closed','closed','','berenjena','','','2021-01-18 12:51:23','2021-01-18 12:51:23','',924,'https://www.ingivision.com/?page_id=964',3,'page','',0),(965,1,'2020-11-10 14:48:27','2020-11-10 14:48:27','','Berengena','','inherit','closed','closed','','964-revision-v1','','','2020-11-10 14:48:27','2020-11-10 14:48:27','',964,'https://www.ingivision.com/2020/11/10/964-revision-v1/',0,'revision','',0),(966,1,'2020-11-13 18:52:35','2020-11-13 18:52:35','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para granadas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de granadas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de granadas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en las granadas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la granada, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de granadas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada granada para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de granadas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 granadas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Granadas','','draft','closed','closed','','granadas','','','2021-01-18 12:52:12','2021-01-18 12:52:12','',924,'https://www.ingivision.com/?page_id=966',6,'page','',0),(967,1,'2020-11-10 14:54:14','2020-11-10 14:54:14','','Granadas','','inherit','closed','closed','','966-revision-v1','','','2020-11-10 14:54:14','2020-11-10 14:54:14','',966,'https://www.ingivision.com/2020/11/10/966-revision-v1/',0,'revision','',0),(968,1,'2020-11-13 18:52:44','2020-11-13 18:52:44','<!-- wp:heading -->\n<h2 id=\"block-161d553f-ec9f-4844-aa8a-777aa9487c7a\">Software de clasificación para higos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-86d151c5-85da-422b-a95f-7093c888f74f\">Nuestro software de fácil manejo es ideal para la clasificación de higos. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-ce64a197-5549-42f9-a246-df73984ebf0b\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-d1af22f3-2278-4fee-9d86-48345de07364\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-80a397e2-48d5-46d7-9792-f0217d073596\"><strong>Clasificación de higos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-7c33b72d-bfcf-46b3-bf84-56e180cfad8d\"><br>El color en los higos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del higo, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-03f34ee7-4361-4df9-b68e-2636890b5489\"><strong>Clasificación de higos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-e2af5ce0-0e14-46ce-8490-5a3f4c696ffe\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada higo para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-1e1e5e70-60a7-47ba-9f31-67f650f97ad5\"><strong>Clasificación de higos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-106f478f-e0e2-4237-beae-ad7b2223b303\"><br>Nuestro software es capaz de determinar el peso de hasta 15 higos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Higos','','draft','closed','closed','','higos','','','2021-01-18 12:52:15','2021-01-18 12:52:15','',924,'https://www.ingivision.com/?page_id=968',6,'page','',0),(969,1,'2020-11-10 14:57:29','2020-11-10 14:57:29','','Higos','','inherit','closed','closed','','968-revision-v1','','','2020-11-10 14:57:29','2020-11-10 14:57:29','',968,'https://www.ingivision.com/2020/11/10/968-revision-v1/',0,'revision','',0),(971,1,'2020-11-11 08:17:34','2020-11-11 08:17:34','<!-- wp:paragraph -->\n<p><strong>Software de clasificación para naranjas y mandarinas.</strong><br><br>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Clasificación por color</strong><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Clasificación por tamaño</strong><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Clasificación por peso</strong><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si lo ves ok y lo puedes traducir, ponemos en marcha ya está sección también.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2020-11-11 08:17:34','2020-11-11 08:17:34','',926,'https://www.ingivision.com/2020/11/11/926-revision-v1/',0,'revision','',0),(972,1,'2020-11-11 08:39:10','2020-11-11 08:39:10','<!-- wp:paragraph -->\n<p><strong>Software de clasificación para naranjas y mandarinas</strong><br><br>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Clasificación por color</strong><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Clasificación por tamaño</strong><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Clasificación por peso</strong><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si lo ves ok y lo puedes traducir, ponemos en marcha ya está sección también.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2020-11-11 08:39:10','2020-11-11 08:39:10','',926,'https://www.ingivision.com/2020/11/11/926-revision-v1/',0,'revision','',0),(973,1,'2020-11-11 08:40:31','2020-11-11 08:40:31','<!-- wp:paragraph -->\n<p><strong>Software de clasificación para naranjas y mandarinas</strong><br><br>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Clasificación de naranjas y mandarinas por color</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Clasificación de naranjas y mandarinas</strong> por tamaño</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong><strong>Clasificación de naranjas y mandarinas</strong> por peso</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si lo ves ok y lo puedes traducir, ponemos en marcha ya está sección también.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2020-11-11 08:40:31','2020-11-11 08:40:31','',926,'https://www.ingivision.com/2020/11/11/926-revision-v1/',0,'revision','',0),(974,1,'2020-11-11 08:43:18','2020-11-11 08:43:18','<!-- wp:heading -->\n<h2><strong>Software de clasificación para naranjas y mandarinas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de naranjas y mandarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si lo ves ok y lo puedes traducir, ponemos en marcha ya está sección también.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2020-11-11 08:43:18','2020-11-11 08:43:18','',926,'https://www.ingivision.com/2020/11/11/926-revision-v1/',0,'revision','',0),(975,1,'2020-11-11 08:51:19','2020-11-11 08:51:19','<!-- wp:heading -->\n<h2><strong>Software de clasificación para naranjas y mandarinas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de naranjas y mandarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2020-11-11 08:51:19','2020-11-11 08:51:19','',926,'https://www.ingivision.com/2020/11/11/926-revision-v1/',0,'revision','',0),(976,1,'2020-11-11 08:53:00','2020-11-11 08:53:00','<!-- wp:heading -->\n<h2>Software de clasificación para limones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de limones. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de limones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los limones, en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del limón, el tono de amarillo/verde y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de limones </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada limón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de limones</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 limones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Limones','','inherit','closed','closed','','930-revision-v1','','','2020-11-11 08:53:00','2020-11-11 08:53:00','',930,'https://www.ingivision.com/2020/11/11/930-revision-v1/',0,'revision','',0),(977,1,'2020-11-11 08:56:50','2020-11-11 08:56:50','<!-- wp:heading -->\n<h2><strong>Software de clasificación para manzanas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de manzanas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Clasificación de naranjas y mandarinas por color</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El color en las manzanas es muy representativo del grado de madurez, sea cual sea su variedad. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la manzana y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada manzana para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 manzanas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Manzanas','','inherit','closed','closed','','932-revision-v1','','','2020-11-11 08:56:50','2020-11-11 08:56:50','',932,'https://www.ingivision.com/2020/11/11/932-revision-v1/',0,'revision','',0),(978,1,'2020-11-11 09:24:18','2020-11-11 09:24:18','<!-- wp:heading -->\n<h2><strong>Software de clasificación para manzanas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de manzanas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de manzanas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El color en las manzanas es muy representativo del grado de madurez, sea cual sea su variedad. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la manzana y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada manzana para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 manzanas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Manzanas','','inherit','closed','closed','','932-revision-v1','','','2020-11-11 09:24:18','2020-11-11 09:24:18','',932,'https://www.ingivision.com/2020/11/11/932-revision-v1/',0,'revision','',0),(979,1,'2020-11-11 09:24:27','2020-11-11 09:24:27','<!-- wp:heading -->\n<h2><strong>Software de clasificación para manzanas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de manzanas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de manzanas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El color en las manzanas es muy representativo del grado de madurez, sea cual sea su variedad. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la manzana y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada manzana para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de manzanas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 manzanas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Manzanas','','inherit','closed','closed','','932-revision-v1','','','2020-11-11 09:24:27','2020-11-11 09:24:27','',932,'https://www.ingivision.com/2020/11/11/932-revision-v1/',0,'revision','',0),(980,1,'2020-11-11 09:25:30','2020-11-11 09:25:30','<!-- wp:heading -->\n<h2><strong>Software de clasificación para melocotones</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de melocotones y otras frutas de hueso. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de melocotones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El color en los melocotones es muy representativo del grado de madurez, sea cual sea su variedad. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la manzana y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de melocotones</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada manzana para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de <strong>melocotones</strong></strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 melocotones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Melocotones','','inherit','closed','closed','','936-revision-v1','','','2020-11-11 09:25:30','2020-11-11 09:25:30','',936,'https://www.ingivision.com/2020/11/11/936-revision-v1/',0,'revision','',0),(981,1,'2020-11-11 09:26:55','2020-11-11 09:26:55','<!-- wp:heading -->\n<h2>Software de clasificación para limones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de limones. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de limones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los limones, en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del limón, el tono de amarillo/verde y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de limones </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada limón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de limones</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 limones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Limones','','inherit','closed','closed','','930-revision-v1','','','2020-11-11 09:26:55','2020-11-11 09:26:55','',930,'https://www.ingivision.com/2020/11/11/930-revision-v1/',0,'revision','',0),(982,1,'2020-11-11 09:29:39','2020-11-11 09:29:39','<!-- wp:heading -->\n<h2>Software de clasificación para peras</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de peras de cualquier variedad. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de peras por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las peras, sea cual sea su variedad, es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de pera, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de peras </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada pera para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de peras</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 limones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Peras','','inherit','closed','closed','','934-revision-v1','','','2020-11-11 09:29:39','2020-11-11 09:29:39','',934,'https://www.ingivision.com/2020/11/11/934-revision-v1/',0,'revision','',0),(983,1,'2020-11-11 09:33:30','2020-11-11 09:33:30','<!-- wp:heading -->\n<h2><strong>Software de clasificación para melocotones</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de melocotones y otras frutas de hueso. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de melocotones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El color en los melocotones es muy representativo del grado de madurez, sea cual sea su variedad. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del melocotón y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de melocotones</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada melocotón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de <strong>melocotones</strong></strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 melocotones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Melocotones','','inherit','closed','closed','','936-revision-v1','','','2020-11-11 09:33:30','2020-11-11 09:33:30','',936,'https://www.ingivision.com/2020/11/11/936-revision-v1/',0,'revision','',0),(984,1,'2020-11-11 09:35:23','2020-11-11 09:35:23','<!-- wp:heading -->\n<h2 id=\"block-33f036d8-cf02-4843-b7d0-641c0035f6c2\">Software de clasificación para aguacates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-f0e6fea6-05c5-4d7d-a69d-1eea821dbf53\">Nuestro software de fácil manejo es ideal para la clasificación de aguacates de cualquier variedad. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-19022594-0fb2-4d41-99f1-2e2138fef78c\">Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-82e1f942-480a-4388-bb98-d33a31156b09\"><strong>Clasificación de aguacates por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2046f56e-e860-45c9-8db2-8e836a3f0b3e\"><br>El color en los aguacates, es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de aguacate, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-7acdd99b-f215-45df-b032-5556ee4fd176\"><strong>Clasificación de aguacates por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-5f01beb9-2961-408a-8430-e8852034ff52\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada pera para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-e8d0ebd6-2d41-4d5f-b5de-0fc9b5240471\"><strong>Clasificación de aguacates por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-e92e5dca-f155-492d-a035-ba6870953bd1\"><br>Nuestro software es capaz de determinar el peso de hasta 15 aguacates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Aguacates','','inherit','closed','closed','','948-revision-v1','','','2020-11-11 09:35:23','2020-11-11 09:35:23','',948,'https://www.ingivision.com/2020/11/11/948-revision-v1/',0,'revision','',0),(985,1,'2020-11-11 09:36:54','2020-11-11 09:36:54','<!-- wp:heading -->\n<h2 id=\"block-33f036d8-cf02-4843-b7d0-641c0035f6c2\">Software de clasificación para aguacates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-f0e6fea6-05c5-4d7d-a69d-1eea821dbf53\">Nuestro software de fácil manejo es ideal para la clasificación de aguacates de cualquier variedad. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-19022594-0fb2-4d41-99f1-2e2138fef78c\">Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-82e1f942-480a-4388-bb98-d33a31156b09\"><strong>Clasificación de aguacates por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2046f56e-e860-45c9-8db2-8e836a3f0b3e\"><br>El color en los aguacates, es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de aguacate, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-7acdd99b-f215-45df-b032-5556ee4fd176\"><strong>Clasificación de aguacates por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-5f01beb9-2961-408a-8430-e8852034ff52\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada aguacate para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-e8d0ebd6-2d41-4d5f-b5de-0fc9b5240471\"><strong>Clasificación de aguacates por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-e92e5dca-f155-492d-a035-ba6870953bd1\"><br>Nuestro software es capaz de determinar el peso de hasta 15 aguacates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Aguacates','','inherit','closed','closed','','948-revision-v1','','','2020-11-11 09:36:54','2020-11-11 09:36:54','',948,'https://www.ingivision.com/2020/11/11/948-revision-v1/',0,'revision','',0),(986,1,'2020-11-11 09:38:30','2020-11-11 09:38:30','<!-- wp:heading -->\n<h2>Software de clasificación para peras</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de peras de cualquier variedad. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de peras por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las peras, sea cual sea su variedad, es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de pera, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de peras </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada pera para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de peras</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 peras dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Peras','','inherit','closed','closed','','934-revision-v1','','','2020-11-11 09:38:30','2020-11-11 09:38:30','',934,'https://www.ingivision.com/2020/11/11/934-revision-v1/',0,'revision','',0),(987,1,'2020-11-11 09:38:42','2020-11-11 09:38:42','<!-- wp:heading -->\n<h2>Software de clasificación para albaricoques</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de albaricoques y otras frutas de hueso. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de albaricoques por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los albaricoques es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de pera, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de albaricoques </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada albaricoque para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de albaricoques</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 albaricoques dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Albaricoques','','inherit','closed','closed','','944-revision-v1','','','2020-11-11 09:38:42','2020-11-11 09:38:42','',944,'https://www.ingivision.com/2020/11/11/944-revision-v1/',0,'revision','',0),(988,1,'2020-11-11 09:39:05','2020-11-11 09:39:05','<!-- wp:heading -->\n<h2>Software de clasificación para albaricoques</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de albaricoques y otras frutas de hueso. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de albaricoques por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los albaricoques es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de albaricoque, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de albaricoques </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada albaricoque para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de albaricoques</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 albaricoques dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Albaricoques','','inherit','closed','closed','','944-revision-v1','','','2020-11-11 09:39:05','2020-11-11 09:39:05','',944,'https://www.ingivision.com/2020/11/11/944-revision-v1/',0,'revision','',0),(989,1,'2020-11-11 09:42:10','2020-11-11 09:42:10','<!-- wp:heading -->\n<h2>Software de clasificación para berenjenas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de berenjenas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de berenjenas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las berenjenas en cualquiera de sus variedades es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de berenjena, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada berenjena para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 berenjenas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Berenjena','','inherit','closed','closed','','964-revision-v1','','','2020-11-11 09:42:10','2020-11-11 09:42:10','',964,'https://www.ingivision.com/2020/11/11/964-revision-v1/',0,'revision','',0),(990,1,'2020-11-11 09:43:04','2020-11-11 09:43:04','<!-- wp:heading -->\n<h2>Software de clasificación para berenjenas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de berenjenas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de berenjenas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las berenjenas en cualquiera de sus variedades es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de berenjena, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada berenjena para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 albaricoques dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Berenjena','','inherit','closed','closed','','964-revision-v1','','','2020-11-11 09:43:04','2020-11-11 09:43:04','',964,'https://www.ingivision.com/2020/11/11/964-revision-v1/',0,'revision','',0),(991,1,'2020-11-11 09:43:33','2020-11-11 09:43:33','','Calabacín','','inherit','closed','closed','','962-revision-v1','','','2020-11-11 09:43:33','2020-11-11 09:43:33','',962,'https://www.ingivision.com/2020/11/11/962-revision-v1/',0,'revision','',0),(992,1,'2020-11-11 09:45:01','2020-11-11 09:45:01','<!-- wp:heading -->\n<h2>Software de clasificación para calabacines</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de calabacines. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de calabacines por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los calabacines en cualquiera de sus variedades es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de berenjena, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada berenjena para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 calabacines dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Calabacín','','inherit','closed','closed','','962-revision-v1','','','2020-11-11 09:45:01','2020-11-11 09:45:01','',962,'https://www.ingivision.com/2020/11/11/962-revision-v1/',0,'revision','',0),(993,1,'2020-11-11 09:45:49','2020-11-11 09:45:49','<!-- wp:heading -->\n<h2>Software de clasificación para calabacines</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de calabacines. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de calabacines por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los calabacines es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de calabacín, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada berenjena para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 calabacines dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Calabacín','','inherit','closed','closed','','962-revision-v1','','','2020-11-11 09:45:49','2020-11-11 09:45:49','',962,'https://www.ingivision.com/2020/11/11/962-revision-v1/',0,'revision','',0),(994,1,'2020-11-11 09:46:10','2020-11-11 09:46:10','<!-- wp:heading -->\n<h2>Software de clasificación para calabacines</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de calabacines. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de calabacines por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los calabacines es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de calabacín, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada calabacín para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 calabacines dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Calabacín','','inherit','closed','closed','','962-revision-v1','','','2020-11-11 09:46:10','2020-11-11 09:46:10','',962,'https://www.ingivision.com/2020/11/11/962-revision-v1/',0,'revision','',0),(995,1,'2020-11-11 09:47:22','2020-11-11 09:47:22','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para cerezas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de cerezas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de cerezas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en las cerezas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de calabacín, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de cerezas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada cereza para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de cerezas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 cerezas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Cerezas','','inherit','closed','closed','','952-revision-v1','','','2020-11-11 09:47:22','2020-11-11 09:47:22','',952,'https://www.ingivision.com/2020/11/11/952-revision-v1/',0,'revision','',0),(996,1,'2020-11-11 09:48:12','2020-11-11 09:48:12','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para cerezas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de cerezas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de cerezas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en las cerezas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de cereza, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de cerezas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada cereza para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de cerezas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 cerezas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Cerezas','','inherit','closed','closed','','952-revision-v1','','','2020-11-11 09:48:12','2020-11-11 09:48:12','',952,'https://www.ingivision.com/2020/11/11/952-revision-v1/',0,'revision','',0),(997,1,'2020-11-11 09:49:24','2020-11-11 09:49:24','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para dátiles</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de dátiles. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de dátiles por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en los dátiles es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de cereza, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de dátiles por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada dátil para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de dátiles por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 dátiles dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Dátiles','','inherit','closed','closed','','950-revision-v1','','','2020-11-11 09:49:24','2020-11-11 09:49:24','',950,'https://www.ingivision.com/2020/11/11/950-revision-v1/',0,'revision','',0),(998,1,'2020-11-11 09:50:24','2020-11-11 09:50:24','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para dátiles</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de dátiles. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de dátiles por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en los dátiles es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de dátil, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de dátiles por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada dátil para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de dátiles por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 dátiles dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Dátiles','','inherit','closed','closed','','950-revision-v1','','','2020-11-11 09:50:24','2020-11-11 09:50:24','',950,'https://www.ingivision.com/2020/11/11/950-revision-v1/',0,'revision','',0),(999,1,'2020-11-11 09:52:58','2020-11-11 09:52:58','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para granadas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de granadas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de granadas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en las granadas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de dátil, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de granadas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada granada para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de granadas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 granadas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Granadas','','inherit','closed','closed','','966-revision-v1','','','2020-11-11 09:52:58','2020-11-11 09:52:58','',966,'https://www.ingivision.com/2020/11/11/966-revision-v1/',0,'revision','',0),(1000,1,'2020-11-11 09:54:03','2020-11-11 09:54:03','<!-- wp:heading -->\n<h2 id=\"block-ea084dc7-7719-43bc-88a5-c567f358e449\">Software de clasificación para granadas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-eac5f6cf-1dac-465c-b9dc-aa572d7f2d3a\">Nuestro software de fácil manejo es ideal para la clasificación de granadas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-61b5d590-c24b-4d14-b4ec-a9933b362bfb\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-792ef96d-8677-4687-aa51-67ee97b5efe9\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-0aff0e17-b6c1-458a-8df7-c3fa796b765b\"><strong>Clasificación de granadas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2d62fb6a-f61a-4bfb-9a36-9d79d6919729\"><br>El color en las granadas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la granada, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ff76798f-f0bd-49a9-94cc-d69b0dc03d54\"><strong>Clasificación de granadas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6ebde758-b069-4343-8b70-df696cd70423\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada granada para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-f13d3e5c-b0ed-4d07-9c5e-0716ede3fdd4\"><strong>Clasificación de granadas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-c361e311-02a6-4287-b8ca-a2e580081be8\"><br>Nuestro software es capaz de determinar el peso de hasta 15 granadas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Granadas','','inherit','closed','closed','','966-revision-v1','','','2020-11-11 09:54:03','2020-11-11 09:54:03','',966,'https://www.ingivision.com/2020/11/11/966-revision-v1/',0,'revision','',0),(1001,1,'2020-11-11 09:56:12','2020-11-11 09:56:12','<!-- wp:heading -->\n<h2 id=\"block-161d553f-ec9f-4844-aa8a-777aa9487c7a\">Software de clasificación para higos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-86d151c5-85da-422b-a95f-7093c888f74f\">Nuestro software de fácil manejo es ideal para la clasificación de higos. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-ce64a197-5549-42f9-a246-df73984ebf0b\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-d1af22f3-2278-4fee-9d86-48345de07364\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-80a397e2-48d5-46d7-9792-f0217d073596\"><strong>Clasificación de higos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-7c33b72d-bfcf-46b3-bf84-56e180cfad8d\"><br>El color en los higos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del higos, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-03f34ee7-4361-4df9-b68e-2636890b5489\"><strong>Clasificación de higos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-e2af5ce0-0e14-46ce-8490-5a3f4c696ffe\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada higo para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-1e1e5e70-60a7-47ba-9f31-67f650f97ad5\"><strong>Clasificación de higos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-106f478f-e0e2-4237-beae-ad7b2223b303\"><br>Nuestro software es capaz de determinar el peso de hasta 15 higos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Higos','','inherit','closed','closed','','968-revision-v1','','','2020-11-11 09:56:12','2020-11-11 09:56:12','',968,'https://www.ingivision.com/2020/11/11/968-revision-v1/',0,'revision','',0),(1002,1,'2020-11-11 09:58:21','2020-11-11 09:58:21','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para kiwis</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la clasificación de kiwis. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de kiwis por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los kiwis es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del kiwi, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de kiwis por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada kiwi para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de kiwis por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 kiwis dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Kiwis','','inherit','closed','closed','','946-revision-v1','','','2020-11-11 09:58:21','2020-11-11 09:58:21','',946,'https://www.ingivision.com/2020/11/11/946-revision-v1/',0,'revision','',0),(1003,1,'2020-11-11 09:58:37','2020-11-11 09:58:37','<!-- wp:heading -->\n<h2 id=\"block-161d553f-ec9f-4844-aa8a-777aa9487c7a\">Software de clasificación para higos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-86d151c5-85da-422b-a95f-7093c888f74f\">Nuestro software de fácil manejo es ideal para la clasificación de higos. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-ce64a197-5549-42f9-a246-df73984ebf0b\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-d1af22f3-2278-4fee-9d86-48345de07364\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-80a397e2-48d5-46d7-9792-f0217d073596\"><strong>Clasificación de higos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-7c33b72d-bfcf-46b3-bf84-56e180cfad8d\"><br>El color en los higos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del higo, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-03f34ee7-4361-4df9-b68e-2636890b5489\"><strong>Clasificación de higos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-e2af5ce0-0e14-46ce-8490-5a3f4c696ffe\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada higo para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-1e1e5e70-60a7-47ba-9f31-67f650f97ad5\"><strong>Clasificación de higos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-106f478f-e0e2-4237-beae-ad7b2223b303\"><br>Nuestro software es capaz de determinar el peso de hasta 15 higos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Higos','','inherit','closed','closed','','968-revision-v1','','','2020-11-11 09:58:37','2020-11-11 09:58:37','',968,'https://www.ingivision.com/2020/11/11/968-revision-v1/',0,'revision','',0),(1004,1,'2020-11-11 10:00:33','2020-11-11 10:00:33','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para melones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de melones</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de melones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los melones es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del melón, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de melones por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada melón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de melones por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 melones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Melón','','inherit','closed','closed','','956-revision-v1','','','2020-11-11 10:00:33','2020-11-11 10:00:33','',956,'https://www.ingivision.com/2020/11/11/956-revision-v1/',0,'revision','',0),(1005,1,'2020-11-11 10:02:29','2020-11-11 10:02:29','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para nectarinas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de nectarinas</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de nectarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las nectarinas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la nectarina, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de nectarinas por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada nectarina para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de nectarinas por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 nectarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Nectarinas','','inherit','closed','closed','','942-revision-v1','','','2020-11-11 10:02:29','2020-11-11 10:02:29','',942,'https://www.ingivision.com/2020/11/11/942-revision-v1/',0,'revision','',0),(1006,1,'2020-11-11 10:04:14','2020-11-11 10:04:14','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para paraguayos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de paraguayos</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de paraguayos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los paraguayos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del paraguayo, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de paraguayos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada paraguayo para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de paraguayos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 paraguayos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Paraguayos','','inherit','closed','closed','','940-revision-v1','','','2020-11-11 10:04:14','2020-11-11 10:04:14','',940,'https://www.ingivision.com/2020/11/11/940-revision-v1/',0,'revision','',0),(1007,1,'2020-11-11 10:06:33','2020-11-11 10:06:33','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para pepinos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de pepinos</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de pepinos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los pepinos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del pepino, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de pepinos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada pepinos para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de pepinos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 pepinos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Pepino','','inherit','closed','closed','','960-revision-v1','','','2020-11-11 10:06:33','2020-11-11 10:06:33','',960,'https://www.ingivision.com/2020/11/11/960-revision-v1/',0,'revision','',0),(1008,1,'2020-11-11 10:09:20','2020-11-11 10:09:20','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para sandías</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de sandías</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de sandías por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las sandías es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la sandía, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de sandías por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada sandía para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de sandías por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 sandías dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Sandía','','inherit','closed','closed','','958-revision-v1','','','2020-11-11 10:09:20','2020-11-11 10:09:20','',958,'https://www.ingivision.com/2020/11/11/958-revision-v1/',0,'revision','',0),(1009,1,'2020-11-11 10:12:41','2020-11-11 10:12:41','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para tomates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de tomates</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>tomates</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los tomates es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la tomates, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>tomates</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada tomate para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>tomates</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 tomates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Tomate','','inherit','closed','closed','','954-revision-v1','','','2020-11-11 10:12:41','2020-11-11 10:12:41','',954,'https://www.ingivision.com/2020/11/11/954-revision-v1/',0,'revision','',0),(1010,1,'2020-11-11 11:07:24','2020-11-11 11:07:24','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para patatas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de patatas</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>patatas</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las patatas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la patata, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>patatas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada patata para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>patatas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 patatas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1020,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata-1024x610.png\" alt=\"\" class=\"wp-image-1020\"/></figure>\n<!-- /wp:image -->','Patatas','','draft','closed','closed','','patatas','','','2021-01-18 12:53:29','2021-01-18 12:53:29','',924,'https://www.ingivision.com/?page_id=1010',6,'page','',0),(1011,1,'2020-11-11 10:28:05','2020-11-11 10:28:05','','Patatas','','inherit','closed','closed','','1010-revision-v1','','','2020-11-11 10:28:05','2020-11-11 10:28:05','',1010,'https://www.ingivision.com/2020/11/11/1010-revision-v1/',0,'revision','',0),(1012,1,'2020-11-11 10:41:10','2020-11-11 10:41:10','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para mangos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de mangos</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>mangos</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los mangos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del mango, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>mangos</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada mango para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>mangos</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 mangos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Mangos','','draft','closed','closed','','mangos','','','2021-01-18 12:52:45','2021-01-18 12:52:45','',924,'https://www.ingivision.com/?page_id=1012',6,'page','',0),(1013,1,'2020-11-11 10:28:25','2020-11-11 10:28:25','','Mangos','','inherit','closed','closed','','1012-revision-v1','','','2020-11-11 10:28:25','2020-11-11 10:28:25','',1012,'https://www.ingivision.com/2020/11/11/1012-revision-v1/',0,'revision','',0),(1014,1,'2020-11-11 10:29:56','2020-11-11 10:29:56','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para tomates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de tomates</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>tomates</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los tomates es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tomate, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>tomates</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada tomate para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>tomates</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 tomates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Tomate','','inherit','closed','closed','','954-revision-v1','','','2020-11-11 10:29:56','2020-11-11 10:29:56','',954,'https://www.ingivision.com/2020/11/11/954-revision-v1/',0,'revision','',0),(1015,1,'2020-11-11 10:30:12','2020-11-11 10:30:12','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para patatas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de patatas</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>patatas</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los patatas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la patata, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>patatas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada patata para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>patatas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 patatas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Patatas','','inherit','closed','closed','','1010-revision-v1','','','2020-11-11 10:30:12','2020-11-11 10:30:12','',1010,'https://www.ingivision.com/2020/11/11/1010-revision-v1/',0,'revision','',0),(1016,1,'2020-11-11 10:38:25','2020-11-11 10:38:25','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para patatas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de patatas</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>patatas</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las patatas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la patata, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>patatas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada patata para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>patatas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 patatas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Patatas','','inherit','closed','closed','','1010-revision-v1','','','2020-11-11 10:38:25','2020-11-11 10:38:25','',1010,'https://www.ingivision.com/2020/11/11/1010-revision-v1/',0,'revision','',0),(1017,1,'2020-11-11 10:39:14','2020-11-11 10:39:14','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para mangos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de mangos</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>mangos</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los mangos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del mango, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>mangos</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada mango para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>mangos</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 mangos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Mangos','','inherit','closed','closed','','1012-revision-v1','','','2020-11-11 10:39:14','2020-11-11 10:39:14','',1012,'https://www.ingivision.com/2020/11/11/1012-revision-v1/',0,'revision','',0),(1020,1,'2020-11-11 11:07:06','2020-11-11 11:07:06','','clasificacion-patata','','inherit','open','closed','','clasificacion-patata','','','2020-11-11 11:07:06','2020-11-11 11:07:06','',1010,'https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata.png',0,'attachment','image/png',0),(1021,1,'2020-11-11 11:07:11','2020-11-11 11:07:11','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para patatas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de patatas</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>patatas</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las patatas es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la patata, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>patatas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada patata para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>patatas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 patatas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1020,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata-1024x610.png\" alt=\"\" class=\"wp-image-1020\"/></figure>\n<!-- /wp:image -->','Patatas','','inherit','closed','closed','','1010-revision-v1','','','2020-11-11 11:07:11','2020-11-11 11:07:11','',1010,'https://www.ingivision.com/2020/11/11/1010-revision-v1/',0,'revision','',0),(1022,1,'2020-11-11 11:12:01','2020-11-11 11:12:01','','CLASIFICACION-naranjas-mndarinas','','inherit','open','closed','','clasificacion-naranjas-mndarinas','','','2020-11-11 11:12:01','2020-11-11 11:12:01','',926,'https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png',0,'attachment','image/png',0),(1024,1,'2020-11-11 11:12:18','2020-11-11 11:12:18','<!-- wp:heading -->\n<h2><strong>Software de clasificación para naranjas y mandarinas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de naranjas y mandarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1022,\"width\":580,\"height\":549,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png\" alt=\"\" class=\"wp-image-1022\" width=\"580\" height=\"549\"/></figure>\n<!-- /wp:image -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2020-11-11 11:12:18','2020-11-11 11:12:18','',926,'https://www.ingivision.com/2020/11/11/926-revision-v1/',0,'revision','',0),(1043,1,'2020-11-16 10:13:08','2020-11-16 10:13:08','','aguacate','','inherit','open','closed','','aguacate','','','2020-11-16 10:13:08','2020-11-16 10:13:08','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png',0,'attachment','image/png',0),(1044,1,'2020-11-16 10:13:08','2020-11-16 10:13:08','','albaricoque','','inherit','open','closed','','albaricoque','','','2020-11-16 10:13:08','2020-11-16 10:13:08','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png',0,'attachment','image/png',0),(1047,1,'2020-11-16 10:13:10','2020-11-16 10:13:10','','cerezas','','inherit','open','closed','','cerezas-2','','','2020-11-16 10:13:10','2020-11-16 10:13:10','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png',0,'attachment','image/png',0),(1048,1,'2020-11-16 10:13:10','2020-11-16 10:13:10','','datiles','','inherit','open','closed','','datiles-2','','','2020-11-16 10:13:10','2020-11-16 10:13:10','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png',0,'attachment','image/png',0),(1049,1,'2020-11-16 10:13:11','2020-11-16 10:13:11','','granada','','inherit','open','closed','','granada','','','2020-11-16 10:13:11','2020-11-16 10:13:11','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/granada.png',0,'attachment','image/png',0),(1050,1,'2020-11-16 10:13:12','2020-11-16 10:13:12','','higo','','inherit','open','closed','','higo','','','2020-11-16 10:13:12','2020-11-16 10:13:12','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/higo.png',0,'attachment','image/png',0),(1051,1,'2020-11-16 10:13:12','2020-11-16 10:13:12','','kiwi','','inherit','open','closed','','kiwi','','','2020-11-16 10:13:12','2020-11-16 10:13:12','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png',0,'attachment','image/png',0),(1052,1,'2020-11-16 10:13:12','2020-11-16 10:13:12','','limon','','inherit','open','closed','','limon','','','2020-11-16 10:13:12','2020-11-16 10:13:12','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/limon.png',0,'attachment','image/png',0),(1053,1,'2020-11-16 10:13:13','2020-11-16 10:13:13','','mango','','inherit','open','closed','','mango','','','2020-11-16 10:13:13','2020-11-16 10:13:13','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/mango.png',0,'attachment','image/png',0),(1055,1,'2020-11-16 10:13:14','2020-11-16 10:13:14','','melocoton','','inherit','open','closed','','melocoton','','','2020-11-16 10:13:14','2020-11-16 10:13:14','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png',0,'attachment','image/png',0),(1056,1,'2020-11-16 10:13:14','2020-11-16 10:13:14','','melon','','inherit','open','closed','','melon','','','2020-11-16 10:13:14','2020-11-16 10:13:14','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/melon.png',0,'attachment','image/png',0),(1058,1,'2020-11-16 10:13:15','2020-11-16 10:13:15','','nectarina','','inherit','open','closed','','nectarina','','','2020-11-16 10:13:15','2020-11-16 10:13:15','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png',0,'attachment','image/png',0),(1059,1,'2020-11-16 10:13:15','2020-11-16 10:13:15','','paraguayo','','inherit','open','closed','','paraguayo','','','2020-11-16 10:13:15','2020-11-16 10:13:15','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png',0,'attachment','image/png',0),(1060,1,'2020-11-16 10:13:16','2020-11-16 10:13:16','','patata','','inherit','open','closed','','patata','','','2020-11-16 10:13:16','2020-11-16 10:13:16','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/patata.png',0,'attachment','image/png',0),(1061,1,'2020-11-16 10:13:16','2020-11-16 10:13:16','','pepino','','inherit','open','closed','','pepino','','','2020-11-16 10:13:16','2020-11-16 10:13:16','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png',0,'attachment','image/png',0),(1062,1,'2020-11-16 10:13:16','2020-11-16 10:13:16','','pera','','inherit','open','closed','','pera','','','2020-11-16 10:13:16','2020-11-16 10:13:16','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/pera.png',0,'attachment','image/png',0),(1063,1,'2020-11-16 10:13:17','2020-11-16 10:13:17','','sandia','','inherit','open','closed','','sandia','','','2020-11-16 10:13:17','2020-11-16 10:13:17','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png',0,'attachment','image/png',0),(1064,1,'2020-11-16 10:13:17','2020-11-16 10:13:17','','tomate','','inherit','open','closed','','tomate','','','2020-11-16 10:13:17','2020-11-16 10:13:17','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/tomate.png',0,'attachment','image/png',0),(1065,1,'2020-11-16 10:18:21','2020-11-16 10:18:21','','berenjena','','inherit','open','closed','','berenjena-2','','','2020-11-16 10:18:21','2020-11-16 10:18:21','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png',0,'attachment','image/png',0),(1066,1,'2020-11-16 10:18:21','2020-11-16 10:18:21','','calabacin','','inherit','open','closed','','calabacin-2','','','2020-11-16 10:18:21','2020-11-16 10:18:21','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png',0,'attachment','image/png',0),(1067,1,'2020-11-16 10:18:33','2020-11-16 10:18:33','','manzanan','','inherit','open','closed','','manzanan','','','2020-11-16 10:18:33','2020-11-16 10:18:33','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png',0,'attachment','image/png',0),(1068,1,'2020-11-16 10:18:42','2020-11-16 10:18:42','','naranja','','inherit','open','closed','','naranja','','','2020-11-16 10:18:42','2020-11-16 10:18:42','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png',0,'attachment','image/png',0),(1070,1,'2020-11-16 10:36:55','2020-11-16 10:36:55','<!-- wp:code -->\n<pre class=\"wp-block-code\"><code>&lt;div class=\"col-lg-3 col-md-3 col-sm-6\">\r\n                    &lt;div class=\"themesflat_sc_vc-teammembers line-borders\">\r\n                        &lt;div class=\"team-image\">&lt;img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\r\n                            &lt;div class=\"team-box-social\">\r\n                                &lt;a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\">&lt;i class=\"fas fa-plus\" aria-hidden=\"true\">&lt;/i>&lt;/a>\r\n                            &lt;/div>\r\n                        &lt;/div>\r\n                        &lt;h4 class=\"team-name\"> &lt;a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\">Naranjas y mandarinas&lt;/a>&lt;/h4>\r\n                       \r\n                    &lt;/div>\r\n                &lt;/div></code></pre>\n<!-- /wp:code -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 10:36:55','2020-11-16 10:36:55','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1071,1,'2020-11-16 10:37:18','2020-11-16 10:37:18','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\r\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\r\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\r\n                            <div class=\"team-box-social\">\r\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\" rel=\"noopener noreferrer\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\r\n                            </div>\r\n                        </div>\r\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\" rel=\"noopener noreferrer\">Naranjas y mandarinas</a></h4>\r\n                       \r\n                    </div>\r\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 10:37:18','2020-11-16 10:37:18','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1072,1,'2020-11-16 10:38:44','2020-11-16 10:38:44','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\r\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\r\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\r\n                            <div class=\"team-box-social\">\r\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\" rel=\"noopener noreferrer\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\r\n                            </div>\r\n                        </div>\r\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\" rel=\"noopener noreferrer\">Naranjas y mandarinas</a></h4>\r\n                       \r\n                    </div>\r\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\" rel=\"noopener noreferrer\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" target=\"_blank\" class=\"\" rel=\"noopener noreferrer\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 10:38:44','2020-11-16 10:38:44','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1074,1,'2020-11-16 10:41:19','2020-11-16 10:41:19','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\"  class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\"  class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\"  class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\"  class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 10:41:19','2020-11-16 10:41:19','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1075,1,'2020-11-16 10:41:47','2020-11-16 10:41:47','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\"  class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\"  class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\"  class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\"  class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 10:41:47','2020-11-16 10:41:47','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1076,1,'2020-11-16 10:47:30','2020-11-16 10:47:30','','naranjaymandarina','','inherit','open','closed','','naranjaymandarina','','','2020-11-16 10:47:30','2020-11-16 10:47:30','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png',0,'attachment','image/png',0),(1078,1,'2020-11-16 10:54:15','2020-11-16 10:54:15','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Calabacín</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 10:54:15','2020-11-16 10:54:15','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1079,1,'2020-11-16 10:57:08','2020-11-16 10:57:08','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Calabacín</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 10:57:08','2020-11-16 10:57:08','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1081,1,'2020-11-16 11:43:03','2020-11-16 11:43:03','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Calabacín</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 11:43:03','2020-11-16 11:43:03','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1083,1,'2020-11-16 12:01:26','2020-11-16 12:01:26','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Calabacín</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:01:26','2020-11-16 12:01:26','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1084,1,'2020-11-16 12:04:53','2020-11-16 12:04:53','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacín</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:04:53','2020-11-16 12:04:53','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1085,1,'2020-11-16 12:06:43','2020-11-16 12:06:43','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjena</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacín</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzana</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:06:43','2020-11-16 12:06:43','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1086,1,'2020-11-16 12:08:44','2020-11-16 12:08:44','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:08:44','2020-11-16 12:08:44','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1087,1,'2020-11-16 12:11:36','2020-11-16 12:11:36','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:11:36','2020-11-16 12:11:36','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1088,1,'2020-11-16 12:15:52','2020-11-16 12:15:52','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Tomate</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:15:52','2020-11-16 12:15:52','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1090,1,'2020-11-16 12:18:53','2020-11-16 12:18:53','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/patata.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pera.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\">Tomates y cherries</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:18:53','2020-11-16 12:18:53','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1091,1,'2020-11-16 12:19:28','2020-11-16 12:19:28','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melón</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/patata.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\">Pepino</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pera.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\">Sandía</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\">Tomates y cherries</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:19:28','2020-11-16 12:19:28','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1092,1,'2020-11-16 12:20:25','2020-11-16 12:20:25','','tomates-y-cherris','','inherit','open','closed','','tomates-y-cherris','','','2020-11-16 12:20:25','2020-11-16 12:20:25','',0,'https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png',0,'attachment','image/png',0),(1093,1,'2020-11-16 12:23:02','2020-11-16 12:23:02','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para tomates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de tomates</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de <strong>tomates</strong> por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los tomates es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tomate, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de <strong>tomates</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada tomate para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de <strong>tomates</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 tomates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Tomates y cherries','','inherit','closed','closed','','954-revision-v1','','','2020-11-16 12:23:02','2020-11-16 12:23:02','',954,'https://www.ingivision.com/2020/11/16/954-revision-v1/',0,'revision','',0),(1094,1,'2020-11-16 12:23:14','2020-11-16 12:23:14','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para sandías</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de sandías</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de sandías por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en las sandías es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la sandía, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de sandías por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada sandía para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de sandías por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 sandías dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Sandías','','inherit','closed','closed','','958-revision-v1','','','2020-11-16 12:23:14','2020-11-16 12:23:14','',958,'https://www.ingivision.com/2020/11/16/958-revision-v1/',0,'revision','',0),(1095,1,'2020-11-16 12:23:29','2020-11-16 12:23:29','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para pepinos</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de pepinos</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de pepinos por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los pepinos es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del pepino, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de pepinos por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada pepinos para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de pepinos por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 pepinos dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Pepinos','','inherit','closed','closed','','960-revision-v1','','','2020-11-16 12:23:29','2020-11-16 12:23:29','',960,'https://www.ingivision.com/2020/11/16/960-revision-v1/',0,'revision','',0),(1096,1,'2020-11-16 12:24:32','2020-11-16 12:24:32','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/patata.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\">Pepinos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pera.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\">Sandías</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\">Tomates y cherries</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2020-11-16 12:24:32','2020-11-16 12:24:32','',924,'https://www.ingivision.com/2020/11/16/924-revision-v1/',0,'revision','',0),(1097,1,'2020-11-16 12:25:57','2020-11-16 12:25:57','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para melones</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la <strong>clasificación de melones</strong>. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de melones por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los melones es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del melón, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de melones por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada melón para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de melones por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 melones dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Melones','','inherit','closed','closed','','956-revision-v1','','','2020-11-16 12:25:57','2020-11-16 12:25:57','',956,'https://www.ingivision.com/2020/11/16/956-revision-v1/',0,'revision','',0),(1098,1,'2020-11-16 12:26:22','2020-11-16 12:26:22','<!-- wp:heading -->\n<h2>Software de clasificación para calabacines</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de calabacines. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de calabacines por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los calabacines es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de calabacín, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada calabacín para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de calabacines</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 calabacines dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Calabacines','','inherit','closed','closed','','962-revision-v1','','','2020-11-16 12:26:22','2020-11-16 12:26:22','',962,'https://www.ingivision.com/2020/11/16/962-revision-v1/',0,'revision','',0),(1099,1,'2020-11-16 12:26:37','2020-11-16 12:26:37','<!-- wp:heading -->\n<h2>Software de clasificación para berenjenas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de berenjenas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de berenjenas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las berenjenas en cualquiera de sus variedades es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de berenjena, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada berenjena para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 albaricoques dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->','Berenjenas','','inherit','closed','closed','','964-revision-v1','','','2020-11-16 12:26:37','2020-11-16 12:26:37','',964,'https://www.ingivision.com/2020/11/16/964-revision-v1/',0,'revision','',0),(1103,1,'2020-11-19 09:30:05','2020-11-19 09:30:05','<!-- wp:paragraph -->\n<p>Sabemos que la maquinaria empleada en el sector hortofrutícola y en sistemas de clasificación, almacenamiento y empaque requiere un desembolso importante de capital. En muchas ocasiones no podemos o no estamos dispuestos a asumir ese tipo de coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿En qué consiste el <em>retrofit</em>?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Fruit sorter retrofit</em></strong> se podría traducir como modernización el proceso de clasificación de frutas.<br><br>Para no incurrir en el elevado coste que comentábamos, las principales plantas de envasado de frutas y verduras optan por actualizar su maquinaria existente, para prolongar la vida de las máquinas con un software totalmente actualizado y con las últimas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por tanto, la naturaleza, la técnica y la tecnología se unen en el camino de la fruta desde el árbol hasta nuestras cestas de la compra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software ha sido concebido de manera innovadora para aumentar el rendimiento, mejorar la precisión de clasificación y maximizar ganancias.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En la clasificación, cada pieza es fotografiada unas 60 veces en cuestión de segundos para estimar su coloración, tamaño, etc. Es la manera de agruparlas las que son de igual clase para que vayan todas juntas al mismo canal de lavado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cuáles son los beneficios más interesantes del <strong><em>fruit sorter retrofit</em></strong> ?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Veamos con más detalle los beneficios clave de actualizar su planta de clasificación con nuestro software:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Más calidad en la clasificación</strong><br>Una combinación de hardware de alto rendimiento y nuevos algoritmos de aprendizaje automático en nuestro software tienen como consecuencia una mayor eficacia y eficiencia en el proceso de clasificación de frutas y verduras.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Reducir costes en mano de obra</strong><br>La mano de obra cualificada es cada vez más difícil de encontrar y cada vez más cara de mantener. Reducir los clasificadores manuales permite disminuir los costes de mano de obra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Mayor cantidad de producto envasado.</strong><br>Aumentando el rendimiento y reduciendo el desperdicio de productos se consigue desperdiciar menos producto. Esto se debe a que una clasificación manual puede generar inconsistencias de calidad o errores de valoración, desperdiciándose al final fruta que podría ser considerada como «buena».</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Software inteligente</strong> <strong>pero de uso sencillo</strong><br>Una actualización de la maquinaria te va a ofrecer un hardware potente y software inteligente de clasificación de defectos muy avanzado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El reto está en no dificultar el uso del software, por muchas prestaciones que tenga. Nuestro software está diseñado para adaptarse a cualquier tipo de fruta. Te dejamos el enlace a la sección en la que puedes ver todas las frutas con las que hemos trabajado hasta la fecha.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Con el futuro en mente</strong><br>Lo que te recomendamos es que instales en tu antigua maquinaria un software que te permita actualizaciones futuras a medida que se dispone de nueva tecnología.<br>De esta manera, aseguras que tu planta de envasado permanezca a la vanguardia en un futuro cambiante y cada vez más digital.<br>Así te evitas tener que invertir recurrentemente tiempo y recursos en nuevos programas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo sé si es lo ideal para mi negocio?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Si no quieres o no puedes invertir ahora en maquinaria completamente nueva, lo que puedes es modernizar la que tienes. Mejorarás de este modo el nivel de tu clasificación de frutas con los beneficios que ya hemos comentado. Si quieres leer más a cerca del retrofit visita nuestra <a href=\"https://www.ingivision.com/servicios/\">sección servicio</a>s</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué te ofrece el software de ingivision?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un software muy especializado, totalmente optimizado que puede modernizar cualquier calibrador. ¿Lo mejor? su facilidad de uso que permite que, en unas pocas horas de formación, cualquier persona del equipo lo pueda configurar y ponerse a funcionar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/productos/\">Conoce todas sus prestaciones.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ahora que ya sabes cómo te puede ayudar el retrofit ¿te parece una buena opción?</p>\n<!-- /wp:paragraph -->','Fruit sorter retrofit, la solución definitiva para no invertir miles de euros','','publish','open','open','','fruit-sorter-retrofit-la-solucion-definitiva-para-no-invertir-miles-de-euros','','','2020-11-19 09:42:21','2020-11-19 09:42:21','',0,'https://www.ingivision.com/?p=1103',0,'post','',0),(1104,1,'2020-11-19 08:50:31','2020-11-19 08:50:31','<!-- wp:paragraph -->\n<p>Sabemos que la maquinaria empleada en el sector hortofrutícola y en sistemas de clasificación, almacenamiento y empaque requiere un desembolso importante de capital. En muchas ocasiones no podemos o no estamos dispuestos a asumir ese tipo de coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿En qué consiste el retrofit?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para no incurrir en ese elevado coste, las principales plantas de envasado de frutas y verduras optan por actualizar su maquinaria existente, para prolongar la vida de las máquinas con un software totalmente actualizado y con las últimas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por tanto, la naturaleza, la técnica y la tecnología se unen en el camino de la fruta desde el árbol hasta nuestras cestas de la compra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software ha sido concebido de manera innovadora para aumentar el rendimiento, mejorar la precisión de clasificación y maximizar ganancias.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En la clasificación, cada pieza es fotografiada unas 60 veces en cuestión de segundos para estimar su coloración, tamaño, etc. Es la manera de agruparlas las que son de igual clase para que vayan todas juntas al mismo canal de lavado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cuáles son los beneficios más interesantes?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Veamos con más detalle los beneficios clave de actualizar su planta de clasificación con nuestro software:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Más calidad en la clasificación</strong><br>Una combinación de hardware de alto rendimiento y nuevos algoritmos de aprendizaje automático en nuestro software tienen como consecuencia una mayor eficacia y eficiencia en el proceso de clasificación de frutas y verduras.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Reducir costes en mano de obra</strong><br>La mano de obra cualificada es cada vez más difícil de encontrar y cada vez más cara de mantener. Reducir los clasificadores manuales permite disminuir los costes de mano de obra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Mayor cantidad de producto envasado.</strong><br>Aumentando el rendimiento y reduciendo el desperdicio de productos se consigue desperdiciar menos producto. Esto se debe a que una clasificación manual puede generar inconsistencias de calidad o errores de valoración, desperdiciándose al final fruta que podría ser considerada como «buena».</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Software inteligente</strong> <strong>pero de uso sencillo</strong><br>Una actualización de la maquinaria te va a ofrecer un hardware potente y software inteligente de clasificación de defectos muy avanzado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El reto está en no dificultar el uso del software, por muchas prestaciones que tenga. Nuestro software está diseñado para adaptarse a cualquier tipo de fruta. Te dejamos el enlace a la sección en la que puedes <a href=\"https://www.ingivision.com/frutas-y-verduras/\">ver todas las frutas con las que hemos trabajado</a> hasta la fecha.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Con el futuro en mente</strong><br>Lo que te recomendamos es que instales en tu antigua maquinaria un software que te permita actualizaciones futuras a medida que se dispone de nueva tecnología.<br>De esta manera, aseguras que tu planta de envasado permanezca a la vanguardia en un futuro cambiante y cada vez más digital.<br>Así te evitas tener que invertir recurrentemente tiempo y recursos en nuevos programas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo sé si es lo ideal para mi negocio?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Si no quieres o no puedes invertir ahora en maquinaria completamente nueva, lo que puedes es modernizar la que tienes. Mejorarás de este modo el nivel de tu clasificación de frutas con los beneficios que ya hemos comentado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué te ofrece el software de ingivision?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un software muy especializado, totalmente optimizado que puede modernizar cualquier calibrador. ¿Lo mejor? su facilidad de uso que permite que, en unas pocas horas de formación, cualquier persona del equipo lo pueda configurar y ponerse a funcionar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/productos/\">Conoce todas sus prestaciones.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ahora que ya sabes cómo te puede ayudar el retrofit ¿te parece una buena opción?</p>\n<!-- /wp:paragraph -->','Fruit sorter retrofit, la solución definitiva para no invertir miles de euros','','inherit','closed','closed','','1103-revision-v1','','','2020-11-19 08:50:31','2020-11-19 08:50:31','',1103,'https://www.ingivision.com/2020/11/19/1103-revision-v1/',0,'revision','',0),(1105,1,'2020-11-19 08:53:06','2020-11-19 08:53:06','<!-- wp:paragraph -->\n<p>Sabemos que la maquinaria empleada en el sector hortofrutícola y en sistemas de clasificación, almacenamiento y empaque requiere un desembolso importante de capital. En muchas ocasiones no podemos o no estamos dispuestos a asumir ese tipo de coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿En qué consiste el retrofit?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para no incurrir en ese elevado coste, las principales plantas de envasado de frutas y verduras optan por actualizar su maquinaria existente, para prolongar la vida de las máquinas con un software totalmente actualizado y con las últimas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por tanto, la naturaleza, la técnica y la tecnología se unen en el camino de la fruta desde el árbol hasta nuestras cestas de la compra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software ha sido concebido de manera innovadora para aumentar el rendimiento, mejorar la precisión de clasificación y maximizar ganancias.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En la clasificación, cada pieza es fotografiada unas 60 veces en cuestión de segundos para estimar su coloración, tamaño, etc. Es la manera de agruparlas las que son de igual clase para que vayan todas juntas al mismo canal de lavado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cuáles son los beneficios más interesantes?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Veamos con más detalle los beneficios clave de actualizar su planta de clasificación con nuestro software:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Más calidad en la clasificación</strong><br>Una combinación de hardware de alto rendimiento y nuevos algoritmos de aprendizaje automático en nuestro software tienen como consecuencia una mayor eficacia y eficiencia en el proceso de clasificación de frutas y verduras.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Reducir costes en mano de obra</strong><br>La mano de obra cualificada es cada vez más difícil de encontrar y cada vez más cara de mantener. Reducir los clasificadores manuales permite disminuir los costes de mano de obra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Mayor cantidad de producto envasado.</strong><br>Aumentando el rendimiento y reduciendo el desperdicio de productos se consigue desperdiciar menos producto. Esto se debe a que una clasificación manual puede generar inconsistencias de calidad o errores de valoración, desperdiciándose al final fruta que podría ser considerada como «buena».</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Software inteligente</strong> <strong>pero de uso sencillo</strong><br>Una actualización de la maquinaria te va a ofrecer un hardware potente y software inteligente de clasificación de defectos muy avanzado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El reto está en no dificultar el uso del software, por muchas prestaciones que tenga. Nuestro software está diseñado para adaptarse a cualquier tipo de fruta. Te dejamos el enlace a la sección en la que puedes ver todas las frutas con las que hemos trabajado hasta la fecha.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Con el futuro en mente</strong><br>Lo que te recomendamos es que instales en tu antigua maquinaria un software que te permita actualizaciones futuras a medida que se dispone de nueva tecnología.<br>De esta manera, aseguras que tu planta de envasado permanezca a la vanguardia en un futuro cambiante y cada vez más digital.<br>Así te evitas tener que invertir recurrentemente tiempo y recursos en nuevos programas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo sé si es lo ideal para mi negocio?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Si no quieres o no puedes invertir ahora en maquinaria completamente nueva, lo que puedes es modernizar la que tienes. Mejorarás de este modo el nivel de tu clasificación de frutas con los beneficios que ya hemos comentado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué te ofrece el software de ingivision?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un software muy especializado, totalmente optimizado que puede modernizar cualquier calibrador. ¿Lo mejor? su facilidad de uso que permite que, en unas pocas horas de formación, cualquier persona del equipo lo pueda configurar y ponerse a funcionar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/productos/\">Conoce todas sus prestaciones.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ahora que ya sabes cómo te puede ayudar el retrofit ¿te parece una buena opción?</p>\n<!-- /wp:paragraph -->','Fruit sorter retrofit, la solución definitiva para no invertir miles de euros','','inherit','closed','closed','','1103-revision-v1','','','2020-11-19 08:53:06','2020-11-19 08:53:06','',1103,'https://www.ingivision.com/2020/11/19/1103-revision-v1/',0,'revision','',0),(1106,1,'2020-11-19 08:57:43','2020-11-19 08:57:43','<!-- wp:paragraph -->\n<p>Sabemos que la maquinaria empleada en el sector hortofrutícola y en sistemas de clasificación, almacenamiento y empaque requiere un desembolso importante de capital. En muchas ocasiones no podemos o no estamos dispuestos a asumir ese tipo de coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿En qué consiste el <em>retrofit</em>?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Fruit sorter retrofit</em></strong> se podría traducir como modernización el proceso de clasificación de frutas.<br><br>Para no incurrir en el elevado coste que comentábamos, las principales plantas de envasado de frutas y verduras optan por actualizar su maquinaria existente, para prolongar la vida de las máquinas con un software totalmente actualizado y con las últimas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por tanto, la naturaleza, la técnica y la tecnología se unen en el camino de la fruta desde el árbol hasta nuestras cestas de la compra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software ha sido concebido de manera innovadora para aumentar el rendimiento, mejorar la precisión de clasificación y maximizar ganancias.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En la clasificación, cada pieza es fotografiada unas 60 veces en cuestión de segundos para estimar su coloración, tamaño, etc. Es la manera de agruparlas las que son de igual clase para que vayan todas juntas al mismo canal de lavado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cuáles son los beneficios más interesantes del <strong><em>fruit sorter retrofit</em></strong> ?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Veamos con más detalle los beneficios clave de actualizar su planta de clasificación con nuestro software:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Más calidad en la clasificación</strong><br>Una combinación de hardware de alto rendimiento y nuevos algoritmos de aprendizaje automático en nuestro software tienen como consecuencia una mayor eficacia y eficiencia en el proceso de clasificación de frutas y verduras.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Reducir costes en mano de obra</strong><br>La mano de obra cualificada es cada vez más difícil de encontrar y cada vez más cara de mantener. Reducir los clasificadores manuales permite disminuir los costes de mano de obra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Mayor cantidad de producto envasado.</strong><br>Aumentando el rendimiento y reduciendo el desperdicio de productos se consigue desperdiciar menos producto. Esto se debe a que una clasificación manual puede generar inconsistencias de calidad o errores de valoración, desperdiciándose al final fruta que podría ser considerada como «buena».</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Software inteligente</strong> <strong>pero de uso sencillo</strong><br>Una actualización de la maquinaria te va a ofrecer un hardware potente y software inteligente de clasificación de defectos muy avanzado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El reto está en no dificultar el uso del software, por muchas prestaciones que tenga. Nuestro software está diseñado para adaptarse a cualquier tipo de fruta. Te dejamos el enlace a la sección en la que puedes ver todas las frutas con las que hemos trabajado hasta la fecha.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Con el futuro en mente</strong><br>Lo que te recomendamos es que instales en tu antigua maquinaria un software que te permita actualizaciones futuras a medida que se dispone de nueva tecnología.<br>De esta manera, aseguras que tu planta de envasado permanezca a la vanguardia en un futuro cambiante y cada vez más digital.<br>Así te evitas tener que invertir recurrentemente tiempo y recursos en nuevos programas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo sé si es lo ideal para mi negocio?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Si no quieres o no puedes invertir ahora en maquinaria completamente nueva, lo que puedes es modernizar la que tienes. Mejorarás de este modo el nivel de tu clasificación de frutas con los beneficios que ya hemos comentado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué te ofrece el software de ingivision?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un software muy especializado, totalmente optimizado que puede modernizar cualquier calibrador. ¿Lo mejor? su facilidad de uso que permite que, en unas pocas horas de formación, cualquier persona del equipo lo pueda configurar y ponerse a funcionar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/productos/\">Conoce todas sus prestaciones.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ahora que ya sabes cómo te puede ayudar el retrofit ¿te parece una buena opción?</p>\n<!-- /wp:paragraph -->','Fruit sorter retrofit, la solución definitiva para no invertir miles de euros','','inherit','closed','closed','','1103-revision-v1','','','2020-11-19 08:57:43','2020-11-19 08:57:43','',1103,'https://www.ingivision.com/2020/11/19/1103-revision-v1/',0,'revision','',0),(1107,1,'2020-11-19 09:13:08','2020-11-19 09:13:08','<!-- wp:paragraph -->\n<p>Sabemos que la maquinaria empleada en el sector hortofrutícola y en sistemas de clasificación, almacenamiento y empaque requiere un desembolso importante de capital. En muchas ocasiones no podemos o no estamos dispuestos a asumir ese tipo de coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿En qué consiste el <em>retrofit</em>?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><strong><em>Fruit sorter retrofit</em></strong> se podría traducir como modernización el proceso de clasificación de frutas.<br><br>Para no incurrir en el elevado coste que comentábamos, las principales plantas de envasado de frutas y verduras optan por actualizar su maquinaria existente, para prolongar la vida de las máquinas con un software totalmente actualizado y con las últimas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por tanto, la naturaleza, la técnica y la tecnología se unen en el camino de la fruta desde el árbol hasta nuestras cestas de la compra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software ha sido concebido de manera innovadora para aumentar el rendimiento, mejorar la precisión de clasificación y maximizar ganancias.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En la clasificación, cada pieza es fotografiada unas 60 veces en cuestión de segundos para estimar su coloración, tamaño, etc. Es la manera de agruparlas las que son de igual clase para que vayan todas juntas al mismo canal de lavado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cuáles son los beneficios más interesantes del <strong><em>fruit sorter retrofit</em></strong> ?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Veamos con más detalle los beneficios clave de actualizar su planta de clasificación con nuestro software:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Más calidad en la clasificación</strong><br>Una combinación de hardware de alto rendimiento y nuevos algoritmos de aprendizaje automático en nuestro software tienen como consecuencia una mayor eficacia y eficiencia en el proceso de clasificación de frutas y verduras.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Reducir costes en mano de obra</strong><br>La mano de obra cualificada es cada vez más difícil de encontrar y cada vez más cara de mantener. Reducir los clasificadores manuales permite disminuir los costes de mano de obra.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Mayor cantidad de producto envasado.</strong><br>Aumentando el rendimiento y reduciendo el desperdicio de productos se consigue desperdiciar menos producto. Esto se debe a que una clasificación manual puede generar inconsistencias de calidad o errores de valoración, desperdiciándose al final fruta que podría ser considerada como «buena».</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Software inteligente</strong> <strong>pero de uso sencillo</strong><br>Una actualización de la maquinaria te va a ofrecer un hardware potente y software inteligente de clasificación de defectos muy avanzado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El reto está en no dificultar el uso del software, por muchas prestaciones que tenga. Nuestro software está diseñado para adaptarse a cualquier tipo de fruta. Te dejamos el enlace a la sección en la que puedes ver todas las frutas con las que hemos trabajado hasta la fecha.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><strong>Con el futuro en mente</strong><br>Lo que te recomendamos es que instales en tu antigua maquinaria un software que te permita actualizaciones futuras a medida que se dispone de nueva tecnología.<br>De esta manera, aseguras que tu planta de envasado permanezca a la vanguardia en un futuro cambiante y cada vez más digital.<br>Así te evitas tener que invertir recurrentemente tiempo y recursos en nuevos programas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo sé si es lo ideal para mi negocio?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Si no quieres o no puedes invertir ahora en maquinaria completamente nueva, lo que puedes es modernizar la que tienes. Mejorarás de este modo el nivel de tu clasificación de frutas con los beneficios que ya hemos comentado. Si quieres leer más a cerca del retrofit visita nuestra <a href=\"https://www.ingivision.com/servicios/\">sección servicio</a>s</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué te ofrece el software de ingivision?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un software muy especializado, totalmente optimizado que puede modernizar cualquier calibrador. ¿Lo mejor? su facilidad de uso que permite que, en unas pocas horas de formación, cualquier persona del equipo lo pueda configurar y ponerse a funcionar.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/productos/\">Conoce todas sus prestaciones.</a></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ahora que ya sabes cómo te puede ayudar el retrofit ¿te parece una buena opción?</p>\n<!-- /wp:paragraph -->','Fruit sorter retrofit, la solución definitiva para no invertir miles de euros','','inherit','closed','closed','','1103-revision-v1','','','2020-11-19 09:13:08','2020-11-19 09:13:08','',1103,'https://www.ingivision.com/2020/11/19/1103-revision-v1/',0,'revision','',0),(1108,1,'2020-11-19 09:29:19','2020-11-19 09:29:19','','Fruit-sorter-retrofit','','inherit','open','closed','','fruit-sorter-retrofit','','','2020-11-19 09:29:46','2020-11-19 09:29:46','',1103,'https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit.png',0,'attachment','image/png',0),(1109,0,'2020-11-20 16:41:37','2020-11-20 16:41:37','zartinoureddine@gmail.com\nNoureddine ZARTI','zartinoureddine@gmail.com','','publish','closed','closed','','zartinoureddine-gmail-com','','','2020-11-20 16:41:37','2020-11-20 16:41:37','',0,'https://www.ingivision.com/?post_type=flamingo_contact&p=1109',0,'flamingo_contact','',0),(1110,0,'2020-11-20 16:41:36','2020-11-20 16:41:36','Noureddine ZARTI\nzartinoureddine@gmail.com\n+34632230056\nSerá un placer trabajar en vuestra empresa.\nf90e010736fbb1eedb82afcac897f3ae\n3\n185.237.102.240\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36\nhttps://www.ingivision.com/en/computer-electronic-engineer/\n20 de noviembre de 2020\n16:41\n826\ncomputer-electronic-engineer\nJobs\nhttps://www.ingivision.com/en/computer-electronic-engineer/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-59','','','2020-11-20 16:41:36','2020-11-20 16:41:36','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1110',0,'flamingo_inbound','',0),(1111,0,'2020-11-21 02:04:24','2020-11-21 02:04:24','yassine.elagdi@gmail.com\nYassine Elagdi','yassine.elagdi@gmail.com','','publish','closed','closed','','yassine-elagdi-gmail-com','','','2020-11-21 02:04:24','2020-11-21 02:04:24','',0,'https://www.ingivision.com/?post_type=flamingo_contact&p=1111',0,'flamingo_contact','',0),(1112,0,'2020-11-21 02:04:24','2020-11-21 02:04:24','Yassine Elagdi\nyassine.elagdi@gmail.com\n+212649209037\nHi ,\r\n\r\nI\'m applying for Computer/Electronic Engineer (Support and development technician) position. I\'m extremely enthusiastic about this opportunity. My resume appears below.\r\n\r\nThank you for your consideration.\n8a7da4d030077574e78bd9b6814e0749\n4\n196.70.209.142\nMozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.198 Safari/537.36\nhttps://www.ingivision.com/en/computer-electronic-engineer/\n21 de noviembre de 2020\n02:04\n826\ncomputer-electronic-engineer\nJobs\nhttps://www.ingivision.com/en/computer-electronic-engineer/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-60','','','2020-11-21 02:04:24','2020-11-21 02:04:24','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1112',0,'flamingo_inbound','',0),(1113,0,'2020-11-23 08:00:59','2020-11-23 08:00:59','Hamad Bin\nsales1_hbkcontracting@outlook.com\n+97444451133\nRe:Order\nGood Day Sir/Madam, \r\n\r\nWe are interested in your product field.\r\nKindly send us your company catalog urgently and the Expected time of Delivery? \r\n(1) Kindly send FOB prices \r\n(2) Inform Expected time of Delivery? \r\n(3) Payment term? (T/T or L/C preferred)\r\n\r\nKindly get back to us urgently. \r\n\r\nBest Regard\r\nHamad Bin \r\nHBK Contracting Company.\r\nP.O.Box 1362, Doha - Qatar\r\nPhone: +97444451133\r\nTelefax: +97444451022\r\nE:sales1_hbkcontracting@outlook.com     \r\nWeb:http://hbkcontracting.com\n3\n197.210.53.137\nMozilla/5.0 (X11; CrOS x86_64 12239.92.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.136 Safari/537.36\nhttps://www.ingivision.com/contacto/\n23 de noviembre de 2020\n08:00\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-61','','','2020-11-23 08:00:59','2020-11-23 08:00:59','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1113',0,'flamingo_inbound','',0),(1114,0,'2020-11-23 08:05:21','2020-11-23 08:05:21','Hamad Bin\nsales1_hbkcontracting@outlook.com\n89938333\nRe:Order\nGood Day Sir/Madam, \r\n\r\nWe are interested in your product field.\r\nKindly send us your company catalog urgently and the Expected time of Delivery? \r\n(1) Kindly send FOB prices \r\n(2) Inform Expected time of Delivery? \r\n(3) Payment term? (T/T or L/C preferred)\r\n\r\nKindly get back to us urgently. \r\n\r\nBest Regard\r\nHamad Bin \r\nHBK Contracting Company.\r\nP.O.Box 1362, Doha - Qatar\r\nPhone: +97444451133\r\nTelefax: +97444451022\r\nE:sales1_hbkcontracting@outlook.com     \r\nWeb:http://hbkcontracting.com\n4\n197.210.53.182\nMozilla/5.0 (X11; CrOS x86_64 12239.92.0) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/76.0.3809.136 Safari/537.36\nhttps://www.ingivision.com/contacto/\n23 de noviembre de 2020\n08:05\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-62','','','2020-11-23 08:05:21','2020-11-23 08:05:21','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1114',0,'flamingo_inbound','',0),(1115,1,'2020-11-24 12:16:47','2020-11-24 12:16:47','','berenjena','','inherit','open','closed','','berenjena-3','','','2020-11-24 12:17:25','2020-11-24 12:17:25','',964,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-1.png',0,'attachment','image/png',0),(1116,1,'2020-11-24 12:18:05','2020-11-24 12:18:05','','berenjena','','inherit','open','closed','','berenjena-01','','','2020-11-24 12:18:21','2020-11-24 12:18:21','',964,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png',0,'attachment','image/png',0),(1118,1,'2020-11-24 12:20:36','2020-11-24 12:20:36','<!-- wp:heading -->\n<h2>Software de clasificación para berenjenas</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de berenjenas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de berenjenas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en las berenjenas en cualquiera de sus variedades es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de berenjena, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas </strong>por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada berenjena para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de berenjenas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 albaricoques dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1116,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01-1024x684.png\" alt=\"clasificación de berenjena\" class=\"wp-image-1116\"/></figure>\n<!-- /wp:image -->','Berenjenas','','inherit','closed','closed','','964-revision-v1','','','2020-11-24 12:20:36','2020-11-24 12:20:36','',964,'https://www.ingivision.com/2020/11/24/964-revision-v1/',0,'revision','',0),(1119,1,'2020-11-24 12:37:01','2020-11-24 12:37:01','','aguacate-01-01','','inherit','open','closed','','aguacate-01-01','','','2020-11-24 12:37:19','2020-11-24 12:37:19','',948,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01.png',0,'attachment','image/png',0),(1120,1,'2020-11-24 12:37:22','2020-11-24 12:37:22','<!-- wp:heading -->\n<h2 id=\"block-33f036d8-cf02-4843-b7d0-641c0035f6c2\">Software de clasificación para aguacates</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-f0e6fea6-05c5-4d7d-a69d-1eea821dbf53\">Nuestro software de fácil manejo es ideal para la clasificación de aguacates de cualquier variedad. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-19022594-0fb2-4d41-99f1-2e2138fef78c\">Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-82e1f942-480a-4388-bb98-d33a31156b09\"><strong>Clasificación de aguacates por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-2046f56e-e860-45c9-8db2-8e836a3f0b3e\"><br>El color en los aguacates, es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del tipo de aguacate, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-7acdd99b-f215-45df-b032-5556ee4fd176\"><strong>Clasificación de aguacates por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-5f01beb9-2961-408a-8430-e8852034ff52\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada aguacate para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-e8d0ebd6-2d41-4d5f-b5de-0fc9b5240471\"><strong>Clasificación de aguacates por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-e92e5dca-f155-492d-a035-ba6870953bd1\"><br>Nuestro software es capaz de determinar el peso de hasta 15 aguacates dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1119,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01-1024x596.png\" alt=\"clasificación de aguacates\" class=\"wp-image-1119\"/></figure>\n<!-- /wp:image -->','Aguacates','','inherit','closed','closed','','948-revision-v1','','','2020-11-24 12:37:22','2020-11-24 12:37:22','',948,'https://www.ingivision.com/2020/11/24/948-revision-v1/',0,'revision','',0),(1123,1,'2020-12-18 08:45:32','2020-12-18 08:45:32','<!-- wp:paragraph -->\n<p><strong>Dar con un buen sistema electrónico para calibradores no es complicado, solo hay que tener claro qué necesitamos</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si eres dueño o gerente de un taller o empresa que se dedica al diseño y construcción de maquinaria hortofrutícola sabrás que necesitas implantar un sistema electrónico para calibradores. Este sistema será el complemento para la parte mecánica que fabricas en tu empresa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si estás en este caso, sigue leyendo porque vamos a darte las claves principales para elegir un buen software sin morir en el intento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué características debería tener el sistema electrónico para calibradores ideal?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lo primero que vamos a hacer es repasar las ventajas que un sistema electrónico de clasificación nos tiene que ofrecer:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Mejora de la competitividad</strong>. Bajo coste de producción, reducción de gastos de mano de obra, ahorro de materia prima y bajo consumo energético.<br></li><li><strong>Seguridad</strong>. Que nos ayude a mejorar las condiciones de trabajo; al reducir la intervención del hombre, disminuyen los accidentes y los posibles daños que el proceso podría ocasionar.<br></li><li><strong>Calidad</strong>. Que el software nos permita lograr un mejor acabado y una calidad más constante que mediante la intervención humana.<br></li><li><strong>Evitar limitaciones humanas</strong>. El proceso se pueda realizar en cualquier momento incluso durante las 24 horas si es necesario.<br></li><li><strong>Disponibilidad</strong>. La rapidez con la que se lleva a cabo el proceso de clasificación, mejora la disposición del producto, pudiéndose proveer la cantidad necesaria en el momento preciso, cuando el mercado lo requiera.<br></li><li><strong>Flexibilidad</strong>. Que el sistema pueda ser modificado y adaptado de forma sencilla y rápida a nuevas frutas o requerimientos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si las opciones de software que barajas te ofrecen estos beneficios, pasaríamos a las características del software y del hardware.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>La clave está en el software</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atendiendo a las características del software, debemos valorar:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Atributos por los que permite la clasificación: tamaño, forma, color, peso, calidad, aspecto, densidad… Cuantos más atributos de clasificación nos permita mucho mejor.<br></li><li>Velocidad de clasificación. Aunque en este caso muchas veces es la parte mecánica (el calibrador) la que limita la velocidad del software, es importante conocer el número máximo de frutas u hortalizas que puede alcanzar el software.<br>Te dejamos un ejemplo de<a href=\"https://www.youtube.com/watch?v=Jiee_K1jkIE\"> alta velocidad en un calibrador que tiene nuestro sistema implantado</a>.<br></li><li>Tipologías de frutas que te permite calibrar un mismo sistema electrónico: frutas de hueso y cítricos son los habituales, pero una buena elección será el sistema que te permita calibrar frutas y hortalizas de muy diversos tamaños y formatos.<br>Un software con el que puedas clasificar cerezas y sandías por ejemplo.<br></li><li>Fiabilidad y escalabilidad.<br></li><li>Facilidad de uso. <br>A todos nos gusta la sencillez. <br>Si pensamos en aplicaciones de uso mayoritario hoy día, nos viene a la mente WhatsApp, Google o Netflix. <br><br>Una de las claves de que estas apps estén triunfando tanto que ya no concebimos la vida sin ellas es sin duda su facilidad de uso. <br><br>El software que contratemos para nuestros calibradores debe ser sobre todo sencillo de utilizar. Para que en unas pocas horas de formación y uso, cualquier persona de nuestra plantilla se sienta familiarizado con el software y capacitado para su uso.<br></li><li>Detección de productos defectuosos sin necesidad de complementar el sistema con otro módulo de calidad externa.<br>Nuestra recomendación es que elijas un software completo, que no necesite módulos para ampliar su funcionalidad.<br></li><li>Que permita la implementación del sistema en calibradores más antiguos sin necesidad de hacer una inversión a nivel mecánico. Esto te será útil si ya tienes en tu empresa maquinaria con algunos años.<br></li><li>Un plus será que sea accesible y manejable desde dispositivos móviles.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>¿Es importante el hardware?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No te vamos a mentir. El hardware es importante, pero a nuestro juicio, tiene un menor peso en la decisión de compra.<br><br>Hoy en día, la disponibilidad de hardware en el mercado (cámaras, iluminación LED, procesador industrial, PLC etc.) con una calidad-precio aceptable es enorme.<br><br>Corresponde a la empresa que diseña el software optar por unos componentes asequibles que ofrezcan todas las garantías o por otros de coste más elevado.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicios complementarios interesantes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Habitualmente, las empresas de programación de este tipo de sistemas electrónicos ofrecen una serie de servicios (incluidos o no en el presupuesto). Lo ideal es que te ofrezcan lo siguiente:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Instalación</strong>. Que sea la propia empresa proveedora quien instale en tus máquinas de calibrado el programa.<br>Es lo mejor.<br>Te aseguras que el programa está bien instalado, te lo dejan funcionando y te permite despreocuparte de este primer paso.<br></li><li><strong>Formación en el manejo.</strong> Aquí podrás encontrarte con distintas opciones. Desde la entrega de un manual de uso hasta formación presencial con un técnico de la empresa proveedora que se desplaza a tus instalaciones a formar al personal encargado del manejo diario del software.<br><br>Evidentemente, cuanto más azúcar, más dulce.<br><br>Nuestra recomendación es formación presencial o virtual en su defecto.<br></li><li><strong>Garantía</strong>. Contar con un período de garantía de una determinada duración siempre te dará mayor tranquilidad.<br></li><li><strong>Soporte por remoto </strong>para solucionar posibles problemas. Uno de los servicios mejor valorados por nuestros clientes.<br>Que ante cualquier dificultad, puedas contactar con un técnico y solucionar el problema por remoto no tiene precio.<br></li><li><strong>Actualizaciones futuras</strong>. Si la empresa tiene un sistema en constante desarrollo o evolución, es interesante poder acceder al paquete de actualizaciones de forma regular, para asegurar que nuestro sistema está actualizado, optimizado y cuenta con las últimas tecnologías.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y hasta aquí nuestras recomendaciones sobre lo que te sugerimos tener en cuenta para poder elegir un buen software de clasificación de frutas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Esperamos que te sirvan de ayuda y si sigues con dudas sobre alguno de los aspectos que te hemos contado o quieres añadir algo más deja tu comentario.</p>\n<!-- /wp:paragraph -->','Calibrado de frutas ¿cómo elegir un buen software sin morir en el intento?','','publish','open','open','','calibrado-de-frutas-como-elegir-software','','','2020-12-18 09:26:50','2020-12-18 09:26:50','',0,'https://www.ingivision.com/?p=1123',0,'post','',0),(1124,1,'2020-12-17 20:19:54','2020-12-17 20:19:54','<!-- wp:paragraph -->\n<p><strong>Dar con un buen sistema electrónico para calibradores no es complicado, solo hay que tener claro qué necesitamos</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si eres dueño o gerente de un taller o empresa que se dedica al diseño y construcción de maquinaria hortofrutícola sabrás que necesitas implantar un sistema electrónico para calibradores. Este sistema será el complemento para la parte mecánica que fabricas en tu empresa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si estás en este caso, sigue leyendo porque vamos a darte las claves principales para elegir un buen software sin morir en el intento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué características debería tener el sistema electrónico para calibradores ideal?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lo primero que vamos a hacer es repasar las ventajas que un sistema electrónico de clasificación nos tiene que ofrecer:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Mejora de la competitividad</strong>. Bajo coste de producción, reducción de gastos de mano de obra, ahorro de materia prima y bajo consumo energético.<br></li><li><strong>Seguridad</strong>. Que nos ayude a mejorar las condiciones de trabajo; al reducir la intervención del hombre, disminuyen los accidentes y los posibles daños que el proceso podría ocasionar.<br></li><li><strong>Calidad</strong>. Que el software nos permita lograr un mejor acabado y una calidad más constante que mediante la intervención humana.<br></li><li><strong>Evitar limitaciones humanas</strong>. El proceso se pueda realizar en cualquier momento incluso durante las 24 horas si es necesario.<br></li><li><strong>Disponibilidad</strong>. La rapidez con la que se lleva a cabo el proceso de clasificación, mejora la disposición del producto, pudiéndose proveer la cantidad necesaria en el momento preciso, cuando el mercado lo requiera.<br></li><li><strong>Flexibilidad</strong>. Que el sistema pueda ser modificado y adaptado de forma sencilla y rápida a nuevas frutas o requerimientos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si las opciones de software que barajas te ofrecen estos beneficios, pasaríamos a las características del software y del hardware.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>La clave está en el software</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atendiendo a las características del software, debemos valorar:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Atributos por los que permite la clasificación: tamaño, forma, color, peso, calidad, aspecto, densidad… Cuantos más atributos de clasificación nos permita mucho mejor.<br></li><li>Velocidad de clasificación. Aunque en este caso muchas veces es la parte mecánica (el calibrador) la que limita la velocidad del software, es importante conocer el número máximo de frutas u hortalizas que puede alcanzar el software.<br>Te dejamos un ejemplo de<a href=\"https://www.youtube.com/watch?v=Jiee_K1jkIE\"> alta velocidad en un calibrador que tiene nuestro sistema implantado</a>.<br></li><li>Tipologías de frutas que te permite calibrar un mismo sistema electrónico: frutas de hueso y cítricos son los habituales, pero una buena elección será el sistema que te permita calibrar frutas y hortalizas de muy diversos tamaños y formatos.<br>Un software con el que puedas clasificar cerezas y sandías por ejemplo.<br></li><li>Fiabilidad y escalabilidad.<br></li><li>Facilidad de uso. <br>A todos nos gusta la sencillez. <br>Si pensamos en aplicaciones de uso mayoritario hoy día, nos viene a la mente WhatsApp, Google o Netflix. <br><br>Una de las claves de que estas apps estén triunfando tanto que ya no concebimos la vida sin ellas es sin duda su facilidad de uso. <br><br>El software que contratemos para nuestros calibradores debe ser sobre todo sencillo de utilizar. Para que en unas pocas horas de formación y uso, cualquier persona de nuestra plantilla se sienta familiarizado con el software y capacitado para su uso.<br></li><li>Detección de productos defectuosos sin necesidad de complementar el sistema con otro módulo de calidad externa.<br>Nuestra recomendación es que elijas un software completo, que no necesite módulos para ampliar su funcionalidad.<br></li><li>Que permita la implementación del sistema en calibradores más antiguos sin necesidad de hacer una inversión a nivel mecánico. Esto te será útil si ya tienes en tu empresa maquinaria con algunos años.<br></li><li>Un plus será que sea accesible y manejable desde dispositivos móviles.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>¿Es importante el hardware?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No te vamos a mentir. El hardware es importante, pero a nuestro juicio, tiene un menor peso en la decisión de compra.<br><br>Hoy en día, la disponibilidad de hardware en el mercado (cámaras, iluminación LED, procesador industrial, PLC etc.) con una calidad-precio aceptable es enorme.<br><br>Corresponde a la empresa que diseña el software optar por unos componentes asequibles que ofrezcan todas las garantías o por otros de coste más elevado.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicios complementarios interesantes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Habitualmente, las empresas de programación de este tipo de sistemas electrónicos ofrecen una serie de servicios (incluidos o no en el presupuesto). Lo ideal es que te ofrezcan lo siguiente:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Instalación</strong>. Que sea la propia empresa proveedora quien instale en tus máquinas de calibrado el programa.<br>Es lo mejor.<br>Te aseguras que el programa está bien instalado, te lo dejan funcionando y te permite despreocuparte de este primer paso.<br></li><li><strong>Formación en el manejo.</strong> Aquí podrás encontrarte con distintas opciones. Desde la entrega de un manual de uso hasta formación presencial con un técnico de la empresa proveedora que se desplaza a tus instalaciones a formar al personal encargado del manejo diario del software.<br><br>Evidentemente, cuanto más azúcar, más dulce.<br><br>Nuestra recomendación es formación presencial o virtual en su defecto.<br></li><li><strong>Garantía</strong>. Contar con un período de garantía de una determinada duración siempre te dará mayor tranquilidad.<br></li><li><strong>Soporte por remoto </strong>para solucionar posibles problemas. Uno de los servicios mejor valorados por nuestros clientes.<br>Que ante cualquier dificultad, puedas contactar con un técnico y solucionar el problema por remoto no tiene precio.<br></li><li><strong>Actualizaciones futuras</strong>. Si la empresa tiene un sistema en constante desarrollo o evolución, es interesante poder acceder al paquete de actualizaciones de forma regular, para asegurar que nuestro sistema está actualizado, optimizado y cuenta con las últimas tecnologías.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y hasta aquí nuestras recomendaciones sobre lo que te sugerimos tener en cuenta para poder elegir un buen software de clasificación de frutas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Esperamos que te sirvan de ayuda y si sigues con dudas sobre alguno de los aspectos que te hemos contado o quieres añadir algo más deja tu comentario.</p>\n<!-- /wp:paragraph -->','Calibrado de frutas ¿cómo elegir un buen software sin morir en el intento?','','inherit','closed','closed','','1123-revision-v1','','','2020-12-17 20:19:54','2020-12-17 20:19:54','',1123,'https://www.ingivision.com/2020/12/17/1123-revision-v1/',0,'revision','',0),(1125,1,'2020-12-17 20:33:31','2020-12-17 20:33:31','','como-elegir-software-clasificacion','','inherit','open','closed','','como-elegir-software-clasificacion','','','2020-12-17 20:33:52','2020-12-17 20:33:52','',1123,'https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg',0,'attachment','image/jpeg',0),(1134,0,'2020-12-27 16:18:25','2020-12-27 16:18:25','<blockquote class=\"wp-embedded-content\" data-secret=\"t42zU7V1Jj\"><a href=\"https://www.ingivision.com/en/contact/\">Contact</a></blockquote><iframe class=\"wp-embedded-content\" sandbox=\"allow-scripts\" security=\"restricted\" style=\"position: absolute; clip: rect(1px, 1px, 1px, 1px);\" title=\"«Contact» — Ingivision\" src=\"https://www.ingivision.com/en/contact/embed/#?secret=t42zU7V1Jj\" data-secret=\"t42zU7V1Jj\" width=\"500\" height=\"282\" frameborder=\"0\" marginwidth=\"0\" marginheight=\"0\" scrolling=\"no\"></iframe>','','','publish','closed','closed','','903e7a15b5644707d58ef94e90710530','','','2020-12-27 16:18:25','2020-12-27 16:18:25','',0,'https://www.ingivision.com/2020/12/27/903e7a15b5644707d58ef94e90710530/',0,'oembed_cache','',0),(1135,0,'2020-12-27 16:18:52','2020-12-27 16:18:52','Peyman shahbazi\nshahbazipeyman52@gmail.com\n+989141520593\nPrice request\nHi \r\nI visited your site and became interested in your products. Please Send me product details and prices.\r\nBest regards \r\nPeyman , iran\n5\n185.177.229.140\nMozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.1 Mobile/15E148 Safari/604.1\nhttps://www.ingivision.com/en/contact/\n27 de diciembre de 2020\n16:18\n106\ncontact\nContact\nhttps://www.ingivision.com/en/contact/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-13','','','2020-12-27 16:18:52','2020-12-27 16:18:52','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1135',0,'flamingo_inbound','',0),(1142,0,'2021-01-12 00:47:07','2021-01-12 00:47:07','{{unknown}}','','','publish','closed','closed','','612ae3ff8cf47177c109cf3eee5b68aa','','','2021-01-12 00:47:07','2021-01-12 00:47:07','',0,'https://www.ingivision.com/2021/01/12/612ae3ff8cf47177c109cf3eee5b68aa/',0,'oembed_cache','',0),(1145,1,'2021-01-14 11:39:30','2021-01-14 11:39:30','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) Frutos sin defectos de piel ni forma</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) Frutos con defectos de piel, forma o coloración incompleta</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Imagen número 1</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Imagen número 2</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\">Aquí puedes consultar más información sobre nuestro sistema de clasificación para naranjas y mandarinas</a></p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','publish','open','open','','clasificacion-automatica-calidad-externa-citricos','','','2021-01-18 11:21:49','2021-01-18 11:21:49','',0,'https://www.ingivision.com/?p=1145',0,'post','',0),(1146,1,'2021-01-14 10:03:17','2021-01-14 10:03:17','','Captura-de-pantalla-2021-01-14-a-las-10.59.26','','inherit','open','closed','','captura-de-pantalla-2021-01-14-a-las-10-59-26','','','2021-01-14 10:03:17','2021-01-14 10:03:17','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26.png',0,'attachment','image/png',0),(1147,1,'2021-01-14 10:07:47','2021-01-14 10:07:47','','Captura-de-pantalla-2021-01-14-a-las-10.59.26-1','','inherit','open','closed','','captura-de-pantalla-2021-01-14-a-las-10-59-26-1','','','2021-01-14 10:07:47','2021-01-14 10:07:47','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26-1.png',0,'attachment','image/png',0),(1148,1,'2021-01-14 10:08:33','2021-01-14 10:08:33','','Captura-de-pantalla-2021-01-14-a-las-10.59.43','','inherit','open','closed','','captura-de-pantalla-2021-01-14-a-las-10-59-43','','','2021-01-14 10:08:33','2021-01-14 10:08:33','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.43.png',0,'attachment','image/png',0),(1149,1,'2021-01-14 10:15:48','2021-01-14 10:15:48','','Frutos-sin-defectos','','inherit','open','closed','','frutos-sin-defectos','','','2021-01-14 10:15:48','2021-01-14 10:15:48','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png',0,'attachment','image/png',0),(1150,1,'2021-01-14 10:15:55','2021-01-14 10:15:55','','Frutos-con-defectos','','inherit','open','closed','','frutos-con-defectos','','','2021-01-14 10:15:55','2021-01-14 10:15:55','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos.png',0,'attachment','image/png',0),(1151,1,'2021-01-14 10:16:43','2021-01-14 10:16:43','','Frutos-con-defectos-1','','inherit','open','closed','','frutos-con-defectos-1','','','2021-01-14 10:16:43','2021-01-14 10:16:43','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png',0,'attachment','image/png',0),(1152,1,'2021-01-14 10:16:52','2021-01-14 10:16:52','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:gallery {\"ids\":[1151]} -->\n<figure class=\"wp-block-gallery columns-1 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" data-id=\"1151\" data-full-url=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" data-link=\"https://www.ingivision.com/?attachment_id=1151\" class=\"wp-image-1151\"/></figure></li></ul></figure>\n<!-- /wp:gallery --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 10:16:52','2021-01-14 10:16:52','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1153,1,'2021-01-14 10:18:16','2021-01-14 10:18:16','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:gallery {\"ids\":[1151]} -->\n<figure class=\"wp-block-gallery columns-1 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" data-id=\"1151\" data-full-url=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" data-link=\"https://www.ingivision.com/?attachment_id=1151\" class=\"wp-image-1151\"/><figcaption class=\"blocks-gallery-item__caption\">2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 10:18:16','2021-01-14 10:18:16','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1154,1,'2021-01-14 10:20:06','2021-01-14 10:20:06','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:gallery {\"ids\":[1151]} -->\n<figure class=\"wp-block-gallery columns-1 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" data-id=\"1151\" data-full-url=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" data-link=\"https://www.ingivision.com/?attachment_id=1151\" class=\"wp-image-1151\"/><figcaption class=\"blocks-gallery-item__caption\">2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 10:20:06','2021-01-14 10:20:06','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1155,1,'2021-01-14 10:27:16','2021-01-14 10:27:16','','clementina-con-defectos-perdida-pedúnculo','','inherit','open','closed','','clementina-con-defectos-perdida-pedunculo','','','2021-01-14 10:27:16','2021-01-14 10:27:16','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png',0,'attachment','image/png',0),(1156,1,'2021-01-14 10:27:30','2021-01-14 10:27:30','','clementina-con-grandes-defectos-malformaciones','','inherit','open','closed','','clementina-con-grandes-defectos-malformaciones','','','2021-01-14 10:27:30','2021-01-14 10:27:30','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png',0,'attachment','image/png',0),(1157,1,'2021-01-14 10:30:16','2021-01-14 10:30:16','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:gallery {\"ids\":[1151]} -->\n<figure class=\"wp-block-gallery columns-1 is-cropped\"><ul class=\"blocks-gallery-grid\"><li class=\"blocks-gallery-item\"><figure><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" data-id=\"1151\" data-full-url=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" data-link=\"https://www.ingivision.com/?attachment_id=1151\" class=\"wp-image-1151\"/><figcaption class=\"blocks-gallery-item__caption\">2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure></li></ul></figure>\n<!-- /wp:gallery --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 10:30:16','2021-01-14 10:30:16','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1158,1,'2021-01-14 10:45:27','2021-01-14 10:45:27','<!-- wp:paragraph -->\n<p><strong>Dar con un buen sistema electrónico para calibradores no es complicado, solo hay que tener claro qué necesitamos</strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si eres dueño o gerente de un taller o empresa que se dedica al diseño y construcción de maquinaria hortofrutícola sabrás que necesitas implantar un sistema electrónico para calibradores. Este sistema será el complemento para la parte mecánica que fabricas en tu empresa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si estás en este caso, sigue leyendo porque vamos a darte las claves principales para elegir un buen software sin morir en el intento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué características debería tener el sistema electrónico para calibradores ideal?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Lo primero que vamos a hacer es repasar las ventajas que un sistema electrónico de clasificación nos tiene que ofrecer:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Mejora de la competitividad</strong>. Bajo coste de producción, reducción de gastos de mano de obra, ahorro de materia prima y bajo consumo energético.<br></li><li><strong>Seguridad</strong>. Que nos ayude a mejorar las condiciones de trabajo; al reducir la intervención del hombre, disminuyen los accidentes y los posibles daños que el proceso podría ocasionar.<br></li><li><strong>Calidad</strong>. Que el software nos permita lograr un mejor acabado y una calidad más constante que mediante la intervención humana.<br></li><li><strong>Evitar limitaciones humanas</strong>. El proceso se pueda realizar en cualquier momento incluso durante las 24 horas si es necesario.<br></li><li><strong>Disponibilidad</strong>. La rapidez con la que se lleva a cabo el proceso de clasificación, mejora la disposición del producto, pudiéndose proveer la cantidad necesaria en el momento preciso, cuando el mercado lo requiera.<br></li><li><strong>Flexibilidad</strong>. Que el sistema pueda ser modificado y adaptado de forma sencilla y rápida a nuevas frutas o requerimientos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si las opciones de software que barajas te ofrecen estos beneficios, pasaríamos a las características del software y del hardware.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>La clave está en el software</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Atendiendo a las características del software, debemos valorar:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Atributos por los que permite la clasificación: tamaño, forma, color, peso, calidad, aspecto, densidad… Cuantos más atributos de clasificación nos permita mucho mejor.<br></li><li>Velocidad de clasificación. Aunque en este caso muchas veces es la parte mecánica (el calibrador) la que limita la velocidad del software, es importante conocer el número máximo de frutas u hortalizas que puede alcanzar el software.<br>Te dejamos un ejemplo de<a href=\"https://www.youtube.com/watch?v=Jiee_K1jkIE\"> alta velocidad en un calibrador que tiene nuestro sistema implantado</a>.<br></li><li>Tipologías de frutas que te permite calibrar un mismo sistema electrónico: frutas de hueso y cítricos son los habituales, pero una buena elección será el sistema que te permita calibrar frutas y hortalizas de muy diversos tamaños y formatos.<br>Un software con el que puedas clasificar cerezas y sandías por ejemplo.<br></li><li>Fiabilidad y escalabilidad.<br></li><li>Facilidad de uso. <br>A todos nos gusta la sencillez. <br>Si pensamos en aplicaciones de uso mayoritario hoy día, nos viene a la mente WhatsApp, Google o Netflix. <br><br>Una de las claves de que estas apps estén triunfando tanto que ya no concebimos la vida sin ellas es sin duda su facilidad de uso. <br><br>El software que contratemos para nuestros calibradores debe ser sobre todo sencillo de utilizar. Para que en unas pocas horas de formación y uso, cualquier persona de nuestra plantilla se sienta familiarizado con el software y capacitado para su uso.<br></li><li>Detección de productos defectuosos sin necesidad de complementar el sistema con otro módulo de calidad externa.<br>Nuestra recomendación es que elijas un software completo, que no necesite módulos para ampliar su funcionalidad.<br></li><li>Que permita la implementación del sistema en calibradores más antiguos sin necesidad de hacer una inversión a nivel mecánico. Esto te será útil si ya tienes en tu empresa maquinaria con algunos años.<br></li><li>Un plus será que sea accesible y manejable desde dispositivos móviles.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading -->\n<h2>¿Es importante el hardware?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>No te vamos a mentir. El hardware es importante, pero a nuestro juicio, tiene un menor peso en la decisión de compra.<br><br>Hoy en día, la disponibilidad de hardware en el mercado (cámaras, iluminación LED, procesador industrial, PLC etc.) con una calidad-precio aceptable es enorme.<br><br>Corresponde a la empresa que diseña el software optar por unos componentes asequibles que ofrezcan todas las garantías o por otros de coste más elevado.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Servicios complementarios interesantes</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Habitualmente, las empresas de programación de este tipo de sistemas electrónicos ofrecen una serie de servicios (incluidos o no en el presupuesto). Lo ideal es que te ofrezcan lo siguiente:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li><strong>Instalación</strong>. Que sea la propia empresa proveedora quien instale en tus máquinas de calibrado el programa.<br>Es lo mejor.<br>Te aseguras que el programa está bien instalado, te lo dejan funcionando y te permite despreocuparte de este primer paso.<br></li><li><strong>Formación en el manejo.</strong> Aquí podrás encontrarte con distintas opciones. Desde la entrega de un manual de uso hasta formación presencial con un técnico de la empresa proveedora que se desplaza a tus instalaciones a formar al personal encargado del manejo diario del software.<br><br>Evidentemente, cuanto más azúcar, más dulce.<br><br>Nuestra recomendación es formación presencial o virtual en su defecto.<br></li><li><strong>Garantía</strong>. Contar con un período de garantía de una determinada duración siempre te dará mayor tranquilidad.<br></li><li><strong>Soporte por remoto </strong>para solucionar posibles problemas. Uno de los servicios mejor valorados por nuestros clientes.<br>Que ante cualquier dificultad, puedas contactar con un técnico y solucionar el problema por remoto no tiene precio.<br></li><li><strong>Actualizaciones futuras</strong>. Si la empresa tiene un sistema en constante desarrollo o evolución, es interesante poder acceder al paquete de actualizaciones de forma regular, para asegurar que nuestro sistema está actualizado, optimizado y cuenta con las últimas tecnologías.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y hasta aquí nuestras recomendaciones sobre lo que te sugerimos tener en cuenta para poder elegir un buen software de clasificación de frutas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Esperamos que te sirvan de ayuda y si sigues con dudas sobre alguno de los aspectos que te hemos contado o quieres añadir algo más deja tu comentario.</p>\n<!-- /wp:paragraph -->','Calibrado de frutas ¿cómo elegir un buen software sin morir en el intento?','','inherit','closed','closed','','1123-autosave-v1','','','2021-01-14 10:45:27','2021-01-14 10:45:27','',1123,'https://www.ingivision.com/2021/01/14/1123-autosave-v1/',0,'revision','',0),(1159,1,'2021-01-14 10:50:56','2021-01-14 10:50:56','','clementina-calidad-superextra','','inherit','open','closed','','clementina-calidad-superextra','','','2021-01-14 10:51:15','2021-01-14 10:51:15','',1145,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra.png',0,'attachment','image/png',0),(1161,1,'2021-01-14 11:04:54','2021-01-14 11:04:54','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 11:04:54','2021-01-14 11:04:54','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1162,1,'2021-01-14 11:10:37','2021-01-14 11:10:37','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 11:10:37','2021-01-14 11:10:37','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1163,1,'2021-01-14 11:12:10','2021-01-14 11:12:10','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 11:12:10','2021-01-14 11:12:10','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1164,1,'2021-01-14 11:16:21','2021-01-14 11:16:21','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-14 11:16:21','2021-01-14 11:16:21','',1145,'https://www.ingivision.com/2021/01/14/1145-revision-v1/',0,'revision','',0),(1165,1,'2021-01-14 11:39:12','2021-01-14 11:39:12','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) <em>Fruits without skin or shape defects</em></span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) <em>Fruits with skin defects, shape or</em> <em>incomplete coloring</em></span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Image 1</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Image 2</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 1) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 2), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','publish','open','open','','success-stories-first-installations-of-ingigrader-2-0-for-external-quality-classification-in-citrus','','','2021-01-18 09:29:35','2021-01-18 09:29:35','',0,'https://www.ingivision.com/?p=1165',0,'post','',0),(1166,1,'2021-01-14 11:30:09','2021-01-14 11:30:09','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:30:09','2021-01-14 11:30:09','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1167,1,'2021-01-14 11:30:10','2021-01-14 11:30:10','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:30:10','2021-01-14 11:30:10','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1168,1,'2021-01-14 11:30:57','2021-01-14 11:30:57','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Getting super extra quality mandarins automatically is now possible','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:30:57','2021-01-14 11:30:57','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1169,1,'2021-01-14 11:30:59','2021-01-14 11:30:59','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Getting super extra quality mandarins automatically is now possible','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:30:59','2021-01-14 11:30:59','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1170,1,'2021-01-14 11:39:05','2021-01-14 11:39:05','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) <em>Fruits without skin or shape defects</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) <em>Fruits with skin defects, shape or</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Image 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Image 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 2) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 1), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:39:05','2021-01-14 11:39:05','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1171,1,'2021-01-14 11:39:05','2021-01-14 11:39:05','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) <em>Fruits without skin or shape defects</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) <em>Fruits with skin defects, shape or</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Image 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Image 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 2) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 1), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:39:05','2021-01-14 11:39:05','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1172,1,'2021-01-14 11:39:13','2021-01-14 11:39:13','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) <em>Fruits without skin or shape defects</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) <em>Fruits with skin defects, shape or</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Image 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Image 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 2) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 1), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:39:13','2021-01-14 11:39:13','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1173,1,'2021-01-14 11:55:48','2021-01-14 11:55:48','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) <em>Fruits without skin or shape defects</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) <em>Fruits with skin defects, shape or</em> <em>incomplete coloring</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Image 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Image 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 2) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 1), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-14 11:55:48','2021-01-14 11:55:48','',1165,'https://www.ingivision.com/2021/01/14/1165-revision-v1/',0,'revision','',0),(1174,1,'2021-01-18 08:16:22','2021-01-18 08:16:22','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 2) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 1), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:16:22','2021-01-18 08:16:22','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1175,1,'2021-01-18 08:18:11','2021-01-18 08:18:11','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:18:11','2021-01-18 08:18:11','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1177,1,'2021-01-18 08:21:44','2021-01-18 08:21:44','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) <em>Fruits without skin or shape defects</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) <em>Fruits with skin defects, shape or</em> <em>incomplete coloring</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Image 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Image 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 1) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 2), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-18 08:21:44','2021-01-18 08:21:44','',1165,'https://www.ingivision.com/2021/01/18/1165-revision-v1/',0,'revision','',0),(1179,1,'2021-01-18 08:27:10','2021-01-18 08:27:10','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:27:10','2021-01-18 08:27:10','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1180,1,'2021-01-18 08:39:29','2021-01-18 08:39:29','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><em>1) Frutos sin defectos de piel ni forma</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><em>2) Frutos con defectos de piel, forma o coloración incompleta</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption><em>Imagen número 1</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption><em>Imagen número 2</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:39:29','2021-01-18 08:39:29','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1181,1,'2021-01-18 08:40:51','2021-01-18 08:40:51','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:40:51','2021-01-18 08:40:51','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1182,1,'2021-01-18 08:41:05','2021-01-18 08:41:05','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:41:05','2021-01-18 08:41:05','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1183,1,'2021-01-18 08:43:14','2021-01-18 08:43:14','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:43:14','2021-01-18 08:43:14','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1185,1,'2021-01-18 08:58:29','2021-01-18 08:58:29','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<div class=\"blockquote-wrap\"></div>\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph -->\n\n\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 08:58:29','2021-01-18 08:58:29','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1186,1,'2021-01-18 09:02:54','2021-01-18 09:02:54','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group -->\n<div class=\"wp-block-group\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 09:02:54','2021-01-18 09:02:54','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1187,1,'2021-01-18 09:04:27','2021-01-18 09:04:27','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) Frutos sin defectos de piel ni forma</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) Frutos con defectos de piel, forma o coloración incompleta</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 09:04:27','2021-01-18 09:04:27','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1188,1,'2021-01-18 09:09:21','2021-01-18 09:09:21','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) Frutos sin defectos de piel ni forma</span></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) Frutos con defectos de piel, forma o coloración incompleta</span></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 09:09:21','2021-01-18 09:09:21','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1189,1,'2021-01-18 09:09:40','2021-01-18 09:09:40','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) Frutos sin defectos de piel ni forma</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) Frutos con defectos de piel, forma o coloración incompleta</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 09:09:40','2021-01-18 09:09:40','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1190,1,'2021-01-18 09:10:51','2021-01-18 09:10:51','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) Frutos sin defectos de piel ni forma</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) Frutos con defectos de piel, forma o coloración incompleta</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Imagen número 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Imagen número 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 09:10:51','2021-01-18 09:10:51','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1191,1,'2021-01-18 09:13:21','2021-01-18 09:13:21','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) Frutos sin defectos de piel ni forma</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) Frutos con defectos de piel, forma o coloración incompleta</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Imagen número 1</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Imagen número 2</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 09:13:21','2021-01-18 09:13:21','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1192,1,'2021-01-18 09:27:26','2021-01-18 09:27:26','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) <em>Fruits without skin or shape defects</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) <em>Fruits with skin defects, shape or</em> <em>incomplete coloring</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Image 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Image 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 1) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 2), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-18 09:27:26','2021-01-18 09:27:26','',1165,'https://www.ingivision.com/2021/01/18/1165-revision-v1/',0,'revision','',0),(1193,1,'2021-01-18 11:19:47','2021-01-18 11:19:47','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Y es aquí cuando nos enfrentamos a uno de los principales problemas a la hora de optimizar el trabajo de empaquetado de kiwis es en muchas ocasiones: La detección de frutas que presentan una forma aplanada y que para muchos mercados dejan de ser de primera categoría por motivos estéticos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el proceso de empaquetado es importante la detección de estas frutas y su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Kiwi de apariencia normal</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Kiwi plano</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos dotado a nuestros sistemas IngiSorter e IngiSorter+ un nuevo algoritmo que detecta este tipo de frutas para su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La condición es que nuestro sistema esté instalado sobre una máquina que disponga de sistema de pesaje y también de trabajo mediantes cámaras. Esta nueva utilidad es especialmente efectiva para máquinas basadas en tazas. No es necesario dotar de rotación a la fruta con un sistema basado en rodillos, ya que en todo momento vamos a disponer de una vista de la parte llana del fruto, este último aspecto combinado con medidas adicionales, hace posible una detección muy efectiva.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta manea conseguimos separar los frutos de calidad extra y forma homogénea, de los otros que por motivos estéticos no pueden ser considerados de esta categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/frutas-y-verduras/kiwis/\">Aquí puedes ampliar información sobre nuestro sistema de clasificación del kiwi</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Qué te parece nuestro sistema? Te leemos en comentarios.</p>\n<!-- /wp:paragraph -->','El sistema definitivo para la detección de kiwis planos.','','publish','open','open','','el-sistema-definitivo-para-la-deteccion-de-kiwis-planos','','','2021-01-18 11:19:47','2021-01-18 11:19:47','',0,'https://www.ingivision.com/?p=1193',0,'post','',0),(1194,1,'2021-01-18 09:28:07','2021-01-18 09:28:07','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>1) <em>Fruits without skin or shape defects</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption>2) <em>Fruits with skin defects, shape or</em> <em>incomplete coloring</em></figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption>Image 1</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<figure class=\"wp-block-image size-large noamplia\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption>Image 2</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 1) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 2), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-18 09:28:07','2021-01-18 09:28:07','',1165,'https://www.ingivision.com/2021/01/18/1165-revision-v1/',0,'revision','',0),(1195,1,'2021-01-18 09:29:34','2021-01-18 09:29:34','<!-- wp:paragraph -->\n<p>We have successfully installed the latest version of our external quality detection system during the first part of the citrus season at several of our closest customers.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Despite the difficulties during 2020 due to COVID19 that caused a significant delay in the final development of the system, we were able to install some units in clients close to our offices.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Our system for detecting the external quality of the fruit is totally based on the use of self-learning methodologies based on neural networks. After several years of development, our technical department was able to optimize the architecture used, based on deep convolutional and recurrent networks, until achieving a highly accurate, robust system that was fully adaptable to the particular needs of each customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We decided to focus our efforts on adapting the system for the work of the clementine varieties that are worked in the period between September and December in the Spanish East area. We have a dataset of 500,000 examples on which we have trained the network that were manually classified by our technicians under the criteria of our most demanding clients. We decided to make a classification based on \"quality grade\" instead of orienting the system to the detection of defects or particular pests. In this way, the use by the end customer of the system is very simple, you only have to choose the degree of quality you want for the fruit based on the necessary classification. However, this gradation can at any time be modified on demand to include particular defects in some of the levels.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) <em>Fruits without skin or shape defects</em></span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) <em>Fruits with skin defects, shape or</em> <em>incomplete coloring</em></span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Fruit selection carried out automatically by the system on a batch manually preselected by the plant operators and assigned as the first category.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>We have applied the system to obtain different objectives: selection of the super-extra product from the total set of fruit for the preparation of highly demanding orders, division of the product previously selected as second quality into three additional levels, discard of fruits with extreme defects both skin-like or obtaining intermediate classes. Our system is permanently under development, while the system is working it saves data and fruit examples that will later be evaluated by a technician to reinforce or adapt the training to the particular customer.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Image 1</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Image 2</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Quality extremes automatically graded by the system on a batch of fruit preselected by the plant operators and assigned as the second category. An attempt was made to \"rescue\" those fruits 1) that only had small skin defects or loss of the peduncle (stalkless) and on the other hand 2), those fruits with large defects or malformations due to hemipters (Planococcus citri) that would be of a category below the one originally assigned.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Our line of work is to be able to offer a system with the best value for money, always under the premise that it is economically profitable for the customer, with a very high rate of return. Although today it is impossible to totally eliminate handwork in the external quality selection tasks, our system helps to optimize the process and reduce the associated production costs, it also allows to establish a constant quality standard for the customer, regardless of factors. external or subjective.</p>\n<!-- /wp:paragraph -->','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','','inherit','closed','closed','','1165-revision-v1','','','2021-01-18 09:29:34','2021-01-18 09:29:34','',1165,'https://www.ingivision.com/2021/01/18/1165-revision-v1/',0,'revision','',0),(1196,1,'2021-01-18 09:50:52','2021-01-18 09:50:52','','kiwi-apariencia-normal','','inherit','open','closed','','kiwi-apariencia-normal','','','2021-01-18 09:50:52','2021-01-18 09:50:52','',1193,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png',0,'attachment','image/png',0),(1197,1,'2021-01-18 09:51:11','2021-01-18 09:51:11','','kiwi-plano','','inherit','open','closed','','kiwi-plano','','','2021-01-18 09:51:11','2021-01-18 09:51:11','',1193,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png',0,'attachment','image/png',0),(1198,1,'2021-01-18 09:51:52','2021-01-18 09:51:52','<!-- wp:paragraph -->\n<p>Uno de los principales problemas a la hora de optimizar el trabajo de empaquetado de kiwis es en muchas ocasiones la detección de frutas que presentan una forma aplanada y que para muchos mercados dejan de ser de primera categoría por motivos estéticos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el proceso de empaquetado es importante la detección de estas frutas y su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Kiwi de apariencia normal</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Kiwi plano</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos dotado a nuestros sistemas IngiSorter e IngiSorter+ un nuevo algoritmo que detecta este tipo de frutas para su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La condición es que nuestro sistema esté instalado sobre una máquina que disponga de sistema de pesaje y también de trabajo mediantes cámaras. Esta nueva utilidad es especialmente efectiva para máquinas basadas en tazas, no es necesario dotar de rotación a la fruta con un sistema basado en rodillos, ya que en todo momento vamos a disponer de una vista de la parte llana del fruto, este último aspecto combinado con medidas adicionales, hace posible una detección muy efectiva.</p>\n<!-- /wp:paragraph -->','El sistema definitivo para la detección de kiwis planos.','','inherit','closed','closed','','1193-revision-v1','','','2021-01-18 09:51:52','2021-01-18 09:51:52','',1193,'https://www.ingivision.com/2021/01/18/1193-revision-v1/',0,'revision','',0),(1199,1,'2021-01-18 10:19:30','2021-01-18 10:19:30','','catalogo-ingivision-EN','','inherit','open','closed','','catalogo-ingivision-en','','','2021-01-18 10:19:30','2021-01-18 10:19:30','',0,'https://www.ingivision.com/wp-content/uploads/2021/01/catalogo-ingivision-EN.pdf',0,'attachment','application/pdf',0),(1200,1,'2021-01-18 10:31:05','2021-01-18 10:31:05','','catalogo-ingivision-ES','','inherit','open','closed','','catalogo-ingivision-es','','','2021-01-18 10:31:05','2021-01-18 10:31:05','',0,'https://www.ingivision.com/wp-content/uploads/2021/01/catalogo-ingivision-ES.pdf',0,'attachment','application/pdf',0),(1201,1,'2021-01-18 10:35:26','2021-01-18 10:35:26','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Y es aquí cuando nos enfrentamos a uno de los principales problemas a la hora de optimizar el trabajo de empaquetado de kiwis es en muchas ocasiones: La detección de frutas que presentan una forma aplanada y que para muchos mercados dejan de ser de primera categoría por motivos estéticos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el proceso de empaquetado es importante la detección de estas frutas y su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Kiwi de apariencia normal</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Kiwi plano</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos dotado a nuestros sistemas IngiSorter e IngiSorter+ un nuevo algoritmo que detecta este tipo de frutas para su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La condición es que nuestro sistema esté instalado sobre una máquina que disponga de sistema de pesaje y también de trabajo mediantes cámaras. Esta nueva utilidad es especialmente efectiva para máquinas basadas en tazas, no es necesario dotar de rotación a la fruta con un sistema basado en rodillos, ya que en todo momento vamos a disponer de una vista de la parte llana del fruto, este último aspecto combinado con medidas adicionales, hace posible una detección muy efectiva.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta manea conseguimos separar los frutos de calidad extra y forma homogénea de los otros que por motivos estéticos no pueden ser considerados de esta categoría.</p>\n<!-- /wp:paragraph -->','El sistema definitivo para la detección de kiwis planos.','','inherit','closed','closed','','1193-revision-v1','','','2021-01-18 10:35:26','2021-01-18 10:35:26','',1193,'https://www.ingivision.com/2021/01/18/1193-revision-v1/',0,'revision','',0),(1202,1,'2021-01-18 11:15:41','2021-01-18 11:15:41','','kiwi','','inherit','open','closed','','kiwi-2','','','2021-01-18 11:16:17','2021-01-18 11:16:17','',1193,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi.png',0,'attachment','image/png',0),(1203,1,'2021-01-18 11:16:38','2021-01-18 11:16:38','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Y es aquí cuando nos enfrentamos a uno de los principales problemas a la hora de optimizar el trabajo de empaquetado de kiwis es en muchas ocasiones: La detección de frutas que presentan una forma aplanada y que para muchos mercados dejan de ser de primera categoría por motivos estéticos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el proceso de empaquetado es importante la detección de estas frutas y su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Kiwi de apariencia normal</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Kiwi plano</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos dotado a nuestros sistemas IngiSorter e IngiSorter+ un nuevo algoritmo que detecta este tipo de frutas para su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La condición es que nuestro sistema esté instalado sobre una máquina que disponga de sistema de pesaje y también de trabajo mediantes cámaras. Esta nueva utilidad es especialmente efectiva para máquinas basadas en tazas. No es necesario dotar de rotación a la fruta con un sistema basado en rodillos, ya que en todo momento vamos a disponer de una vista de la parte llana del fruto, este último aspecto combinado con medidas adicionales, hace posible una detección muy efectiva.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta manea conseguimos separar los frutos de calidad extra y forma homogénea, de los otros que por motivos estéticos no pueden ser considerados de esta categoría.</p>\n<!-- /wp:paragraph -->','El sistema definitivo para la detección de kiwis planos.','','inherit','closed','closed','','1193-revision-v1','','','2021-01-18 11:16:38','2021-01-18 11:16:38','',1193,'https://www.ingivision.com/2021/01/18/1193-revision-v1/',0,'revision','',0),(1204,1,'2021-01-18 11:19:05','2021-01-18 11:19:05','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Y es aquí cuando nos enfrentamos a uno de los principales problemas a la hora de optimizar el trabajo de empaquetado de kiwis es en muchas ocasiones: La detección de frutas que presentan una forma aplanada y que para muchos mercados dejan de ser de primera categoría por motivos estéticos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el proceso de empaquetado es importante la detección de estas frutas y su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Kiwi de apariencia normal</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Kiwi plano</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos dotado a nuestros sistemas IngiSorter e IngiSorter+ un nuevo algoritmo que detecta este tipo de frutas para su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La condición es que nuestro sistema esté instalado sobre una máquina que disponga de sistema de pesaje y también de trabajo mediantes cámaras. Esta nueva utilidad es especialmente efectiva para máquinas basadas en tazas. No es necesario dotar de rotación a la fruta con un sistema basado en rodillos, ya que en todo momento vamos a disponer de una vista de la parte llana del fruto, este último aspecto combinado con medidas adicionales, hace posible una detección muy efectiva.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta manea conseguimos separar los frutos de calidad extra y forma homogénea, de los otros que por motivos estéticos no pueden ser considerados de esta categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/frutas-y-verduras/kiwis/\">Aquí puedes ampliar información sobre nuestro sistema de clasificación del kiwi</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Qué te parece nuestro sistema? Te leemos en comentarios.</p>\n<!-- /wp:paragraph -->','El sistema definitivo para la detección de kiwis planos.','','inherit','closed','closed','','1193-revision-v1','','','2021-01-18 11:19:05','2021-01-18 11:19:05','',1193,'https://www.ingivision.com/2021/01/18/1193-revision-v1/',0,'revision','',0),(1205,1,'2021-01-18 11:21:48','2021-01-18 11:21:48','<!-- wp:heading -->\n<h2><strong>Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A pesar de las dificultades durante 2020 debidas al COVID19 que provocaron un retraso importante en el desarrollo final del sistema, pudimos instalar algunas unidades en clientes cercanos a nuestras oficinas.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decidimos centrar nuestros esfuerzos en adaptar el sistema para el trabajo de las variedades de clementinas que se trabajan en el periodo comprendido entre septiembre y diciembre en la zona del Levante español. Disponemos de un dataset de 500.000 ejemplos sobre los que hemos entrenado la red que fueron clasificados manualmente por nuestros técnicos bajo el criterio de nuestros clientes más exigentes. Decidimos realizar una clasificación basándonos en “grado de calidad” en vez de orientar el sistema a la detección de defectos o plagas particulares. De este modo la utilización por parte del cliente final del sistema resulta muy sencilla, solo deberá elegir el grado de calidad que desea para la fruta en base a la clasificación necesaria. No obstante, esta gradación puede en todo momento ser modificada a demanda para englobar defectos particulares en algunos de los niveles.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">1) Frutos sin defectos de piel ni forma</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1149,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png\" alt=\"\" class=\"wp-image-1149\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">2) Frutos con defectos de piel, forma o coloración incompleta</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Selección de frutos realizada automáticamente por el sistema sobre una partida preseleccionada manualmente por los operarios de la planta y asignada como primera categoría.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p>Hemos aplicado el sistema para obtener diferentes objetivos: selección del producto superextra desde el conjunto total de la fruta para confección de pedidos de alta exigencia, división del producto previamente seleccionado como segunda calidad en tres niveles adicionales, descarte de frutos con defectos extremos tanto de forma como de piel o la obtención de clases intermedias. Nuestro sistema está permanente en desarrollo, mientras el sistema se encuentra trabajando guarda datos y ejemplos de fruta que posteriormente se evaluarán por un técnico para reforzar o adaptar el entrenamiento al cliente en particular.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:group {\"className\":\"blockquote-wrap\"} -->\n<div class=\"wp-block-group blockquote-wrap\"><div class=\"wp-block-group__inner-container\"><!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1155,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png\" alt=\"\" class=\"wp-image-1155\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Imagen número 1</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"align\":\"center\",\"id\":1156,\"sizeSlug\":\"large\",\"className\":\"noamplia\"} -->\n<div class=\"wp-block-image noamplia\"><figure class=\"aligncenter size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png\" alt=\"\" class=\"wp-image-1156\"/><figcaption><span style=\"color:#89a0b2\" class=\"has-inline-color\">Imagen número 2</span></figcaption></figure></div>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph {\"style\":{\"color\":{\"text\":\"#89a0b2\"}}} -->\n<p class=\"has-text-color\" style=\"color:#89a0b2\"><em>Extremos de calidad encontrados automáticamente por el sistema sobre una partida de fruta preseleccionada por los operarios de la planta y asignada como segunda categoría. Se intentó “rescatar” aquellos frutos 1) que solo presentaban pequeños defectos de piel o pérdida del pedúnculo (stalkless) y por otro lado 2), aquellos frutos con grandes defectos o malformaciones debidas a hemípteros (Planococcus citri) que serían de categoría inferior a la asignada originalmente.</em></p>\n<!-- /wp:paragraph --></div></div>\n<!-- /wp:group -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nuestra línea de trabajo es poder ofrecer un sistema con la mejor relación calidad precio, siempre bajo la premisa de que a nivel económico sea rentable para el cliente, con una tasa de retorno muy alta. Si bien hoy resulta imposible la eliminación total del personal en las tareas de selección de la calidad externa, nuestro sistema ayuda a optimizar el proceso y reducir los costes de producción asociados, también permite establecer un estándar de calidad constante para el cliente, independientemente de factores externos o subjetivos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\">Aquí puedes consultar más información sobre nuestro sistema de clasificación para naranjas y mandarinas</a></p>\n<!-- /wp:paragraph -->','Conseguir mandarinas de calidad superextra de forma automática ya es posible','','inherit','closed','closed','','1145-revision-v1','','','2021-01-18 11:21:48','2021-01-18 11:21:48','',1145,'https://www.ingivision.com/2021/01/18/1145-revision-v1/',0,'revision','',0),(1206,1,'2021-01-18 11:23:19','2021-01-18 11:23:19','<!-- wp:heading -->\n<h2><strong>Software de clasificación para naranjas y mandarinas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de naranjas y mandarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1022,\"width\":580,\"height\":549,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png\" alt=\"\" class=\"wp-image-1022\" width=\"580\" height=\"549\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>No te pierdas nuestro post relacionado: <a href=\"https://www.ingivision.com/2021/01/14/clasificacion-automatica-calidad-externa-citricos/\">Conseguir mandarinas de calidad superextra de forma automática ya es posible</a></p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2021-01-18 11:23:19','2021-01-18 11:23:19','',926,'https://www.ingivision.com/2021/01/18/926-revision-v1/',0,'revision','',0),(1207,1,'2021-01-18 11:25:05','2021-01-18 11:25:05','<!-- wp:heading -->\n<h2 id=\"block-6582fc9c-4d8f-47c8-b027-3d9b3d450366\">Software de clasificación para kiwis</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6f8d38e0-2d21-4a31-8881-bfd7ef261432\">Nuestro software de fácil manejo es ideal para la clasificación de kiwis. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-6cc59523-5ff8-4b54-adb2-83edede811f8\">Proporciona alta productividad y precisión a tus máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p id=\"block-978c79e5-ed88-4a9f-95a5-53870e1bdc90\">Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de tu línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-2ffb3744-bad5-4286-a557-ff05355bf177\"><strong>Clasificación de kiwis por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-0812ac5d-b922-41aa-a521-57a5e833d2ba\"><br>El color en los kiwis es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características del kiwi, el tono y en consecuencia su grado madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-aa66d65e-487a-48ca-8e9d-f5039a2ef33b\"><strong>Clasificación de kiwis por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-3681bb16-5667-49b8-ae13-cad013b85839\"><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada kiwi para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3 id=\"block-ad0f309b-a11a-4aea-9c02-a0f8a0dd61d8\"><strong>Clasificación de kiwis por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p id=\"block-472e401b-22ea-4aac-be92-53ebd239d34a\"><br>Nuestro software es capaz de determinar el peso de hasta 15 kiwis dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y no te pierdas nuestro post relacionado: <a href=\"https://www.ingivision.com/2021/01/18/el-sistema-definitivo-para-la-deteccion-de-kiwis-planos/\">El sistema definitivo para la detección de kiwis planos.</a></p>\n<!-- /wp:paragraph -->','Kiwis','','inherit','closed','closed','','946-revision-v1','','','2021-01-18 11:25:05','2021-01-18 11:25:05','',946,'https://www.ingivision.com/2021/01/18/946-revision-v1/',0,'revision','',0),(1208,1,'2021-01-18 11:30:21','2021-01-18 11:30:21','<!-- wp:paragraph -->\n<p>One of the main problems when it comes to optimizing kiwifruit packaging work is in many cases the detection of fruits that have a flattened shape and that for many markets are no longer top-class for aesthetic reasons.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the packaging process, it is important to detect these fruits and discard them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Normal-looking kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Flat kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have equipped our IngiSorter and IngiSorter + systems with a new algorithm that detects this type of fruit for disposal. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The condition is that our system is installed on a machine that has a weighing system and also works through cameras. This new utility is especially effective for cup-based machines, it is not necessary to rotate the fruit with a roller-based system since at all times we will have a view of the flat part of the fruit, this last aspect combined with additional measures, makes possible a very effective detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>In this way we are able to separate the fruits of extra quality and homogeneous shape, from the others that for aesthetic reasons cannot be considered in this category.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What do you think of our system? We read you in comments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Simple and very effective system for the detection of flat kiwis.','','publish','open','open','','simple-and-very-effective-system-for-the-detection-of-flat-kiwis','','','2021-01-18 11:36:17','2021-01-18 11:36:17','',0,'https://www.ingivision.com/?p=1208',0,'post','',0),(1209,1,'2021-01-18 11:26:08','2021-01-18 11:26:08','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Y es aquí cuando nos enfrentamos a uno de los principales problemas a la hora de optimizar el trabajo de empaquetado de kiwis es en muchas ocasiones: La detección de frutas que presentan una forma aplanada y que para muchos mercados dejan de ser de primera categoría por motivos estéticos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el proceso de empaquetado es importante la detección de estas frutas y su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Kiwi de apariencia normal</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Kiwi plano</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos dotado a nuestros sistemas IngiSorter e IngiSorter+ un nuevo algoritmo que detecta este tipo de frutas para su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La condición es que nuestro sistema esté instalado sobre una máquina que disponga de sistema de pesaje y también de trabajo mediantes cámaras. Esta nueva utilidad es especialmente efectiva para máquinas basadas en tazas. No es necesario dotar de rotación a la fruta con un sistema basado en rodillos, ya que en todo momento vamos a disponer de una vista de la parte llana del fruto, este último aspecto combinado con medidas adicionales, hace posible una detección muy efectiva.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta manea conseguimos separar los frutos de calidad extra y forma homogénea, de los otros que por motivos estéticos no pueden ser considerados de esta categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/frutas-y-verduras/kiwis/\">Aquí puedes ampliar información sobre nuestro sistema de clasificación del kiwi</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Qué te parece nuestro sistema? Te leemos en comentarios.</p>\n<!-- /wp:paragraph -->','El sistema definitivo para la detección de kiwis planos.','','inherit','closed','closed','','1208-revision-v1','','','2021-01-18 11:26:08','2021-01-18 11:26:08','',1208,'https://www.ingivision.com/2021/01/18/1208-revision-v1/',0,'revision','',0),(1210,1,'2021-01-18 11:26:09','2021-01-18 11:26:09','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p> Y es aquí cuando nos enfrentamos a uno de los principales problemas a la hora de optimizar el trabajo de empaquetado de kiwis es en muchas ocasiones: La detección de frutas que presentan una forma aplanada y que para muchos mercados dejan de ser de primera categoría por motivos estéticos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el proceso de empaquetado es importante la detección de estas frutas y su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Kiwi de apariencia normal</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Kiwi plano</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>Hemos dotado a nuestros sistemas IngiSorter e IngiSorter+ un nuevo algoritmo que detecta este tipo de frutas para su descarte.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La condición es que nuestro sistema esté instalado sobre una máquina que disponga de sistema de pesaje y también de trabajo mediantes cámaras. Esta nueva utilidad es especialmente efectiva para máquinas basadas en tazas. No es necesario dotar de rotación a la fruta con un sistema basado en rodillos, ya que en todo momento vamos a disponer de una vista de la parte llana del fruto, este último aspecto combinado con medidas adicionales, hace posible una detección muy efectiva.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta manea conseguimos separar los frutos de calidad extra y forma homogénea, de los otros que por motivos estéticos no pueden ser considerados de esta categoría.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><a href=\"https://www.ingivision.com/frutas-y-verduras/kiwis/\">Aquí puedes ampliar información sobre nuestro sistema de clasificación del kiwi</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Qué te parece nuestro sistema? Te leemos en comentarios.</p>\n<!-- /wp:paragraph -->','El sistema definitivo para la detección de kiwis planos.','','inherit','closed','closed','','1208-revision-v1','','','2021-01-18 11:26:09','2021-01-18 11:26:09','',1208,'https://www.ingivision.com/2021/01/18/1208-revision-v1/',0,'revision','',0),(1211,1,'2021-01-18 11:30:21','2021-01-18 11:30:21','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One of the main problems when it comes to optimizing kiwifruit packaging work is in many cases the detection of fruits that have a flattened shape and that for many markets are no longer top-class for aesthetic reasons.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the packaging process, it is important to detect these fruits and discard them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Normal-looking kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Flat kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have equipped our IngiSorter and IngiSorter + systems with a new algorithm that detects this type of fruit for disposal. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The condition is that our system is installed on a machine that has a weighing system and also works through cameras. This new utility is especially effective for cup-based machines, it is not necessary to rotate the fruit with a roller-based system since at all times we will have a view of the flat part of the fruit, this last aspect combined with additional measures, makes possible a very effective detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>In this way we are able to separate the fruits of extra quality and homogeneous shape, from the others that for aesthetic reasons cannot be considered in this category.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What do you think of our system? We read you in comments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Simple and very effective system for the detection of flat kiwis.','','inherit','closed','closed','','1208-revision-v1','','','2021-01-18 11:30:21','2021-01-18 11:30:21','',1208,'https://www.ingivision.com/2021/01/18/1208-revision-v1/',0,'revision','',0),(1212,1,'2021-01-18 11:30:22','2021-01-18 11:30:22','<!-- wp:paragraph -->\n<p>Originario de China, el kiwi ha protagonizado uno de los desarrollos más rápidos en la producción, comercialización y aceptación de una fruta.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ha pasado de ser una fruta \"exótica\" a formar parte de la dieta normal. <br>Se vende tanto en supermercados como en fruterías a granel y también presentado en bandejas.<br>Su consumo viene creciendo a nivel mundial con un ritmo sostenido. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos a centrarnos en los requerimientos de calidad, que en líneas generales son:<br>• Kiwis enteros.<br>• Desprovistos de humedad exterior (seco).<br>• Homogéneos (tamaño uniforme).<br>• Sanos.<br>• Limpios.<br>• Exentos de plagas.<br>• Poseer la madurez fisiológica apropiada que garantice la calidad requerida por el mercado destino.<br>• Forma propia de la variedad, se excluyen frutos dobles, múltiples o frutos aplanados.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>One of the main problems when it comes to optimizing kiwifruit packaging work is in many cases the detection of fruits that have a flattened shape and that for many markets are no longer top-class for aesthetic reasons.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the packaging process, it is important to detect these fruits and discard them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Normal-looking kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Flat kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have equipped our IngiSorter and IngiSorter + systems with a new algorithm that detects this type of fruit for disposal. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The condition is that our system is installed on a machine that has a weighing system and also works through cameras. This new utility is especially effective for cup-based machines, it is not necessary to rotate the fruit with a roller-based system since at all times we will have a view of the flat part of the fruit, this last aspect combined with additional measures, makes possible a very effective detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>In this way we are able to separate the fruits of extra quality and homogeneous shape, from the others that for aesthetic reasons cannot be considered in this category.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What do you think of our system? We read you in comments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Simple and very effective system for the detection of flat kiwis.','','inherit','closed','closed','','1208-revision-v1','','','2021-01-18 11:30:22','2021-01-18 11:30:22','',1208,'https://www.ingivision.com/2021/01/18/1208-revision-v1/',0,'revision','',0),(1213,1,'2021-01-18 11:31:05','2021-01-18 11:31:05','<!-- wp:paragraph -->\n<p>One of the main problems when it comes to optimizing kiwifruit packaging work is in many cases the detection of fruits that have a flattened shape and that for many markets are no longer top-class for aesthetic reasons.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the packaging process, it is important to detect these fruits and discard them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Normal-looking kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Flat kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have equipped our IngiSorter and IngiSorter + systems with a new algorithm that detects this type of fruit for disposal. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The condition is that our system is installed on a machine that has a weighing system and also works through cameras. This new utility is especially effective for cup-based machines, it is not necessary to rotate the fruit with a roller-based system since at all times we will have a view of the flat part of the fruit, this last aspect combined with additional measures, makes possible a very effective detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>In this way we are able to separate the fruits of extra quality and homogeneous shape, from the others that for aesthetic reasons cannot be considered in this category.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What do you think of our system? We read you in comments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Simple and very effective system for the detection of flat kiwis.','','inherit','closed','closed','','1208-revision-v1','','','2021-01-18 11:31:05','2021-01-18 11:31:05','',1208,'https://www.ingivision.com/2021/01/18/1208-revision-v1/',0,'revision','',0),(1214,1,'2021-01-18 11:31:06','2021-01-18 11:31:06','<!-- wp:paragraph -->\n<p>One of the main problems when it comes to optimizing kiwifruit packaging work is in many cases the detection of fruits that have a flattened shape and that for many markets are no longer top-class for aesthetic reasons.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>In the packaging process, it is important to detect these fruits and discard them.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1196,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png\" alt=\"\" class=\"wp-image-1196\"/><figcaption>Normal-looking kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column -->\n\n<!-- wp:column -->\n<div class=\"wp-block-column\"><!-- wp:image {\"id\":1197,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png\" alt=\"\" class=\"wp-image-1197\"/><figcaption>Flat kiwi</figcaption></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:paragraph -->\n<p>We have equipped our IngiSorter and IngiSorter + systems with a new algorithm that detects this type of fruit for disposal. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The condition is that our system is installed on a machine that has a weighing system and also works through cameras. This new utility is especially effective for cup-based machines, it is not necessary to rotate the fruit with a roller-based system since at all times we will have a view of the flat part of the fruit, this last aspect combined with additional measures, makes possible a very effective detection.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>In this way we are able to separate the fruits of extra quality and homogeneous shape, from the others that for aesthetic reasons cannot be considered in this category.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>What do you think of our system? We read you in comments.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->','Simple and very effective system for the detection of flat kiwis.','','inherit','closed','closed','','1208-revision-v1','','','2021-01-18 11:31:06','2021-01-18 11:31:06','',1208,'https://www.ingivision.com/2021/01/18/1208-revision-v1/',0,'revision','',0),(1216,1,'2021-01-18 11:58:09','2021-01-18 11:58:09','<!-- wp:heading -->\n<h2><strong>Software de clasificación para naranjas y mandarinas</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nuestro software de fácil manejo es ideal para la clasificación de naranjas y mandarinas. Capaz de clasificar hasta 15 unidades por segundo dependiendo de las prestaciones de tu calibrador. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Proporciona alta productividad y precisión a tus máquinas. Posibilidad de implantarlo tanto para maquinaria nueva como para mejorar los resultados de tu máquina actual incrementando el rendimiento y rentabilidad de su línea de empaque.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Clasificación de naranjas y mandarinas por color</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El color en los cítricos y en la fruta en general es muy representativo del grado de madurez. Nuestro sistema combina varía imágenes tomadas desde todos los ángulos para determinar las características de la naranja o mandarina y su madurez.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por tamaño</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software determina variables como el diámetro máximo, diámetro mínimo, diámetro mínimo mayor, diámetro medio, diámetro reducido, área, volumen, curvatura, esfericidad de cada naranja para una correcta clasificación por tamaño.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas y mandarinas</strong> por peso</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro software es capaz de determinar el peso de hasta 15 naranjas/mandarinas dependiendo de la base mecánica del calibrador en el que lo implantemos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1022,\"width\":580,\"height\":549,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large is-resized\"><img src=\"https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png\" alt=\"\" class=\"wp-image-1022\" width=\"580\" height=\"549\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><strong>Clasificación de naranjas, mandarinas</strong> y otros cítricos por calidad externa</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>Nuestro sistema de detección de la calidad externa de la fruta está basado totalmente en el uso de metodologías de autoaprendizaje basadas en redes neuronales. Después de varios años de desarrollo, nuestro departamento técnico consiguió optimizar la arquitectura utilizada, basada en redes convolucionales y recurrentes hasta conseguir un sistema de gran precisión, robusto y totalmente adaptable a las necesidades particulares de cada cliente.<br><br>No te pierdas nuestro post relacionado: <a href=\"https://www.ingivision.com/2021/01/14/clasificacion-automatica-calidad-externa-citricos/\">Conseguir mandarinas de calidad superextra de forma automática ya es posible</a></p>\n<!-- /wp:paragraph -->','Naranjas y mandarinas','','inherit','closed','closed','','926-revision-v1','','','2021-01-18 11:58:09','2021-01-18 11:58:09','',926,'https://www.ingivision.com/2021/01/18/926-revision-v1/',0,'revision','',0),(1219,1,'2021-01-18 12:48:44','2021-01-18 12:48:44','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"#\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"#\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"#\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"#\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"#\">\n                            <div class=\"team-box-social\">\n                                <a href=\"#\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"#\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/patata.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\">Pepinos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pera.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\">Sandías</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\">Tomates y cherries</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2021-01-18 12:48:44','2021-01-18 12:48:44','',924,'https://www.ingivision.com/2021/01/18/924-revision-v1/',0,'revision','',0),(1220,1,'2021-01-18 12:49:35','2021-01-18 12:49:35','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"#\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"#\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"#\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"#\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"#\">\n                            <div class=\"team-box-social\">\n                                <a href=\"#\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/patata.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\">Pepinos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pera.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\">Sandías</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\">Tomates y cherries</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2021-01-18 12:49:35','2021-01-18 12:49:35','',924,'https://www.ingivision.com/2021/01/18/924-revision-v1/',0,'revision','',0),(1221,1,'2021-01-18 12:50:03','2021-01-18 12:50:03','<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/\" class=\"\">Naranjas y mandarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\">Berenjenas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/aguacate/\" class=\"\">Aguacates</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/calabacin/\" class=\"\">Calabacines</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/cerezas/\" class=\"\">Cerezas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/datiles/\" class=\"\">Dátiles</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/granada.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/granada/\" class=\"\">Granadas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/higo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/higo/\" class=\"\">Higos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/kiwi/\" class=\"\">Kiwis</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/limon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/berenjena/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/limon/\" class=\"\">Limones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/mango.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/mango/\" class=\"\">Mangos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/manzana/\" class=\"\">Manzanas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melocoton/\" class=\"\">Melocotones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/nectarina/\" class=\"\">Nectarinas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/melon.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/melon/\" class=\"\">Melones</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/albaricoque/\" class=\"\">Albaricoques</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/paraguayo/\" class=\"\">Paraguayos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/patata.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/patata/\" class=\"\">Patatas</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pepino/\" class=\"\">Pepinos</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/pera.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/pera/\" class=\"\">Peras</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/sandia/\" class=\"\">Sandías</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<div class=\"col-lg-3 col-md-3 col-sm-6\">\n                    <div class=\"themesflat_sc_vc-teammembers line-borders\">\n                        <div class=\"team-image\"><img alt=\"image\" src=\"https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png\">\n                            <div class=\"team-box-social\">\n                                <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\"><i class=\"fas fa-plus\" aria-hidden=\"true\"></i></a>\n                            </div>\n                        </div>\n                        <h4 class=\"team-name\"> <a href=\"https://www.ingivision.com/frutas-y-verduras/tomate/\" class=\"\">Tomates y cherries</a></h4>\n                       \n                    </div>\n                </div>\n<!-- /wp:html -->','Frutas y Verduras','','inherit','closed','closed','','924-revision-v1','','','2021-01-18 12:50:03','2021-01-18 12:50:03','',924,'https://www.ingivision.com/2021/01/18/924-revision-v1/',0,'revision','',0),(1224,0,'2021-01-19 07:59:10','2021-01-19 07:59:10','0KV2HR95\ninfo@domainworld.com\n+12548593423\nZD62JQAB\nNotice#: 491343\r\nDate: 2021-01-20  \r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN ingyvision.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain ingyvision.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain ingyvision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://yourdomainregistration.ga/?n=ingyvision.com&amp;r=a&amp;t=1611043148&amp;p=v1\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingyvision.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://yourdomainregistration.ga/?n=ingyvision.com&amp;r=a&amp;t=1611043148&amp;p=v1\r\n\r\nACT IMMEDIATELY. \r\n\r\nThe submission notification ingyvision.com will EXPIRE WITHIN 24 HOURS after reception of this email\n6\n191.101.65.6\nMozilla/5.0 (Macintosh; Intel Mac OS X 10_11_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2921.4 Safari/537.36\nhttps://www.ingivision.com/contacto/\n19 de enero de 2021\n07:59\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-4','','','2021-01-19 07:59:10','2021-01-19 07:59:10','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1224',0,'flamingo_inbound','',0),(1228,0,'2021-01-21 16:07:13','2021-01-21 16:07:13','{{unknown}}','','','publish','closed','closed','','f7b61b69c9b7c53182dfb68b4f80b153','','','2021-01-21 16:07:13','2021-01-21 16:07:13','',0,'https://www.ingivision.com/2021/01/21/f7b61b69c9b7c53182dfb68b4f80b153/',0,'oembed_cache','',0),(1229,0,'2021-01-27 05:41:38','2021-01-27 05:41:38','Richard S\nadi@ndmails.com\n8102440753\nDesign Work\nJust wanted to ask if you would be interested in getting external help with graphic design? We do all design work like banners, advertisements, photo edits, logos, flyers, etc. for a fixed monthly fee. \r\n\r\nWe don\'t charge for each task. What kind of work do you need on a regular basis? Let me know and I\'ll share my portfolio with you.\n7\n223.235.113.139\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/88.0.4324.104 Safari/537.36\nhttps://www.ingivision.com/en/contact/\n27 de enero de 2021\n05:41\n106\ncontact\nContact\nhttps://www.ingivision.com/en/contact/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-5','','','2021-01-27 05:41:38','2021-01-27 05:41:38','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1229',0,'flamingo_inbound','',0),(1231,1,'2021-01-27 10:23:00','2021-01-27 10:23:00','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>¡Únete a nuestro equipo!</h2>\n                    </div> \n                                 \n                </div>                \n                \n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">\n\nEn Ingivisión necesitamos personas con talento, curiosas, comprometidas que puedan aportar valor a la nuestra empresa.\n\nEstamos en constante de evolución de nuestro software buscamos personal técnico, informático y electrónico que hable idiomas que tengan ganas de aportar y de crecer. \n\n\n</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"100\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n     \n       \n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row \">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>Trabaja con nosotros</h4>\n                        <h1>¿Quieres unirte a nosotros?</h1>\n                        <p class=\"text\">\n\n\nSi actualmente no tenemos ofertas laborales o no se adaptan a su perfil, puedes adjuntarnos tu CV rellenando el siguiente formulario.\n\nPrometemos tenerte en cuenta para futuros procesos de selección en los que puedas encajar.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n               [contact-form-7 id=\"209\" title=\"Formulario oferta de trabajo\"]\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabaja con nosotros','','inherit','closed','closed','','682-revision-v1','','','2021-01-27 10:23:00','2021-01-27 10:23:00','',682,'https://www.ingivision.com/2021/01/27/682-revision-v1/',0,'revision','',0),(1232,1,'2021-01-27 10:25:22','2021-01-27 10:25:22','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>¡Únete a nuestro equipo!</h2>\n                    </div> \n                                 \n                </div>                \n                \n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">\n\nEn Ingivisión necesitamos personas con talento, curiosas, comprometidas que puedan aportar valor a la nuestra empresa.\n\nEstamos en constante de evolución de nuestro software buscamos personal técnico, informático y electrónico que hable idiomas que tengan ganas de aportar y de crecer. \n\n\n</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"100\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n     \n       \n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row \">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>Trabaja con nosotros</h4>\n                        <h1>¿Quieres unirte a nosotros?</h1>\n                        <p class=\"text\">\n\n\nSi actualmente no tenemos ofertas laborales o no se adaptan a su perfil, puedes adjuntarnos tu CV rellenando el siguiente formulario.\n\n<br> Prometemos tenerte en cuenta para futuros procesos de selección en los que puedas encajar.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n               [contact-form-7 id=\"209\" title=\"Formulario oferta de trabajo\"]\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Trabaja con nosotros','','inherit','closed','closed','','682-revision-v1','','','2021-01-27 10:25:22','2021-01-27 10:25:22','',682,'https://www.ingivision.com/2021/01/27/682-revision-v1/',0,'revision','',0),(1233,1,'2021-01-27 10:35:10','2021-01-27 10:35:10','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Join our team!</h2>\n                    </div> \n                                 \n                </div>                \n                \n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">\nAt Ingivisión we need talented, curious, committed people who can add value to our company.</p>\n<p>We are constantly evolving our software. We are looking for technical, computer and electronic personnel who speak languages ​​and who are willing to contribute and grow.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"100\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n     \n       \n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row \">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>Trabaja con nosotros</h4>\n                        <h1>Do you want to join us?</h1>\n                        <p class=\"text\">\n\n\nIf we do not currently have job offers, or they do not suit your profile, you can attach your CV by filling out the following form.\n\n<br>We promise to keep you in mind for future selection processes in which you may fit.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n               [contact-form-7 id=\"1235\" title=\"Formulario oferta de trabajo ENG\"]\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Work whith us','','publish','closed','closed','','work-whith-us','','','2021-01-27 11:15:04','2021-01-27 11:15:04','',99,'https://www.ingivision.com/?page_id=1233',0,'page','',0),(1234,1,'2021-01-27 10:35:10','2021-01-27 10:35:10','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Join our team!</h2>\n                    </div> \n                                 \n                </div>                \n                \n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">\nAt Ingivisión we need talented, curious, committed people who can add value to our company.</p>\n<p>We are constantly evolving our software. We are looking for technical, computer and electronic personnel who speak languages ​​and who are willing to contribute and grow.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"100\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n     \n       \n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row \">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>Trabaja con nosotros</h4>\n                        <h1>Do you want to join us?</h1>\n                        <p class=\"text\">\n\n\nIf we do not currently have job offers, or they do not suit your profile, you can attach your CV by filling out the following form.\n\n<br>We promise to keep you in mind for future selection processes in which you may fit.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n               [contact-form-7 id=\"209\" title=\"Formulario oferta de trabajo\"]\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Work whith us','','inherit','closed','closed','','1233-revision-v1','','','2021-01-27 10:35:10','2021-01-27 10:35:10','',1233,'https://www.ingivision.com/2021/01/27/1233-revision-v1/',0,'revision','',0),(1235,1,'2021-01-27 11:11:34','2021-01-27 11:11:34','<p class=\"comment-form-author\"><!-- <label>Name*</label> -->[text* your-name placeholder \"Name\"]</p>\r\n<p class=\"comment-form-email\"><!-- <label>Email *</label> -->[email* your-email placeholder \"Email\"]</p>\r\n<p class=\"comment-form-author\"><!-- <label>Name *</label> -->[text* your-telefono placeholder \"Phone\"]</p>\r\n <div class=\"clearfix\"></div>\r\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->[textarea* your-message placeholder \"Message\"]</p>\r\n<p class=\"comment-form-comment\"><!-- <label>Comment</label>  -->Adjunta tu curriculum [file* file-580 limit:2mb filetypes:pdf]</p>\r\n <div class=\"clearfix\"></div>\r\n<div class=\"spacer\" data-desktop_height=\"50\" data-mobile_height=\"50\" data-smobile_height=\"50\" style=\"height: 50px;\"></div>\r\n<div class=\"flat-contact\"><p class=\"submit-form\">[submit class:btn class:btn-normal class:btn-md \"Send CV\"]</p></div>\n1\nAlta en oferta de trabajo\nIngivision <ingivision@ingivision.com>\ningivision@ingivision.com\nDe: [your-name] <[your-email]>\r\nTelefono: [your-telefono]\r\nMensaje: [your-message]\r\n\r\nCurriculum:\r\n[file-580]\nCc:info@admirae.es\n[file-580]\n\n\n\n[_site_title] «[your-subject]»\n[_site_title] <wordpress@ingivision.com>\n[your-email]\nCuerpo del mensaje:\r\n[your-message]\r\n\r\n-- \r\nEste mensaje se ha enviado desde un formulario de contacto en [_site_title] ([_site_url])\nReply-To: [_site_admin_email]\n\n\n\nGracias por tu mensaje. Ha sido enviado.\nHa ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\nUno o más campos tienen un error. Por favor, revísalos e inténtalo de nuevo.\nHa ocurrido un error al intentar enviar tu mensaje. Por favor, inténtalo de nuevo más tarde.\nDebes aceptar los términos y condiciones antes de enviar tu mensaje.\nEl campo es obligatorio.\nEl campo es demasiado largo.\nEl campo es demasiado corto.\nEl formato de fecha es incorrecto.\nLa fecha es anterior a la más temprana permitida.\nLa fecha es posterior a la más tardía permitida.\nHa ocurrido un error desconocido al subir el archivo.\nNo tienes permisos para subir archivos de este tipo.\nEl archivo es demasiado grande.\nHa ocurrido un error al subir el archivo.\nEl formato de número no es válido.\nEl número es menor que el mínimo permitido.\nEl número es mayor que el máximo permitido.\nLa respuesta al cuestionario no es correcta.\nLa dirección de correo electrónico que has introducido no es válida.\nLa URL no es válida.\nEl número de teléfono no es válido.','Formulario oferta de trabajo ENG','','publish','closed','closed','','formulario-oferta-de-trabajo_copy','','','2021-01-27 11:14:32','2021-01-27 11:14:32','',0,'https://www.ingivision.com/?post_type=wpcf7_contact_form&#038;p=1235',0,'wpcf7_contact_form','',0),(1236,1,'2021-01-27 11:14:11','2021-01-27 11:14:11','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Join our team!</h2>\n                    </div> \n                                 \n                </div>                \n                \n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">\nAt Ingivisión we need talented, curious, committed people who can add value to our company.</p>\n<p>We are constantly evolving our software. We are looking for technical, computer and electronic personnel who speak languages ​​and who are willing to contribute and grow.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"100\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n     \n       \n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row \">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>Trabaja con nosotros</h4>\n                        <h1>Do you want to join us?</h1>\n                        <p class=\"text\">\n\n\nIf we do not currently have job offers, or they do not suit your profile, you can attach your CV by filling out the following form.\n\n<br>We promise to keep you in mind for future selection processes in which you may fit.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n               [contact-form-7 id=\"1235\" title=\"Formulario oferta de trabajo ENG\"]\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Work whith us','','inherit','closed','closed','','1233-revision-v1','','','2021-01-27 11:14:11','2021-01-27 11:14:11','',1233,'https://www.ingivision.com/2021/01/27/1233-revision-v1/',0,'revision','',0),(1237,1,'2021-01-27 11:15:04','2021-01-27 11:15:04','<!-- wp:html -->\n<section class=\"bg-image-career1\">\n        <div class=\"spacer clearfix\" data-desktop_height=\"103\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n        <div class=\"container\">\n           <div class=\"row\">\n                <div class=\"col-md-12 clearfix\">                    \n                    <div class=\"title-section style2 text-center\">\n                        <h2>Join our team!</h2>\n                    </div> \n                                 \n                </div>                \n                \n                <div class=\"col-md-12 col-sm-12 clearfix\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"55\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n                    <div class=\"themesflat_sc_vc-headings clearfix text-center\">\n                        <p class=\"sub-heading clearfix\">\nAt Ingivisión we need talented, curious, committed people who can add value to our company.</p>\n<p>We are constantly evolving our software. We are looking for technical, computer and electronic personnel who speak languages ​​and who are willing to contribute and grow.</p>\n                    </div>\n                   \n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"100\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->\n\n<!-- wp:html -->\n<section>\n     \n       \n        <div class=\"spacer clearfix\" data-desktop_height=\"94\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div>\n        <div class=\"container\">\n            <div class=\"row \">\n                <div class=\"col-md-6\">                    \n                    <div class=\"title-section style3\">\n                        <div class=\"image-title\">\n                            <img src=\"http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png\" alt=\"image\">\n                        </div>\n                        <h4>Trabaja con nosotros</h4>\n                        <h1>Do you want to join us?</h1>\n                        <p class=\"text\">\n\n\nIf we do not currently have job offers, or they do not suit your profile, you can attach your CV by filling out the following form.\n\n<br>We promise to keep you in mind for future selection processes in which you may fit.</p>\n                    </div>                    \n                </div>\n                <div class=\"col-md-6\">\n                    <div class=\"spacer clearfix\" data-desktop_height=\"0\" data-mobile_height=\"50\" data-smobile_height=\"50\"></div> \n                    <div class=\"content-box\" data-desktop_padding=\"5px 0px 0px 85px\" data-mobile_padding=\"0px 0px 0px 0px\" data-smobile_padding=\"0px 0px 0px 0px\">\n               [contact-form-7 id=\"1235\" title=\"Formulario oferta de trabajo ENG\"]\n                    </div>\n                </div>\n            </div>\n        </div>\n        <div class=\"spacer clearfix\" data-desktop_height=\"121\" data-mobile_height=\"100\" data-smobile_height=\"100\"></div>\n    </section>\n<!-- /wp:html -->','Work whith us','','inherit','closed','closed','','1233-revision-v1','','','2021-01-27 11:15:04','2021-01-27 11:15:04','',1233,'https://www.ingivision.com/2021/01/27/1233-revision-v1/',0,'revision','',0),(1239,1,'2021-02-18 10:52:01','2021-02-18 10:52:01','<!-- wp:heading -->\n<h2>El 2020 constituye un punto de inflexión y da paso a un futuro cargado de incertidumbre</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Así es. La pandemia ha revolucionado toda la economía mundial y es quien va a marcar el futuro de los distintos sectores económicos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En páginas de noticias y de economía se hace patente la preocupación por la crisis económica histórica que estamos viviendo. Como consecuencia, no dejamos de ver titulares de este estilo “España entra en recesión con una caída histórica del PIB del 18,5%” y se habla de que “se tardarán al menos dos años en alcanzar los niveles de pre pandemia” (el periódico.com) incluso 3 y 4 años según otras fuentes menos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En este escenario, te invitamos a ver los sectores más afectados y a que nos centremos en el sector hortofrutícola para tratar de aventurar cuáles son las previsiones para los próximos 10 meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Una rápida pincelada de la actual crisis por sectores</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Resumimos un poco el panorama actual por sectores para poder entender las previsiones y la posible evolución del sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Destacamos el hundimiento del sector servicios haciendo especial hincapié en los servicios turísticos.<br>El desplome del sector turístico en nuestro país ha sido algo sin precedentes, con una caída en los ingresos superior al 75%. Algo que muchos expertos califican como la peor crisis del sector turístico de nuestro país en toda su historia.<br>Para 2021 es vital poder recuperar el sector y que turismo, hostelería y comercio no pierdan de nuevo la campaña de verano.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nos fijamos ahora en el sector secundario.<br>Un sector que empezó el 2020 “en tablas” a comparación con el 2019, pero que con la llegada del confinamiento marcó una caída en el Índice de Producción Industrial (IPI) de hasta el 34%, que se recuperó en parte en la segunda mitad del año.<br>De cara al 2021 las previsiones son relativamente “optimistas” pues en estos momentos no tiene casi ninguna restricción a la actividad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La nota negativa es que nuestro país no es un país industrial, y el peso de la industria sobre nuestro PIB es uno de los más bajos de Europa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos ahora con un rápido vistazo al sector primario, que demostró su potencial durante la crisis sanitaria respondiendo con buena nota a las necesidades de la demanda. Ha sido uno de los sectores menos afectados, pero dentro del propio sector, hay subsectores más en alza que otros.<br>Además, la nube gris del Brexit planea sobre el sector con sembrando incertidumbre como veremos a continuación.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Y qué hay del sector hortofrutícola? ¿Cuáles son las previsiones?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con el estallido de la pandemia el sector hortofrutícola español demostró su potencial y su capacidad de adaptación para atender la demanda.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El ser capaces de adaptarse de forma rápida a la inesperada pandemia posibilitó el suministro de frutas y hortalizas sin que se produjesen desabastecimientos en las tiendas en ningún momento.<br>Pasado el confinamiento y aún con la situación sanitaria actual, todos los actores coinciden en tildar el futuro de complicado. No obstante, la previsión para 2021 es un crecimiento del 5% en valor, mientras que en volumen la cifra se mantiene muy similar a la del año anterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2020 ya fue un año marcado por la automatización debido a la escasez de mano de obra, y este 2021 la balanza se seguirá inclinando hacia soluciones automatizadas y robóticas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Amenazas, oportunidades y retos del sector hortofrutícola para 2021</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos identificado <strong>tres grandes oportunidades</strong> que se abren camino en el sector:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Búsqueda del bienestar y la salud.</strong><br>Una de las cosas buenas que ha tenido la pandemia es la necesidad de comer más saludable. Y es que se habla ya de un nuevo «lujo pospandemia» que es la salud y el bienestar.<br><br>Hay una búsqueda generalizada de esa salud por parte de los consumidores y, como consecuencia, una mayor tendencia a comer de forma sana: aumentar las frutas y hortalizas y limitar el consumo de grasas animales.<br><br>Todo ello augura un buen futuro para cultivos como el aguacate, los cítricos por su alto aporte de vitamina C o el aceite de oliva.<br><br>Y es que cuando vamos a comprar, nos preocupamos, ahora más que nunca, por comprar alimentos saludables.&nbsp;<br><br>Por eso, la estrepitosa caída de la demanda por parte del sector de la restauración puede ser paliada en parte por las familias que han incrementado su demanda de frescos.<br></li><li><strong>Auge de la producción ecológica.</strong><br>En relación con la tendencia anterior, se aprecia claramente un aumento en la demanda de producción ecológica, así como de productos de proximidad lo que lleva a los expertos a considerar la innovación, la producción ecológica y la sostenibilidad como la palanca del cambio para este año.<br></li><li>V<strong>enta directa «del campo (o de la granja) a la mesa».</strong><br>El comercio electrónico está en auge, y con la pandemia mucho más.<br>A través de plataformas digitales o con un solo intermediario los productores pueden llegar al consumidor final pudiendo acceder a un mayor margen de beneficio que con la cadena de ventas tradicional.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Pero no es oro todo lo que reluce, y el sector hortofrutícola se enfrenta también, a <strong>cuatro grandes retos</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Brexit</strong>.<br>Reino Unido es un mercado clave para nuestras frutas y verdura, pues es el destino al que exportamos 3 veces más de lo que exportamos al resto de países extranjeros de fuera de la UE.<br><br>La salida del Reino Unido de la Unión Europea es algo que preocupa en nuestros campos porque supone un cambio importante.<br><br>Incluso en un escenario sin aranceles como el que se ha planteado, la exportación va a requerir de mayor burocracia (licencias, permisos y declaraciones aduaneras) que podrán dificultar la actividad.&nbsp;<br></li><li><strong>Restricciones en viajes y transportes.</strong><br>Las restricciones de viaje van a seguir entre nosotros este 2021.<br><br>Y van a complicar las relaciones personales, muy arraigadas en el sector. De esta forma, se ha impuesto ya el formato online para ferias comerciales. No es un factor necesariamente negativo, pero sí supone un cambio más y una nueva adaptación para el sector.<br><br>Además, ante las dificultades en el transporte y la alta demanda en nuestro país, muchos operadores han decidido priorizar el mercado nacional para minimizar riesgos.<br></li><li><strong>Volatilidad de los precios</strong><br>La inestabilidad de los precios del sector que incremente o disminuye de forma drástica la rentabilidad de los cultivos y que ha aumentado con la pandemia.<br><br>Esto es un problema histórico que conlleva que los precios suben mucho y bajan mucho, según la estacionalidad de cada cultivo.<br></li><li><strong>Fuerte competencia extranjera</strong><br>La globalización, que favorece las importaciones de terceros países, supone un reto, ya que esas importaciones no están sometidas a la estricta regulación comunitaria durante su producción.<br><br>Países como Costa Rica, Ecuador y Colombia con la banana, o Egipto, Sudáfrica y Marruecos con los cítricos suponen una dura competencia para los cultivos nacionales.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Por recapitular ya para terminar, aunque las previsiones no son malas del todo en comparación con otros sectores, la globalización de los mercados y la incertidumbre general obliga a no bajar la guardia y a pensar en el futuro con ilusión pero con buena planificación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Desarrollar nuevas variedades, potenciar la producción ecológica o apoyarse en el sector online van a ser claves en un contexto como el actual.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y tú ¿crees que el sector hortofrutícola saldrá airoso de esta crisis? Te leemos en  comentarios.</p>\n<!-- /wp:paragraph -->','¿Cuáles son las previsiones para 2021 en el sector hortofrutícola?','','publish','open','open','','previsiones-2021-sector-hortofruticola','','','2021-03-23 08:04:51','2021-03-23 08:04:51','',0,'https://www.ingivision.com/?p=1239',0,'post','',0),(1240,1,'2021-02-18 10:24:47','2021-02-18 10:24:47','<!-- wp:heading -->\n<h2>El 2020 constituye un punto de inflexión y da paso a un futuro cargado de incertidumbre</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Así es. La pandemia ha revolucionado toda la economía mundial y es quien va a marcar el futuro de los distintos sectores económicos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En páginas de noticias y de economía se hace patente la preocupación por la crisis económica histórica que estamos viviendo. Como consecuencia, no dejamos de ver titulares de este estilo “España entra en recesión con una caída histórica del PIB del 18,5%” y se habla de que “se tardarán al menos dos años en alcanzar los niveles de pre pandemia” (el periódico.com) incluso 3 y 4 años según otras fuentes menos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En este escenario, te invitamos a ver los sectores más afectados y a que nos centremos en el sector hortofrutícola para tratar de aventurar cuáles son las previsiones para los próximos 10 meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Una rápida pincelada de la actual crisis por sectores</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Resumimos un poco el panorama actual por sectores para poder entender las previsiones y la posible evolución del sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Destacamos el hundimiento del sector servicios haciendo especial hincapié en los servicios turísticos.<br>El desplome del sector turístico en nuestro país ha sido algo sin precedentes, con una caída en los ingresos superior al 75%. Algo que muchos expertos califican como la peor crisis del sector turístico de nuestro país en toda su historia.<br>Para 2021 es vital poder recuperar el sector y que turismo, hostelería y comercio no pierdan de nuevo la campaña de verano.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nos fijamos ahora en el sector secundario.<br>Un sector que empezó el 2020 “en tablas” a comparación con el 2019, pero que con la llegada del confinamiento marcó una caída en el Índice de Producción Industrial (IPI) de hasta el 34%, que se recuperó en parte en la segunda mitad del año.<br>De cara al 2021 las previsiones son relativamente “optimistas” pues en estos momentos no tiene casi ninguna restricción a la actividad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La nota negativa es que nuestro país no es un país industrial, y el peso de la industria sobre nuestro PIB es uno de los más bajos de Europa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos ahora con un rápido vistazo al sector primario, que demostró su potencial durante la crisis sanitaria respondiendo con buena nota a las necesidades de la demanda. Ha sido uno de los sectores menos afectados, pero dentro del propio sector, hay subsectores más en alza que otros.<br>Además, la nube gris del Brexit planea sobre el sector con sembrando incertidumbre como veremos a continuación.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Y qué hay del sector hortofrutícola? ¿Cuáles son las previsiones?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con el estallido de la pandemia el sector hortofrutícola español demostró su potencial y su capacidad de adaptación para atender la demanda.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El ser capaces de adaptarse de forma rápida a la inesperada pandemia posibilitó el suministro de frutas y hortalizas sin que se produjesen desabastecimientos en las tiendas en ningún momento.<br>Pasado el confinamiento y aún con la situación sanitaria actual, todos los actores coinciden en tildar el futuro de complicado. No obstante, la previsión para 2021 es un crecimiento del 5% en valor, mientras que en volumen la cifra se mantiene muy similar a la del año anterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2020 ya fue un año marcado por la automatización debido a la escasez de mano de obra, y este 2021 la balanza se seguirá inclinando hacia soluciones automatizadas y robóticas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Amenazas, oportunidades y retos del sector hortofrutícola para 2021</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos identificado <strong>tres grandes oportunidades</strong> que se abren camino en el sector:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Búsqueda del bienestar y la salud.</strong><br>Una de las cosas buenas que ha tenido la pandemia es la necesidad de comer más saludable. Y es que se habla ya de un nuevo «lujo pospandemia» que es la salud y el bienestar.<br><br>Hay una búsqueda generalizada de esa salud por parte de los consumidores y, como consecuencia, una mayor tendencia a comer de forma sana: aumentar las frutas y hortalizas y limitar el consumo de grasas animales.<br><br>Todo ello augura un buen futuro para cultivos como el aguacate, los cítricos por su alto aporte de vitamina C o el aceite de oliva.<br><br>Y es que cuando vamos a comprar, nos preocupamos, ahora más que nunca, por comprar alimentos saludables. <br><br>Por eso, la estrepitosa caída de la demanda por parte del sector de la restauración puede ser paliada en parte por las familias que han incrementado su demanda de frescos.<br></li><li><strong>Auge de la producción ecológica.</strong><br>En relación con la tendencia anterior, se aprecia claramente un aumento en la demanda de producción ecológica, así como de productos de proximidad lo que lleva a los expertos a considerar la innovación, la producción ecológica y la sostenibilidad como la palanca del cambio para este año.<br></li><li>V<strong>enta directa «del campo (o de la granja) a la mesa».</strong><br>El comercio electrónico está en auge, y con la pandemia mucho más.<br>A través de plataformas digitales o con un solo intermediario los productores pueden llegar al consumidor final pudiendo acceder a un mayor margen de beneficio que con la cadena de ventas tradicional.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Pero no es oro todo lo que reluce, y el sector hortofrutícola se enfrenta también, a <strong>cuatro grandes retos</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Brexit</strong>.<br>Reino Unido es un mercado clave para nuestras frutas y verdura, pues es el destino al que exportamos 3 veces más de lo que exportamos al resto de países extranjeros de fuera de la UE.<br><br>La salida del Reino Unido de la Unión Europea es algo que preocupa en nuestros campos porque supone un cambio importante.<br><br>Incluso en un escenario sin aranceles como el que se ha planteado, la exportación va a requerir de mayor burocracia (licencias, permisos y declaraciones aduaneras) que podrán dificultar la actividad. <br></li><li><strong>Restricciones en viajes y transportes.</strong><br>Las restricciones de viaje van a seguir entre nosotros este 2021.<br><br>Y van a complicar las relaciones personales, muy arraigadas en el sector. De esta forma, se ha impuesto ya el formato online para ferias comerciales. No es un factor necesariamente negativo, pero sí supone un cambio más y una nueva adaptación para el sector.<br><br>Además, ante las dificultades en el transporte y la alta demanda en nuestro país, muchos operadores han decidido priorizar el mercado nacional para minimizar riesgos.<br></li><li><strong>Volatilidad de los precios</strong><br>La inestabilidad de los precios del sector que incremente o disminuye de forma drástica la rentabilidad de los cultivos y que ha aumentado con la pandemia.<br><br>Esto es un problema histórico que conlleva que los precios suben mucho y bajan mucho, según la estacionalidad de cada cultivo.<br></li><li><strong>Fuerte competencia extranjera</strong><br>La globalización, que favorece las importaciones de terceros países, supone un reto, ya que esas importaciones no están sometidas a la estricta regulación comunitaria durante su producción.<br><br>Países como Costa Rica, Ecuador y Colombia con la banana, o Egipto, Sudáfrica y Marruecos con los cítricos suponen una dura competencia para los cultivos nacionales.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Por recapitular ya para terminar, aunque las previsiones no son malas del todo en comparación con otros sectores, la globalización de los mercados y la incertidumbre general obliga a no bajar la guardia y a pensar en el futuro con ilusión pero con buena planificación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Desarrollar nuevas variedades, potenciar la producción ecológica o apoyarse en el sector online van a ser claves en un contexto como el actual.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y tú ¿crees que el sector hortofrutícola saldrá airoso de esta crisis? Te leemos en  comentarios.</p>\n<!-- /wp:paragraph -->','¿Cuáles son las previsiones para 2021 en el sector hortofrutícola?','','inherit','closed','closed','','1239-revision-v1','','','2021-02-18 10:24:47','2021-02-18 10:24:47','',1239,'https://www.ingivision.com/2021/02/18/1239-revision-v1/',0,'revision','',0),(1241,1,'2021-02-18 10:51:33','2021-02-18 10:51:33','','Futuro-sector-hortofruticola','','inherit','open','closed','','futuro-sector-hortofruticola','','','2021-02-18 10:51:46','2021-02-18 10:51:46','',1239,'https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg',0,'attachment','image/jpeg',0),(1242,1,'2021-02-23 09:32:03','2021-02-23 09:32:03','<!-- wp:paragraph -->\n<p>Durante la próxima campaña de dátil que se iniciará en agosto, instalaremos algunas unidades de nuestro sistema IngiGrader adaptado al trabajo en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema está orientado a la detección de las principales características de calidad externa para este tipo de fruto como son: despegado de la piel, condición seca, deformidades de forma y frutos con roturas además por supuesto de realizar las principales medidas para la clasificación por tamaño y color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema realizará adquisiciones de ejemplos de trabajo que cada cliente considere importantes a detectar de manera que se podrá adaptar el algoritmo a medida para cada caso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema ha sido adaptado en una gradación de 5 niveles de calidad entre 0 y 100 que cubren la mayoría de defectos que suelen darse en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Disponíamos de experiencias previas para este fruto, pero siempre basadas en criterios deterministas de detección de la calidad. El nuevo sistema basado en redes neuronales es mucho más sencillo e intuitivo en su manejo por parte del cliente y presenta gran flexibilidad a la hora de adaptarlo a las necesidades concretas de cada centro de trabajo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1249,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg\" alt=\"Clasificación de dátiles con inteligencia artificial\" class=\"wp-image-1249\"/></figure>\n<!-- /wp:image -->','IngiGrader 2.0 se instalará en varios clientes para la próxima campaña de dátil','','publish','open','open','','inteligencia-artificial-campana-datil','','','2021-03-23 08:03:44','2021-03-23 08:03:44','',0,'https://www.ingivision.com/?p=1242',0,'post','',0),(1243,1,'2021-02-23 09:11:49','2021-02-23 09:11:49','<!-- wp:paragraph -->\n<p>Durante la próxima campaña de dátil que se iniciará en agosto, instalaremos algunas unidades de nuestro sistema IngiGrader adaptado al trabajo en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema está orientado a la detección de las principales características de calidad externa para este tipo de fruto como son: despegado de la piel, condición seca, deformidades de forma y frutos con roturas además por supuesto de realizar las principales medidas para la clasificación por tamaño y color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema realizará adquisiciones de ejemplos de trabajo que cada cliente considere importantes a detectar de manera que se podrá adaptar el algoritmo a medida para cada caso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema ha sido adaptado en una gradación de 5 niveles de calidad entre 0 y 100 que cubren la mayoría de defectos que suelen darse en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Disponíamos de experiencias previas para este fruto, pero siempre basadas en criterios deterministas de detección de la calidad, el nuevo sistema basado en redes neuronales es mucho más sencillo e intuitivo en su manejo por parte del cliente y presenta gran flexibilidad a la hora de adaptarlo a las necesidades concretas de cada centro de trabajo.</p>\n<!-- /wp:paragraph -->','IngiGrader 2.0 se instalará en varios clientes para la próxima campaña de dátil','','inherit','closed','closed','','1242-revision-v1','','','2021-02-23 09:11:49','2021-02-23 09:11:49','',1242,'https://www.ingivision.com/2021/02/23/1242-revision-v1/',0,'revision','',0),(1244,1,'2021-02-23 09:31:30','2021-02-23 09:31:30','','software-clasificacion-datiles-inteligencia-artificial','','inherit','open','closed','','software-clasificacion-datiles-inteligencia-artificial','','','2021-02-23 09:31:55','2021-02-23 09:31:55','',1242,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg',0,'attachment','image/jpeg',0),(1245,1,'2021-02-23 09:32:03','2021-02-23 09:32:03','<!-- wp:paragraph -->\n<p>Durante la próxima campaña de dátil que se iniciará en agosto, instalaremos algunas unidades de nuestro sistema IngiGrader adaptado al trabajo en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema está orientado a la detección de las principales características de calidad externa para este tipo de fruto como son: despegado de la piel, condición seca, deformidades de forma y frutos con roturas además por supuesto de realizar las principales medidas para la clasificación por tamaño y color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema realizará adquisiciones de ejemplos de trabajo que cada cliente considere importantes a detectar de manera que se podrá adaptar el algoritmo a medida para cada caso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema ha sido adaptado en una gradación de 5 niveles de calidad entre 0 y 100 que cubren la mayoría de defectos que suelen darse en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Disponíamos de experiencias previas para este fruto, pero siempre basadas en criterios deterministas de detección de la calidad. El nuevo sistema basado en redes neuronales es mucho más sencillo e intuitivo en su manejo por parte del cliente y presenta gran flexibilidad a la hora de adaptarlo a las necesidades concretas de cada centro de trabajo.</p>\n<!-- /wp:paragraph -->','IngiGrader 2.0 se instalará en varios clientes para la próxima campaña de dátil','','inherit','closed','closed','','1242-revision-v1','','','2021-02-23 09:32:03','2021-02-23 09:32:03','',1242,'https://www.ingivision.com/2021/02/23/1242-revision-v1/',0,'revision','',0),(1246,1,'2021-02-23 09:56:36','2021-02-23 09:56:36','<!-- wp:paragraph -->\n<p>During the next date season that will start in August, we will install some units of our IngiGrader system adapted to work on this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system is aimed at detecting the main external quality characteristics for this type of fruit, such as: blister surface, dry condition, shape deformities and broken fruits, in addition to the assumption of carrying out the main measurements for size classification. and color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system will make acquisitions of work examples that each client considers important to detect so that the algorithm can be tailored for each case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system has been adapted in a grading of 5 quality levels between 0 and 100 that cover most of the defects that usually occur in this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We had previous experiences for this fruit but always based on deterministic quality detection criteria, the new AI system is much simpler and more intuitive in its handling by the client and presents great flexibility when adapting it to the specific needs of each packing house.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1249,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg\" alt=\"\" class=\"wp-image-1249\"/></figure>\n<!-- /wp:image -->','IngiGrader 2.0 will be installed in several customers for the next date season','','publish','open','open','','ingigrader-2-0-will-be-installed-in-several-customers-for-the-next-date-season','','','2021-02-23 10:18:16','2021-02-23 10:18:16','',0,'https://www.ingivision.com/?p=1246',0,'post','',0),(1247,1,'2021-02-23 09:51:17','2021-02-23 09:51:17','<!-- wp:paragraph -->\n<p>During the next date season that will start in August, we will install some units of our IngiGrader system adapted to work on this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system is aimed at detecting the main external quality characteristics for this type of fruit, such as: blister surface, dry condition, shape deformities and broken fruits, in addition to the assumption of carrying out the main measurements for size classification. and color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system will make acquisitions of work examples that each client considers important to detect so that the algorithm can be tailored for each case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system has been adapted in a grading of 5 quality levels between 0 and 100 that cover most of the defects that usually occur in this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We had previous experiences for this fruit but always based on deterministic quality detection criteria, the new AI system is much simpler and more intuitive in its handling by the client and presents great flexibility when adapting it to the specific needs of each packing house.</p>\n<!-- /wp:paragraph -->','IngiGrader 2.0 will be installed in several customers for the next date season','','inherit','closed','closed','','1246-revision-v1','','','2021-02-23 09:51:17','2021-02-23 09:51:17','',1246,'https://www.ingivision.com/2021/02/23/1246-revision-v1/',0,'revision','',0),(1248,1,'2021-02-23 09:53:24','2021-02-23 09:53:24','<!-- wp:paragraph -->\n<p>¿Eres de los que miran el físico o te enamoras del interior? Puede que tengas clara la respuesta si estamos hablando de personas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué pasa cuando hablamos de fruta o verdura? ¿piensas de la misma forma?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El 69% de los consumidores prioriza la calidad como motivo que más le influye en la decisión de compra, frente al 24 % que compra fruta y verdura motivado por el aspecto o presentación del producto. <em>(Fuente: YouGov para Alimarket Gran Consumo)</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Si te dedicas al sector hortofrutícola no te pierdas este post en el que analizamos todas las claves del control de calidad en frutas y verduras.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Pero ¿qué entendemos por calidad en las frutas y hortalizas?<br>Llegados a este punto se hace necesario empezar con la definición de calidad ¿no te parece?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>Definición de calidad</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La palabra «calidad» proviene del latín <em>qualitas</em>, que significa cualidad o atributo de un objeto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Sin embargo, en la actualidad un significado bastante aceptado sería «grado de excelencia o superioridad»<em> (Kader, et al., 1985).</em></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Decimos que un producto es de mayor calidad cuando supera en uno o varios atributos a otro producto.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La calidad es por lo tanto un concepto que tiene un claro componente subjetivo.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Cada consumidor aplica su propio filtro personal para determinar la calidad de un mismo alimento.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Además, el concepto de calidad es algo cambiante a lo largo del tiempo. Por ejemplo lo que antaño era un tomate de calidad, hoy día podría no ser considerado como tal.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Veamos de forma breve cómo se ha llegado al concepto de calidad actual.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":76,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\" alt=\"Calidad en frutas y hortalizas\" class=\"wp-image-76\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>Evolución de la calidad en frutas y verduras</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día se ha incrementado el consumo de fruta y verdura total respecto a décadas anteriores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Este incremento tiene distintas causas: preocupación por una dieta más saludable, falta de tiempo para cocinar, avance del veganismo y otras dietas basadas en el consumo de vegetales las sociedades occidentales etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por otra parte y como hemos visto, existe una creciente demanda de <strong>fruta de primera calidad</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por todo esto podemos afirmar que atrás quedaron los años en los&nbsp; que cada actor (productor, comerciante o consumidor) fijaba su nivel de calidad de forma independiente y sin unificar criterios.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Hoy en día, y teniendo en cuenta que el precio de la fruta se ve directamente influido por el nivel de calidad de ésta, todos los actores han acercado posturas para fijar el nivel de calidad que satisfaga al consumidor final.<br><br>A más calidad del fruto, mayor precio y beneficio. De ahí el interés de productores y comerciantes en la búsqueda de la excelencia.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Lo que valora el consumidor es el aspecto, el sabor y los nutrientes que aportan las frutas frescas y de temporada.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por su parte, los productores están continuamente innovando con variedades de frutas y hortalizas en las que se priorizan aspectos como la madurez, el sabor y la facilidad de consumo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Por último, y como no podía ser de otra forma, existe una legislación que regula todo el tema de la calidad dentro de un territorio, tanto a nivel nacional, como europeo e internacional con numerosos organismos reguladores.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de esta normalización es fijar un punto común en el comercio internacional y proporcionar un criterio que permita determinar la calidad mínima a cumplir.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te cuento con más detalle qué parámetros definen la calidad en las frutas y hortalizas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué parámetros influyen en la calidad de las frutas?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Para fijar el nivel de calidad se evalúan aspectos externos y factores más técnicos, siendo la etapa de maduración de la fruta la clave para conseguir la excelencia en cuanto a calidad.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Los principales componentes de la calidad de las frutas y hortalizas frescas son:&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Características típicas de la variedad</strong><br>Atendiendo a la variedad concreta de cada fruto se establecen unas características típicas y que son aceptadas como válidas.<br></li><li><strong>Ausencia de defectos</strong><br>Aquí es importante señalar que, aunque en muchos casos los defectos no afectan sus cualidades comestibles, un fruto con defectos físicos o morfológicos es rechazado por la mayoría de los consumidores.<br><br>Los defectos morfológicos pueden surgir durante el crecimiento por diversas causas como el clima, el riego, la fertilización, etc.<br></li><li><strong>Desarrollo y madurez adecuados<br></strong>Lo que demandamos como consumidores es frescura y madurez. Frescura entendida como que transcurra el menor tiempo posible entre el momento de la cosecha y el de la compra.<br><br>Y madurez como punto exacto para la recolección con la mayor turgencia, color, y sabor del fruto.<br><br>¿A quién no le gusta comerse una buena naranja dulce con su aroma característico o una manzana crujiente?<br></li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":4} -->\n<ol start=\"4\"><li><strong>Tamaño</strong><strong><br></strong>Atendiendo al tamaño o calibre del fruto se establecen tres distintas calidades: <strong>fruta extra, fruta de primera calidad, fruta de segunda</strong>.<br></li><li><strong>Homogeneidad</strong><strong><br></strong>Se busca la homogeneidad tanto en el calibre de los frutos como en el color que presentan y nivel de maduración de cada partida.<strong><br></strong></li><li><strong>Envasado/presentación</strong><strong><br></strong>Durante el proceso de envasado pueden surgir defectos físicos preocupantes.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Nos referimos a lesiones durante el manipulado del producto, daños por frío o brotación y enraizamiento en bulbos y raíces derivados de unas condiciones de conservación inadecuadas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Cómo se evalúa la fruta en un control de calidad?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En un proceso de calidad se llevan a cabo tres tipos de evaluaciones sobre el fruto que te voy a contar de forma breve.<strong><br></strong></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación sensorial</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se trata de la evaluación que se realiza a través de los sentidos y en la que se valoran estos cinco aspectos:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Color. De apariencia uniforme, homogénea y brillante por todo el fruto.</li><li>Tamaño y peso. Similar calibre entre las frutas .</li><li>Textura. Firme y en su punto justo de maduración.</li><li>Interior. Se valora el olor y el sabor del fruto.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Evaluación técnica</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Se valoran principalmente estos tres componentes, según la variedad de la fruta analizada:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Ph.&nbsp;</li><li>Humedad.&nbsp;</li><li>Firmeza</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Tests microbiológicos y químicos</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por último, se realizan distintos tipos de tests para conocer la presencia de microorganismos en la fruta.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El objetivo de estos test también es determinar con qué productos químicos ha sido tratada la planta durante el proceso de crecimiento y maduración de los frutos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":77,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg\" alt=\"Software de calibrado de frutas\" class=\"wp-image-77\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>El control de calidad hortofrutícola y sus fases</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>En el momento de la cosecha, si la recogida se realiza de forma manual, ya se hace un primer “filtrado” de fruta, descartando y dejando en el árbol o en el suelo el fruto que no cumple con los&nbsp; aspectos que hemos ido viendo en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Una vez la fruta es trasladada al lugar de clasificación, se establecen cuatro fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Posicionamiento<br></strong>Se trata de ubicar la fruta en las líneas de producción para su calibración y clasificación.<br></li><li><strong>Clasificación o identificación<br></strong>La fruta viene mezclada de la cosecha.<br>Es en esta fase cuando se clasifican y se separan por categoría atendiendo al calibre de cada fruta: peso, diámetro máximo, medio y/o mínimo.<br><br>Si hablamos de tubérculos como la patata, puede ir mezclada con piedras o tierra que se eliminarán en esta fase.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:list {\"ordered\":true,\"start\":3} -->\n<ol start=\"3\"><li><strong>Defectos<br></strong>Se detectan los defectos para retirar las frutas que no pueden ser llevadas al lineal de venta.<br></li><li><strong>Comprobación final y empaquetado<br></strong>En la fase final, se protege la fruta para que pueda soportar el transporte.<br><br>Se encaja, se paletiza y queda lista para su traslado hasta el lineal comercial.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:image {\"id\":79,\"sizeSlug\":\"large\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png\" alt=\"\" class=\"wp-image-79\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:heading -->\n<h2><strong>¿Cómo llevar a cabo el proceso de calidad en frutas de forma automatizada?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p><br>El sector industrial hortofrutícola está centrado en el desarrollo de soluciones que permitan perfeccionar cada una de las fases que te he contado en este post.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En el mercado podemos encontrar gran cantidad de maquinaria y elementos de robótica que hacen posible una optimización del proceso en cualquiera de sus fases:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Calibradores cada vez más rápidos.<br></li><li>Desarrollos de software especializado en detección de parámetros como color, tamaño o peso.<br></li><li>Sistemas de inteligencia artificial aplicada capaces de “aprender” a detectar defectos en el fruto, tanto en su exterior como en su interior.<br></li><li>Herramientas específicas como termómetros, refractómetros (para evaluar los sólidos solubles, es decir, azúcares presentes en la fruta), penetrómetros (firmeza)<br></li><li>Paletizadores versátiles y realmente compactos.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Son ejemplos claros de que los avances en este campo están siendo súper rápidos y muy interesantes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Estos avances quedan englobados en la llamada <strong>Industria 4.0</strong>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La Industria 4.0 no es otra cosa que una nueva forma de organizar la producción apoyándose en las nuevas tecnologías.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sector hortofrutícola ha apostado por mecanizar al máximo todos los procesos que se desarrollan en los almacenes.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>De esta forma encontramos almacenes interconectados en los que los datos fluyen en tiempo real y permiten tomar decisiones con rapidez y acierto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2><strong>¿Qué te proponemos desde Ingivision?</strong></h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos desarrollado un sistema electrónico <em>low cost </em>de calibración apto para cualquier calibrador nuevo o antiguo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El software es capaz de detectar peso, tamaño, color, densidad y forma del fruto entre otras variables.&nbsp;&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Otras de sus características son:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>Reducción de componentes.<br></li><li>Un único programa adaptable a cualquier tipo de calibrado.<br></li><li>Prácticamente abarca el calibrado de cualquier fruta.<br><br>Trabaja desde cerezas hasta sandías y cualquier fruta de tamaño intermedio entre ambas susceptible de ser calibrada como: cherries, cítricos, tomates, fruta de hueso, aguacates, mangos, melones, algunos tipos de calabazas…<br></li><li>Excelente relación calidad-precio.<br></li><li>Altas prestaciones evaluando peso, tamaño, color, forma y defectos de la fruta. ¡Hasta 30 unidades de fruta por segundo!</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Si buscas ahorrar tiempo e incrementar la eficacia y la eficiencia de tus líneas de producto échale un vistazo a nuestro <a href=\"https://ingivision.admirae.es/productos/\">software de calibrado de frutas</a>.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><em>Fuentes: Ministerio de Industria, Comercio y Turismo, tecnologiahorticola.com, mundoagro.cl, deccoiberica.es, Alimarket, ecoportal.net.</em></p>\n<!-- /wp:paragraph -->','¿Qué es el control de calidad en las frutas? Todas las claves','','inherit','closed','closed','','71-revision-v1','','','2021-02-23 09:53:24','2021-02-23 09:53:24','',71,'https://www.ingivision.com/2021/02/23/71-revision-v1/',0,'revision','',0),(1249,1,'2021-02-23 09:56:26','2021-02-23 09:56:26','','software-clasificacion-datiles','','inherit','open','closed','','software-clasificacion-datiles','','','2021-02-23 09:59:50','2021-02-23 09:59:50','',1246,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles.jpg',0,'attachment','image/jpeg',0),(1250,1,'2021-02-23 09:56:36','2021-02-23 09:56:36','<!-- wp:paragraph -->\n<p>During the next date season that will start in August, we will install some units of our IngiGrader system adapted to work on this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system is aimed at detecting the main external quality characteristics for this type of fruit, such as: blister surface, dry condition, shape deformities and broken fruits, in addition to the assumption of carrying out the main measurements for size classification. and color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system will make acquisitions of work examples that each client considers important to detect so that the algorithm can be tailored for each case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system has been adapted in a grading of 5 quality levels between 0 and 100 that cover most of the defects that usually occur in this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We had previous experiences for this fruit but always based on deterministic quality detection criteria, the new AI system is much simpler and more intuitive in its handling by the client and presents great flexibility when adapting it to the specific needs of each packing house.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1249,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg\" alt=\"\" class=\"wp-image-1249\"/></figure>\n<!-- /wp:image -->','IngiGrader 2.0 will be installed in several customers for the next date season','','inherit','closed','closed','','1246-revision-v1','','','2021-02-23 09:56:36','2021-02-23 09:56:36','',1246,'https://www.ingivision.com/2021/02/23/1246-revision-v1/',0,'revision','',0),(1251,1,'2021-02-23 09:57:46','2021-02-23 09:57:46','<!-- wp:paragraph -->\n<p>During the next date season that will start in August, we will install some units of our IngiGrader system adapted to work on this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system is aimed at detecting the main external quality characteristics for this type of fruit, such as: blister surface, dry condition, shape deformities and broken fruits, in addition to the assumption of carrying out the main measurements for size classification. and color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system will make acquisitions of work examples that each client considers important to detect so that the algorithm can be tailored for each case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system has been adapted in a grading of 5 quality levels between 0 and 100 that cover most of the defects that usually occur in this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We had previous experiences for this fruit but always based on deterministic quality detection criteria, the new AI system is much simpler and more intuitive in its handling by the client and presents great flexibility when adapting it to the specific needs of each packing house.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1249,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg\" alt=\"\" class=\"wp-image-1249\"/></figure>\n<!-- /wp:image -->','IngiGrader 2.0 will be installed in several customers for the next date season','','inherit','closed','closed','','1246-revision-v1','','','2021-02-23 09:57:46','2021-02-23 09:57:46','',1246,'https://www.ingivision.com/2021/02/23/1246-revision-v1/',0,'revision','',0),(1253,1,'2021-02-23 09:59:52','2021-02-23 09:59:52','<!-- wp:paragraph -->\n<p>Durante la próxima campaña de dátil que se iniciará en agosto, instalaremos algunas unidades de nuestro sistema IngiGrader adaptado al trabajo en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema está orientado a la detección de las principales características de calidad externa para este tipo de fruto como son: despegado de la piel, condición seca, deformidades de forma y frutos con roturas además por supuesto de realizar las principales medidas para la clasificación por tamaño y color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema realizará adquisiciones de ejemplos de trabajo que cada cliente considere importantes a detectar de manera que se podrá adaptar el algoritmo a medida para cada caso.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El sistema ha sido adaptado en una gradación de 5 niveles de calidad entre 0 y 100 que cubren la mayoría de defectos que suelen darse en este fruto.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Disponíamos de experiencias previas para este fruto, pero siempre basadas en criterios deterministas de detección de la calidad. El nuevo sistema basado en redes neuronales es mucho más sencillo e intuitivo en su manejo por parte del cliente y presenta gran flexibilidad a la hora de adaptarlo a las necesidades concretas de cada centro de trabajo.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1249,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg\" alt=\"Clasificación de dátiles con inteligencia artificial\" class=\"wp-image-1249\"/></figure>\n<!-- /wp:image -->','IngiGrader 2.0 se instalará en varios clientes para la próxima campaña de dátil','','inherit','closed','closed','','1242-revision-v1','','','2021-02-23 09:59:52','2021-02-23 09:59:52','',1242,'https://www.ingivision.com/2021/02/23/1242-revision-v1/',0,'revision','',0),(1254,1,'2021-02-23 10:18:16','2021-02-23 10:18:16','<!-- wp:paragraph -->\n<p>During the next date season that will start in August, we will install some units of our IngiGrader system adapted to work on this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system is aimed at detecting the main external quality characteristics for this type of fruit, such as: blister surface, dry condition, shape deformities and broken fruits, in addition to the assumption of carrying out the main measurements for size classification. and color.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system will make acquisitions of work examples that each client considers important to detect so that the algorithm can be tailored for each case.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>The system has been adapted in a grading of 5 quality levels between 0 and 100 that cover most of the defects that usually occur in this fruit.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>We had previous experiences for this fruit but always based on deterministic quality detection criteria, the new AI system is much simpler and more intuitive in its handling by the client and presents great flexibility when adapting it to the specific needs of each packing house.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:spacer -->\n<div style=\"height:100px\" aria-hidden=\"true\" class=\"wp-block-spacer\"></div>\n<!-- /wp:spacer -->\n\n<!-- wp:image {\"id\":1249,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg\" alt=\"\" class=\"wp-image-1249\"/></figure>\n<!-- /wp:image -->','IngiGrader 2.0 will be installed in several customers for the next date season','','inherit','closed','closed','','1246-revision-v1','','','2021-02-23 10:18:16','2021-02-23 10:18:16','',1246,'https://www.ingivision.com/2021/02/23/1246-revision-v1/',0,'revision','',0),(1255,0,'2021-02-24 05:22:53','2021-02-24 05:22:53','IMPORTANT NOTICE\ninfo@domainregistration.com\n+1542384593236\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Feb 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email\n8\n5.181.40.113\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\nhttps://www.ingivision.com/contacto/\n24 de febrero de 2021\n05:22\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-3','','','2021-02-24 05:22:53','2021-02-24 05:22:53','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1255',0,'flamingo_inbound','',0),(1256,0,'2021-02-24 05:22:53','2021-02-24 05:22:53','IMPORTANT NOTICE\ninfo@domainregistration.com\n+1542384593236\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Feb 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregister.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email\n8\n5.181.40.113\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\nhttps://www.ingivision.com/contacto/\n24 de febrero de 2021\n05:22\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-6','','','2021-02-24 05:22:53','2021-02-24 05:22:53','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1256',0,'flamingo_inbound','',0),(1257,0,'2021-02-27 00:09:16','2021-02-27 00:09:16','RussellSmilm\naccsmarket.net@gmaildot.com\n83533198855\nSellAccs\n✨Premium Seller - 8 years old Twitter Account With 1k+ Followers For Just $50✨ \r\n \r\nRecommended Webpage \r\nhttps://sellaccs.net \r\n \r\nContact \r\nSkype &amp; Telegram : congmmo \r\nICQ : @652720497 \r\nEmail : accsmarket.net@gmail .com \r\n \r\nThanks\nEnviar mensaje\n8\n135.148.2.94\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.34 Safari/537.36 Edg/83.0.478.25\nhttps://www.ingivision.com/contacto/\n27 de febrero de 2021\n00:09\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nOtro sitio realizado con WordPress\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-7','','','2021-02-27 00:09:16','2021-02-27 00:09:16','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1257',0,'flamingo_inbound','',0),(1259,1,'2021-02-27 18:24:51','2021-02-27 18:24:51','{\n    \"blogdescription\": {\n        \"value\": \"Desarrollamos sistemas electr\\u00f3nicos para maquinaria hortofrut\\u00edcola.\",\n        \"type\": \"option\",\n        \"user_id\": 1,\n        \"date_modified_gmt\": \"2021-02-27 18:24:51\"\n    }\n}','','','trash','closed','closed','','432bb9fb-02db-4f98-a41c-f4a50bf935df','','','2021-02-27 18:24:51','2021-02-27 18:24:51','',0,'https://www.ingivision.com/2021/02/27/432bb9fb-02db-4f98-a41c-f4a50bf935df/',0,'customize_changeset','',0),(1260,0,'2021-03-01 21:45:49','2021-03-01 21:45:49','Marco cannizzaro\ncfgsas@hotmail.it\n+393479633842\nTitolare\nSalve siamo un’azienda che operiamo nel settore ortofrutticolo sarei interessato ad acquistare una calibratrice per poi rivenderla\n8\n185.142.169.233\nMozilla/5.0 (iPhone; CPU iPhone OS 14_3 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 [FBAN/FBIOS;FBAV/307.0.0.58.109;FBBV/275133629;FBDV/iPhone12,1;FBMD/iPhone;FBSN/iOS;FBSV/14.3;FBSS/2;FBID/phone;FBLC/it_IT;FBOP/5;FBRV/0]\nhttps://www.ingivision.com/contacto/\n1 de marzo de 2021\n21:45\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-8','','','2021-03-01 21:45:49','2021-03-01 21:45:49','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1260',0,'flamingo_inbound','',0),(1261,0,'2021-03-04 03:00:25','2021-03-04 03:00:25','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 03 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email\n9\n104.249.27.251\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\nhttps://www.ingivision.com/contacto/\n4 de marzo de 2021\n03:00\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-9','','','2021-03-04 03:00:25','2021-03-04 03:00:25','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1261',0,'flamingo_inbound','',0),(1262,0,'2021-03-04 03:00:25','2021-03-04 03:00:25','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 03 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domain-service.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email\n9\n104.249.27.251\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.150 Safari/537.36\nhttps://www.ingivision.com/contacto/\n4 de marzo de 2021\n03:00\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-10','','','2021-03-04 03:00:25','2021-03-04 03:00:25','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1262',0,'flamingo_inbound','',0),(1263,0,'2021-03-07 11:39:10','2021-03-07 11:39:10','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nNotice#: 491323\r\nDate: 07 Mar 2021\r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN ingyvision.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain ingyvision.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain ingyvision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingyvision.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nACT IMMEDIATELY.\r\n\r\nThe submission notification ingyvision.com will EXPIRE WITHIN 24 HOURS after reception of this email.\n9\n77.75.127.203\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\nhttps://www.ingivision.com/contacto/\n7 de marzo de 2021\n11:39\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-11','','','2021-03-07 11:39:10','2021-03-07 11:39:10','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1263',0,'flamingo_inbound','',0),(1264,0,'2021-03-07 11:39:10','2021-03-07 11:39:10','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nNotice#: 491323\r\nDate: 07 Mar 2021\r\n\r\nYOUR IMMEDIATE ATTENTION TO THIS MESSAGE IS ABSOLUTELY NECESSARY!\r\n\r\nYOUR DOMAIN ingyvision.com WILL BE TERMINATED WITHIN 24 HOURS\r\n\r\nWe have not received your payment for the renewal of your domain ingyvision.com\r\n\r\nWe have made several attempts to reach you by phone, to inform you regarding the TERMINATION of your domain ingyvision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingyvision.com WILL BE TERMINATED\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://registerdomains.ga\r\n\r\nACT IMMEDIATELY.\r\n\r\nThe submission notification ingyvision.com will EXPIRE WITHIN 24 HOURS after reception of this email.\n9\n77.75.127.203\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\nhttps://www.ingivision.com/contacto/\n7 de marzo de 2021\n11:39\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-12','','','2021-03-07 11:39:10','2021-03-07 11:39:10','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1264',0,'flamingo_inbound','',0),(1265,0,'2021-03-18 20:35:54','2021-03-18 20:35:54','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 18 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email\n9\n45.72.74.193\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\nhttps://www.ingivision.com/contacto/\n18 de marzo de 2021\n20:35\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-14','','','2021-03-18 20:35:54','2021-03-18 20:35:54','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1265',0,'flamingo_inbound','',0),(1266,0,'2021-03-18 20:35:54','2021-03-18 20:35:54','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN fruitgradingelectronics.com\r\nInvoice#: 491343\r\nDate: 18 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN fruitgradingelectronics.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN fruitgradingelectronics.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain fruitgradingelectronics.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain fruitgradingelectronics.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN fruitgradingelectronics.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregisterservice.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN fruitgradingelectronics.com\r\n\r\nThe submission notification fruitgradingelectronics.com will EXPIRE WITHIN 24 HOURS after reception of this email\n9\n45.72.74.193\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\nhttps://www.ingivision.com/contacto/\n18 de marzo de 2021\n20:35\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-14','','','2021-03-18 20:35:54','2021-03-18 20:35:54','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1266',0,'flamingo_inbound','',0),(1267,0,'2021-03-20 16:11:59','2021-03-20 16:11:59','RonaldTah\nyourmail@gmail.com\n81321953854\nhttps://coin2x.org\nDoubleBitcoin - Double your bitcoin in 24 hours - Professional Bitcoin Doubler Platform. \r\nClick to : https://coin2x.org\nEnviar mensaje\n11\n135.148.2.94\nMozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36\nhttps://www.ingivision.com/contacto/\n20 de marzo de 2021\n16:11\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-15','','','2021-03-20 16:11:59','2021-03-20 16:11:59','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1267',0,'flamingo_inbound','',0),(1268,0,'2021-03-20 22:21:11','2021-03-20 22:21:11','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 20 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.\n11\n23.94.60.47\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\nhttps://www.ingivision.com/contacto/\n20 de marzo de 2021\n22:21\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-16','','','2021-03-20 22:21:11','2021-03-20 22:21:11','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1268',0,'flamingo_inbound','',0),(1269,0,'2021-03-20 22:21:11','2021-03-20 22:21:11','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 20 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://domainregistrar.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.\n11\n23.94.60.47\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/89.0.4389.82 Safari/537.36\nhttps://www.ingivision.com/contacto/\n20 de marzo de 2021\n22:21\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-17','','','2021-03-20 22:21:11','2021-03-20 22:21:11','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1269',0,'flamingo_inbound','',0),(1270,0,'2021-03-21 02:09:51','2021-03-21 02:09:51','AustinCaw\nyourmail@gmail.com\n85151626628\nhttps://ether2x.net\nDoubleETHEREUM - Double your ETHEREUM in 24 hours - Professional ETHEREUM Doubler Platform. \r\nClick : https://ether2x.net\nEnviar mensaje\n11\n135.148.2.77\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4087.0 Safari/537.36\nhttps://www.ingivision.com/contacto/\n21 de marzo de 2021\n02:09\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','flamingo-spam','closed','closed','','your-subject-18','','','2021-03-21 02:09:51','2021-03-21 02:09:51','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1270',0,'flamingo_inbound','',0),(1271,1,'2021-03-23 08:04:15','2021-03-23 08:04:15','<!-- wp:heading -->\n<h2>El 2020 constituye un punto de inflexión y da paso a un futuro cargado de incertidumbre</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Así es. La pandemia ha revolucionado toda la economía mundial y es quien va a marcar el futuro de los distintos sectores económicos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En páginas de noticias y de economía se hace patente la preocupación por la crisis económica histórica que estamos viviendo. Como consecuencia, no dejamos de ver titulares de este estilo “España entra en recesión con una caída histórica del PIB del 18,5%” y se habla de que “se tardarán al menos dos años en alcanzar los niveles de pre pandemia” (el periódico.com) incluso 3 y 4 años según otras fuentes menos optimistas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En este escenario, te invitamos a ver los sectores más afectados y a que nos centremos en el sector hortofrutícola para tratar de aventurar cuáles son las previsiones para los próximos 10 meses.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Una rápida pincelada de la actual crisis por sectores</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Resumimos un poco el panorama actual por sectores para poder entender las previsiones y la posible evolución del sector hortofrutícola.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Destacamos el hundimiento del sector servicios haciendo especial hincapié en los servicios turísticos.<br>El desplome del sector turístico en nuestro país ha sido algo sin precedentes, con una caída en los ingresos superior al 75%. Algo que muchos expertos califican como la peor crisis del sector turístico de nuestro país en toda su historia.<br>Para 2021 es vital poder recuperar el sector y que turismo, hostelería y comercio no pierdan de nuevo la campaña de verano.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Nos fijamos ahora en el sector secundario.<br>Un sector que empezó el 2020 “en tablas” a comparación con el 2019, pero que con la llegada del confinamiento marcó una caída en el Índice de Producción Industrial (IPI) de hasta el 34%, que se recuperó en parte en la segunda mitad del año.<br>De cara al 2021 las previsiones son relativamente “optimistas” pues en estos momentos no tiene casi ninguna restricción a la actividad.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La nota negativa es que nuestro país no es un país industrial, y el peso de la industria sobre nuestro PIB es uno de los más bajos de Europa.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Vamos ahora con un rápido vistazo al sector primario, que demostró su potencial durante la crisis sanitaria respondiendo con buena nota a las necesidades de la demanda. Ha sido uno de los sectores menos afectados, pero dentro del propio sector, hay subsectores más en alza que otros.<br>Además, la nube gris del Brexit planea sobre el sector con sembrando incertidumbre como veremos a continuación.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Y qué hay del sector hortofrutícola? ¿Cuáles son las previsiones?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Con el estallido de la pandemia el sector hortofrutícola español demostró su potencial y su capacidad de adaptación para atender la demanda.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>El ser capaces de adaptarse de forma rápida a la inesperada pandemia posibilitó el suministro de frutas y hortalizas sin que se produjesen desabastecimientos en las tiendas en ningún momento.<br>Pasado el confinamiento y aún con la situación sanitaria actual, todos los actores coinciden en tildar el futuro de complicado. No obstante, la previsión para 2021 es un crecimiento del 5% en valor, mientras que en volumen la cifra se mantiene muy similar a la del año anterior.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>2020 ya fue un año marcado por la automatización debido a la escasez de mano de obra, y este 2021 la balanza se seguirá inclinando hacia soluciones automatizadas y robóticas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>Amenazas, oportunidades y retos del sector hortofrutícola para 2021</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Nosotros hemos identificado <strong>tres grandes oportunidades</strong> que se abren camino en el sector:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Búsqueda del bienestar y la salud.</strong><br>Una de las cosas buenas que ha tenido la pandemia es la necesidad de comer más saludable. Y es que se habla ya de un nuevo «lujo pospandemia» que es la salud y el bienestar.<br><br>Hay una búsqueda generalizada de esa salud por parte de los consumidores y, como consecuencia, una mayor tendencia a comer de forma sana: aumentar las frutas y hortalizas y limitar el consumo de grasas animales.<br><br>Todo ello augura un buen futuro para cultivos como el aguacate, los cítricos por su alto aporte de vitamina C o el aceite de oliva.<br><br>Y es que cuando vamos a comprar, nos preocupamos, ahora más que nunca, por comprar alimentos saludables.&nbsp;<br><br>Por eso, la estrepitosa caída de la demanda por parte del sector de la restauración puede ser paliada en parte por las familias que han incrementado su demanda de frescos.<br></li><li><strong>Auge de la producción ecológica.</strong><br>En relación con la tendencia anterior, se aprecia claramente un aumento en la demanda de producción ecológica, así como de productos de proximidad lo que lleva a los expertos a considerar la innovación, la producción ecológica y la sostenibilidad como la palanca del cambio para este año.<br></li><li>V<strong>enta directa «del campo (o de la granja) a la mesa».</strong><br>El comercio electrónico está en auge, y con la pandemia mucho más.<br>A través de plataformas digitales o con un solo intermediario los productores pueden llegar al consumidor final pudiendo acceder a un mayor margen de beneficio que con la cadena de ventas tradicional.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Pero no es oro todo lo que reluce, y el sector hortofrutícola se enfrenta también, a <strong>cuatro grandes retos</strong>:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li><strong>Brexit</strong>.<br>Reino Unido es un mercado clave para nuestras frutas y verdura, pues es el destino al que exportamos 3 veces más de lo que exportamos al resto de países extranjeros de fuera de la UE.<br><br>La salida del Reino Unido de la Unión Europea es algo que preocupa en nuestros campos porque supone un cambio importante.<br><br>Incluso en un escenario sin aranceles como el que se ha planteado, la exportación va a requerir de mayor burocracia (licencias, permisos y declaraciones aduaneras) que podrán dificultar la actividad.&nbsp;<br></li><li><strong>Restricciones en viajes y transportes.</strong><br>Las restricciones de viaje van a seguir entre nosotros este 2021.<br><br>Y van a complicar las relaciones personales, muy arraigadas en el sector. De esta forma, se ha impuesto ya el formato online para ferias comerciales. No es un factor necesariamente negativo, pero sí supone un cambio más y una nueva adaptación para el sector.<br><br>Además, ante las dificultades en el transporte y la alta demanda en nuestro país, muchos operadores han decidido priorizar el mercado nacional para minimizar riesgos.<br></li><li><strong>Volatilidad de los precios</strong><br>La inestabilidad de los precios del sector que incremente o disminuye de forma drástica la rentabilidad de los cultivos y que ha aumentado con la pandemia.<br><br>Esto es un problema histórico que conlleva que los precios suben mucho y bajan mucho, según la estacionalidad de cada cultivo.<br></li><li><strong>Fuerte competencia extranjera</strong><br>La globalización, que favorece las importaciones de terceros países, supone un reto, ya que esas importaciones no están sometidas a la estricta regulación comunitaria durante su producción.<br><br>Países como Costa Rica, Ecuador y Colombia con la banana, o Egipto, Sudáfrica y Marruecos con los cítricos suponen una dura competencia para los cultivos nacionales.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Por recapitular ya para terminar, aunque las previsiones no son malas del todo en comparación con otros sectores, la globalización de los mercados y la incertidumbre general obliga a no bajar la guardia y a pensar en el futuro con ilusión pero con buena planificación.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Desarrollar nuevas variedades, potenciar la producción ecológica o apoyarse en el sector online van a ser claves en un contexto como el actual.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Y tú ¿crees que el sector hortofrutícola saldrá airoso de esta crisis? Te leemos en  comentarios.</p>\n<!-- /wp:paragraph -->','¿Cuáles son las previsiones para 2021 en el sector hortofrutícola?','','inherit','closed','closed','','1239-revision-v1','','','2021-03-23 08:04:15','2021-03-23 08:04:15','',1239,'https://www.ingivision.com/?p=1271',0,'revision','',0),(1272,1,'2021-03-23 12:37:22','2021-03-23 12:37:22','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. &nbsp;Una solución de fácil manejo que evalúa la calidad externa del fruto basándonos en un entrenamiento basado en un dataset de más de 300.000 imágenes para el caso de los cítricos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El sistema aprende en base a ejemplos, esencialmente se establece una búsqueda de la mejor correlación entre la imagen evaluada respecto de aquellas que se utilizaron en el dataset de entrenamiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aunque la obtención del primer modelo es ardua debida a la gran cantidad de información necesaria para que quede establecido, posteriores adaptaciones y refuerzos del mismo hacen su que su aplicación a diferentes entornos resulte mucho más rápida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en&nbsp; sanidad y&nbsp; salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:&nbsp; detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y&nbsp; hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> <strong>en este enlace: IngiGrader</strong>.<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\"><strong>este enlace</strong>.<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\"><strong>en este enlace</strong><br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\"><strong>aquí</strong></a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas?<strong> <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></strong></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','publish','open','open','','inteligencia-artificial-aplicacion-sector-hortofruticola','','','2021-03-23 12:41:56','2021-03-23 12:41:56','',0,'https://www.ingivision.com/?p=1272',0,'post','',0),(1273,1,'2021-03-23 08:11:17','2021-03-23 08:11:17','','AI-machine-learning-deep-learning','','inherit','open','closed','','ai-machine-learning-deep-learning','','','2021-03-23 08:12:33','2021-03-23 08:12:33','',1272,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png',0,'attachment','image/png',0),(1274,1,'2021-03-23 08:12:39','2021-03-23 08:12:39','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:image {\"id\":1273,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png\" alt=\"Artifical Intelligente, machine learning y deep learning \" class=\"wp-image-1273\"/></figure>\n<!-- /wp:image -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:12:39','2021-03-23 08:12:39','',1272,'https://www.ingivision.com/?p=1274',0,'revision','',0),(1275,1,'2021-03-23 08:15:11','2021-03-23 08:15:11','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos: </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1273,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png\" alt=\"Artifical Intelligente, machine learning y deep learning \" class=\"wp-image-1273\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:15:11','2021-03-23 08:15:11','',1272,'https://www.ingivision.com/?p=1275',0,'revision','',0),(1276,1,'2021-03-23 08:20:38','2021-03-23 08:20:38','','AI-machine.learning-deep-learning2','','inherit','open','closed','','ai-machine-learning-deep-learning2','','','2021-03-23 08:21:08','2021-03-23 08:21:08','',1272,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg',0,'attachment','image/jpeg',0),(1277,1,'2021-03-23 08:21:12','2021-03-23 08:21:12','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:21:12','2021-03-23 08:21:12','',1272,'https://www.ingivision.com/?p=1277',0,'revision','',0),(1278,1,'2021-03-23 08:29:05','2021-03-23 08:29:05','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:29:05','2021-03-23 08:29:05','',1272,'https://www.ingivision.com/?p=1278',0,'revision','',0);
INSERT INTO `ingi_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES (1279,1,'2021-03-23 08:30:56','2021-03-23 08:30:56','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:30:56','2021-03-23 08:30:56','',1272,'https://www.ingivision.com/?p=1279',0,'revision','',0),(1280,1,'2021-03-23 08:32:01','2021-03-23 08:32:01','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:32:01','2021-03-23 08:32:01','',1272,'https://www.ingivision.com/?p=1280',0,'revision','',0),(1281,1,'2021-03-23 08:32:45','2021-03-23 08:32:45','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:32:45','2021-03-23 08:32:45','',1272,'https://www.ingivision.com/?p=1281',0,'revision','',0),(1282,1,'2021-03-23 08:33:19','2021-03-23 08:33:19','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:33:19','2021-03-23 08:33:19','',1272,'https://www.ingivision.com/?p=1282',0,'revision','',0),(1283,1,'2021-03-23 08:34:01','2021-03-23 08:34:01','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:34:01','2021-03-23 08:34:01','',1272,'https://www.ingivision.com/?p=1283',0,'revision','',0),(1284,1,'2021-03-23 08:34:31','2021-03-23 08:34:31','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:34:31','2021-03-23 08:34:31','',1272,'https://www.ingivision.com/?p=1284',0,'revision','',0),(1285,1,'2021-03-23 08:35:16','2021-03-23 08:35:16','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.<br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:35:16','2021-03-23 08:35:16','',1272,'https://www.ingivision.com/?p=1285',0,'revision','',0),(1286,1,'2021-03-23 08:36:00','2021-03-23 08:36:00','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> en este enlace: IngiGrader<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\">este enlace<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\">en este enlace<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas? <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:36:00','2021-03-23 08:36:00','',1272,'https://www.ingivision.com/?p=1286',0,'revision','',0),(1287,1,'2021-03-23 08:37:24','2021-03-23 08:37:24','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> <strong>en este enlace: IngiGrader</strong>.<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\"><strong>este enlace</strong>.<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\"><strong>en este enlace</strong>.<br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <strong><a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\">aquí</a></strong>.</li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas?<strong> <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></strong>.</p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 08:37:24','2021-03-23 08:37:24','',1272,'https://www.ingivision.com/?p=1287',0,'revision','',0),(1288,1,'2021-03-23 09:07:55','2021-03-23 09:07:55','','inteligencia-artificial-clasificacion-aceitunas','','inherit','open','closed','','inteligencia-artificial-clasificacion-aceitunas','','','2021-03-23 09:08:15','2021-03-23 09:08:15','',1272,'https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg',0,'attachment','image/jpeg',0),(1289,1,'2021-03-23 09:13:34','2021-03-23 09:13:34','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. Una solución de fácil manejo para aplicaciones industriales como el empaquetado, paletizado, montaje etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a los conocimientos adquiridos, se puede identificar de forma automática patrones que van a conseguir un mejor rendimiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La inteligencia artificial aplicada a la robótica permite que se pueda empezar a trabajar sin necesidad de programadores informáticos o personal externo especializado.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en  sanidad y  salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:  detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y  hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> <strong>en este enlace: IngiGrader</strong>.<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\"><strong>este enlace</strong>.<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\"><strong>en este enlace</strong><br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\"><strong>aquí</strong></a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas?<strong> <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></strong></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 09:13:34','2021-03-23 09:13:34','',1272,'https://www.ingivision.com/?p=1289',0,'revision','',0),(1290,1,'2021-03-23 12:37:14','2021-03-23 12:37:14','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader.  Una solución de fácil manejo que evalúa la calidad externa del fruto basándonos en un entrenamiento basado en un dataset de más de 300.000 imágenes para el caso de los cítricos. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El sistema aprende en base a ejemplos, esencialmente se establece una búsqueda de la mejor correlación entre la imagen evaluada respecto de aquellas que se utilizaron en el dataset de entrenamiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aunque la obtención del primer modelo es ardua debida a la gran cantidad de información necesaria para que quede establecido, posteriores adaptaciones y refuerzos del mismo hacen su que su aplicación a diferentes entornos resulte mucho más rápida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en&nbsp; sanidad y&nbsp; salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:&nbsp; detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y&nbsp; hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> <strong>en este enlace: IngiGrader</strong>.<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\"><strong>este enlace</strong>.<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\"><strong>en este enlace</strong><br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\"><strong>aquí</strong></a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas?<strong> <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></strong></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 12:37:14','2021-03-23 12:37:14','',1272,'https://www.ingivision.com/?p=1290',0,'revision','',0),(1291,1,'2021-03-23 12:39:29','2021-03-23 12:39:29','<!-- wp:paragraph -->\n<p>¿Sabías que para encontrar los orígenes de la Inteligencia Artificial (IA) tenemos que remontarnos a 1956?<br>Fue en ese año cuando John McCarthy acuñó el término y es ese año el que se considera como el año del nacimiento de la inteligencia artificial.<br><br>Pero todavía antes, encontramos acuñada la idea de robot (1921) o la idea de que el razonamiento lógico podía sistematizarse como una ecuación matemática de finales del siglo XIX.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial que se está desarrollando a toda velocidad en nuestra década no es tan nueva como parece.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>¿Qué se entiende por Inteligencia Artificial?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como hemos comentado fue John McCarthy quien acuñó el término, y lo definió como «la ciencia e ingenio de hacer máquinas inteligentes, especialmente programas de cómputo inteligente». Lo que normalmente entendemos por inteligencia artificial es una combinación de algoritmos que buscan reproducir las mismas capacidades de un ser humano en máquinas.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La IA tiene a día de hoy mil y una posibilidades. </p>\n<!-- /wp:paragraph -->\n\n<!-- wp:quote -->\n<blockquote class=\"wp-block-quote\"><p>«<strong><em>EN 2021, EL 21% DE LAS ORGANIZACIONES HABRÁ IMPLEMENTADO IA</em></strong>»</p><cite>Según datos publicados por IDC.</cite></blockquote>\n<!-- /wp:quote -->\n\n<!-- wp:paragraph -->\n<p>El interés de las organizaciones en los proyectos de Inteligencia Artificial no ha dejado de crecer en los últimos años, y se prevé que será aún mucho mayor.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Ya sabemos en qué consiste la inteligencia artificial, pero ¿es lo mismo que el <em>machine learning</em> o el <em>deep learning</em>?</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>La respuesta es no.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Definamos de forma rápida los tres conceptos:&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Artificial Intelligence</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Programas con la capacidad de aprender y razonar como humanos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Machine learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Algoritmos con la capacidad de aprender sin ser explícitamente programado.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong><em>Deep learning</em></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Subconjunto de aprendizaje automático en el que las redes neuronales artificiales se adaptan y aprenden de grandes cantidades de datos.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:columns -->\n<div class=\"wp-block-columns\"><!-- wp:column {\"width\":\"100%\"} -->\n<div class=\"wp-block-column\" style=\"flex-basis:100%\"><!-- wp:image {\"id\":1276,\"sizeSlug\":\"large\",\"linkDestination\":\"none\"} -->\n<figure class=\"wp-block-image size-large\"><img src=\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\" alt=\"Artificial Intelligente, machine learning y deep learning. Diferencias\" class=\"wp-image-1276\"/></figure>\n<!-- /wp:image -->\n\n<!-- wp:separator -->\n<hr class=\"wp-block-separator\"/>\n<!-- /wp:separator -->\n\n<!-- wp:paragraph -->\n<p>Con los tres conceptos aclarados vamos a ver ahora algunas de las aplicaciones más comunes de la IA y cómo se está ya aplicando esta tecnología en sectores tan diversos como el financiero, el sanitario o el industrial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Algunas aplicaciones prácticas de la IA</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>1. Monitoreo </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Un cobot (robot colaborativo preparado para trabajar con las personas) programado con inteligencia artificial puede recoger, analizar y utilizar la información para optimizar casi cualquier proceso industrial.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>2. Visión artificial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>La visión artificial es un subcampo de la inteligencia artificial.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Gracias a ella se puede detectar y reconocer objetos o productos.<br><br>Por ejemplo en el sector hortofrutícola, permite clasificar los frutos por color, forma, tamaño… así como analizar los resultados y tomar las decisiones correspondientes.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>En Ingvision contamos con nuestra solución de visión artificial IngiGrader. &nbsp;Una solución de fácil manejo que evalúa la calidad externa del fruto basándonos en un entrenamiento basado en un dataset de más de 300.000 imágenes para el caso de los cítricos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>3. Aprendizaje</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El sistema aprende en base a ejemplos, esencialmente se establece una búsqueda de la mejor correlación entre la imagen evaluada respecto de aquellas que se utilizaron en el dataset de entrenamiento.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>4. Puesta en marcha <br></strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Aunque la obtención del primer modelo es ardua debida a la gran cantidad de información necesaria para que quede establecido, posteriores adaptaciones y refuerzos del mismo hacen su que su aplicación a diferentes entornos resulte mucho más rápida.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>A continuación te compartimos algunos ejemplos de sectores que ya la emplean junto a sus beneficios.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading -->\n<h2>Sectores que se están beneficiando de la inteligencia artificial</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Por sectores vemos que existe disparidad en el desarrollo de la IA, pero a día de hoy ya existen muchas empresas que están comprobando sus beneficios:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en tecnología</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> El objetivo de la IA es ayudar a crear experiencias tecnológicas.<br>Por ejemplo mostrarle a usuario solo noticias de su interés, predecir la pérdida de clientes, atención al cliente más rápida y automatizada y un largo etc.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector servicios</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Gracias a la IA se ha colocado al cliente en el centro de toda actividad del sector servicios. Por ejemplo, con la escucha activa de la opinión de los clientes o con la puesta en marcha de herramientas más precisas para que los empleados puedan desarrollar sus tareas de una forma más eficiente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en&nbsp; sanidad y&nbsp; salud</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Ha permitido el análisis de datos internos y externos que hay desembocado en una transformación directa de los productos o servicios del sector sanitario.<br>Por poner algún ejemplo, te nombramos la aceleración del proceso de descubrimiento de fármacos, la predicción de enfermedades, la mejora de las técnicas diagnósticas o el paso hacia la medicina de precisión.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el comercio y retail</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>El retail es otro de los sectores en los que se puede aplicar la IA de muchas formas: en el control de stocks, como herramienta de marketing para ofrecer al cliente ofertas personalizadas o mostrar anuncios de su interés, eliminando barreras idiomáticas o monitorizando las opiniones del cliente.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en el sector industrial </strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p> En el sector industrial sus aplicaciones pueden ser infinitas y queda mucho por recorrer: atención a los equipos, en cadenas de suministro y en muchísimos procesos más.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p></p>\n<!-- /wp:paragraph -->\n\n<!-- wp:heading {\"level\":3} -->\n<h3><strong>IA en la banca y servicios financieros</strong></h3>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Estamos ante otro sector de infinitas posibilidades en la aplicación de la IA:&nbsp; detectar el fraude, evaluar riesgos, automatizar tareas… Todo ello permite proporcionar al cliente un mejor servicio, en menos tiempo y con menor coste.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>Como ves, el uso de datos y de la Inteligencia Artificial está jugando un papel clave en la mejora de cualquier proceso permitiendo a los expertos (y a las propias máquinas) analizar, evaluar y tomar decisiones basándose en el gran volumen de datos generados por la digitalización.</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p><br>Vamos ahora a centrarnos en las aplicaciones de la IA en el sector agrícola y&nbsp; hortofrutícola.</p>\n<!-- /wp:paragraph --></div>\n<!-- /wp:column --></div>\n<!-- /wp:columns -->\n\n<!-- wp:heading -->\n<h2>¿Qué aplicaciones tiene la Inteligencia Artificial en el sector agrícola y hortofrutícola?</h2>\n<!-- /wp:heading -->\n\n<!-- wp:paragraph -->\n<p>Como te imaginas, en la agricultura la IA tiene un potencial enorme. Estas son algunos de los beneficios que ya tiene la aplicación de inteligencia artificial en la agricultura:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list {\"ordered\":true} -->\n<ol><li>Predicciones de productividad de cultivos.</li><li>Diagnóstico de enfermedades en cultivos.</li><li>Optimización de los recursos, como el riego, los fertilizantes o los fitosanitarios.</li><li>Desarrollo de modelos predictivos con el fin de conocer todas las necesidades exactas para mantener las plantas en un estado óptimo.</li><li>Aumento de la productividad, el control de la calidad y la trazabilidad del fruto recolectado.</li><li>Obtención de precios más competitivos.</li><li>Mejora de las condiciones del trabajo humano.</li><li>Automatización de las tareas de recolección.</li><li>Clasificación de frutas y hortalizas según tamaño, forma, peso, color, nivel de maduración, densidad, calidad externa…</li><li>Gestión del clima interior del invernadero de manera eficiente.</li></ol>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Y a continuación ponemos cuatro ejemplos de software que ya están en funcionamiento en el sector agrícola u hortofrutícola:</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:list -->\n<ul><li>IngiGrader. Es nuestro software más completo. Implementa la inteligencia artificial en máquinas de calibrado. Puedes ampliar la información<a href=\"https://www.ingivision.com/productos/ingigrader/\"> <strong>en este enlace: IngiGrader</strong>.<br></a></li><li>PlantVillage Nuru. Se trata de un asistente de IA existente que se está utilizando en África para diagnosticar enfermedades de los cultivos. Si quieres ampliar información visita <a href=\"https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/\"><strong>este enlace</strong>.<br></a></li><li>GO RENTIA. Es un proyecto de IA que se ha llevado a cabo para mejorar el clima de varios invernaderos de tomate en rama. Pues ver más información <a href=\"https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/\"><strong>en este enlace</strong><br></a></li><li>iDRONE. Programa que une drones e inteligencia artificial para facilitar el trabajo en el campo, y conseguir una agricultura más rentable y respetuosa con el medio ambiente. Más información sobre iDRONE <a href=\"https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html\"><strong>aquí</strong></a></li></ul>\n<!-- /wp:list -->\n\n<!-- wp:paragraph -->\n<p>Como ves, la inteligencia artificial es una realidad en nuestros campos y almacenes y va a serlo mucho más en un corto espacio de tiempo. El futuro a corto plazo pasa por la digitalización y la implementación de este tipo de tecnología para ser más competitivos.&nbsp;</p>\n<!-- /wp:paragraph -->\n\n<!-- wp:paragraph -->\n<p>¿Quieres optimizar tu proceso de calibración y clasificación de frutas?<strong> <a href=\"https://www.ingivision.com/contacto/\">Contacta con nosotros sin compromiso</a></strong></p>\n<!-- /wp:paragraph -->','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','','inherit','closed','closed','','1272-revision-v1','','','2021-03-23 12:39:29','2021-03-23 12:39:29','',1272,'https://www.ingivision.com/?p=1291',0,'revision','',0),(1294,0,'2021-03-23 23:26:04','2021-03-23 23:26:04','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.\n11\n23.94.195.158\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\nhttps://www.ingivision.com/contacto/\n23 de marzo de 2021\n23:26\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-19','','','2021-03-23 23:26:04','2021-03-23 23:26:04','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1294',0,'flamingo_inbound','',0),(1295,0,'2021-03-23 23:26:04','2021-03-23 23:26:04','IMPORTANT NOTICE\ninfo@domainregistrationcorp.com\n+1542384593234\nIMPORTANT NOTICE\nTERMINATION OF DOMAIN ingivision.com\r\nInvoice#: 491343\r\nDate: 23 Mar 2021\r\n\r\nIMMEDIATE ATTENTION REGARDING YOUR DOMAIN ingivision.com IS ABSOLUTLY NECESSARY\r\n\r\nTERMINATION OF YOUR DOMAIN ingivision.com WILL BE COMPLETED WITHIN 24 HOURS\r\n\r\nYour payment for the renewal of your domain ingivision.com has not received yet\r\n\r\nWe have tried to reach you by phone several times, to inform you regarding the TERMINATION of your domain ingivision.com\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nIF WE DO NOT RECEIVE YOUR PAYMENT WITHIN 24 HOURS, YOUR DOMAIN ingivision.com WILL BE TERMINATED!\r\n\r\nCLICK HERE FOR SECURE ONLINE PAYMENT: https://godomains.ga\r\n\r\nYOUR IMMEDIATE ATTENTION IS ABSOLUTELY NECESSARY IN ORDER TO KEEP YOUR DOMAIN ingivision.com\r\n\r\nThe submission notification ingivision.com will EXPIRE WITHIN 24 HOURS after reception of this email.\n11\n23.94.195.158\nMozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) HeadlessChrome/88.0.4324.190 Safari/537.36\nhttps://www.ingivision.com/contacto/\n23 de marzo de 2021\n23:26\n17\ncontacto\nContacto\nhttps://www.ingivision.com/contacto/\nadmirae360\ninfo@admirae.es\nIngivision\nDesarrollamos sistemas electrónicos para maquinaria hortofrutícola.\nhttps://www.ingivision.com\ninfo@admirae.es','[your-subject]','','publish','closed','closed','','your-subject-20','','','2021-03-23 23:26:04','2021-03-23 23:26:04','',0,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1295',0,'flamingo_inbound','',0);
/*!40000 ALTER TABLE `ingi_posts` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_redirection_404`
--

DROP TABLE IF EXISTS `ingi_redirection_404`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_redirection_404` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `agent` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `referrer` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `http_code` int(11) unsigned NOT NULL DEFAULT '0',
  `request_method` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `request_data` mediumtext COLLATE utf8mb4_unicode_ci,
  `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `referrer` (`referrer`(191)),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=56253 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_redirection_404`
--

LOCK TABLES `ingi_redirection_404` WRITE;
/*!40000 ALTER TABLE `ingi_redirection_404` DISABLE KEYS */;
INSERT INTO `ingi_redirection_404` (`id`, `created`, `url`, `domain`, `agent`, `referrer`, `http_code`, `request_method`, `request_data`, `ip`) VALUES (51989,'2021-03-18 19:00:19','/aesthetice13dd/bafcb213579.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(51990,'2021-03-18 19:02:57','/singlesdc2b/bcfcef22696.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(51991,'2021-03-18 19:07:56','/wp-signups.php?msa09c66%2Fdbd392657.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(51992,'2021-03-18 19:16:33','/pu4a/dff133211.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(51993,'2021-03-18 19:17:58','/wp-signups.php?printers73b81%2Feedd242908.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(51994,'2021-03-18 19:19:04','/relievedc52/bcafbc37544.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(51995,'2021-03-18 19:22:20','/fiat94f79/cfa92987.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(51996,'2021-03-18 19:25:26','/elevation099/adbcbd168604.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(51997,'2021-03-18 19:28:13','/wp-signups.php?timeless54%2Fbbd135041.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.116'),(51998,'2021-03-18 19:37:32','/supplying78/de452680.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(51999,'2021-03-18 19:38:18','/wp-signups.php?mntff8d9%2Febcca19909.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(52000,'2021-03-18 19:42:35','/card668/cdbdee440414.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52001,'2021-03-18 19:42:55','/resetse8ac5/beafd376919.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52002,'2021-03-18 19:48:32','/en/we-have-a-new-website','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(52003,'2021-03-18 19:58:30','/whole92/fef220941.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52004,'2021-03-18 19:59:04','/lesions249/fbade314053.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52005,'2021-03-18 20:09:11','/fits04fcc/cbff85088.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(52006,'2021-03-18 20:19:54','/lubbockf6/cf277530.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52007,'2021-03-18 20:22:19','/pokemone80ba/cbefb288509.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52008,'2021-03-18 20:23:48','/canoeingb1c5d/daee318918.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52009,'2021-03-18 20:26:31','/nightmare5616/bdaddb49776.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52010,'2021-03-18 20:27:41','/ga44/ff202120.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Cincraw/1.0; +http://cincrawdata.net/bot/)',NULL,404,'GET',NULL,''),(52011,'2021-03-18 20:35:16','/puntfd185/ceeea217989.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52012,'2021-03-18 20:38:18','/hadf093/ffcbaa60106.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52013,'2021-03-18 20:38:43','/bronze0a/dfe86231.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52014,'2021-03-18 20:48:17','/archive','http://www.ingivision.com','Googlebot/2.1 (+http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52015,'2021-03-18 20:53:07','/en/contact-us/ingivision@ingivision.com','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(52016,'2021-03-18 21:07:16','/discrete78/db369160.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52017,'2021-03-18 21:07:35','/assaultb5/fef306171.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52018,'2021-03-18 21:09:31','/ef07bb/dbcddf5686.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52019,'2021-03-18 21:13:04','/pacedcd/dc214510.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52020,'2021-03-18 21:17:21','/disability13d63/ffbdd343459.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52021,'2021-03-18 21:17:24','/frutas-y-verduras/berenjena/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(52022,'2021-03-18 21:17:28','/frutas-y-verduras/calabacin/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(52023,'2021-03-18 21:17:31','/frutas-y-verduras/granadas/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'141.8.142.80'),(52024,'2021-03-18 21:17:35','/frutas-y-verduras/higos/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.124'),(52025,'2021-03-18 21:17:38','/frutas-y-verduras/manzanas/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.231.77'),(52026,'2021-03-18 21:21:32','/cfcfe7/cbeac4765.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52027,'2021-03-18 21:24:24','/glowinge6d/ceedc478433.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52028,'2021-03-18 21:31:43','/dundee05/cab373131.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52029,'2021-03-18 21:34:39','/frutas-y-verduras/nectarina','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(52030,'2021-03-18 21:43:13','/looseb91f4/ccd165227.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52031,'2021-03-18 21:46:03','/washington55b37/cffed260649.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52032,'2021-03-18 21:48:25','/designated9f4/ebdef202143.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52033,'2021-03-18 21:48:54','/sba2f/da297880.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52034,'2021-03-18 21:49:16','/lifted91a/cbfefd311664.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52035,'2021-03-18 21:53:57','/expat2806/aeebc416025.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52036,'2021-03-18 21:58:15','/turnd7322/cca221007.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52037,'2021-03-18 22:01:42','/wake8c5/feafcb84774.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52038,'2021-03-18 22:12:36','/sicknessc7/fb413000.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52039,'2021-03-18 22:13:41','/spreadsheetfdd73/ffac432578.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52040,'2021-03-18 22:15:31','/cree835b/ddab456208.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52041,'2021-03-18 22:21:31','/marriottfef6f/bbc306017.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52042,'2021-03-18 22:21:51','/bac77382/eae37077.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52043,'2021-03-18 22:39:50','/manilaa3/efd90801.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52044,'2021-03-18 22:42:49','/fatal77/bffa28192.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52045,'2021-03-18 22:44:48','/mediaen/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(52046,'2021-03-18 22:45:21','/sparrow002/abbcc238363.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52047,'2021-03-18 22:49:11','/inicia%C3%A7%C3%A3o-p-198.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,'5.9.158.195'),(52048,'2021-03-18 22:49:15','/inicia%C3%A7%C3%A3o-p-198.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,'5.9.158.195'),(52049,'2021-03-18 23:01:09','/pettyf0/cea353331.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52050,'2021-03-18 23:03:47','/mammoth79/fbee76552.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52051,'2021-03-18 23:15:31','/dye06c/cfefac470684.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52052,'2021-03-18 23:20:55','/waters64b3e/ead364347.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52053,'2021-03-18 23:22:40','/workspace0bb7/ccdbfc34746.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52054,'2021-03-18 23:32:34','/likelihoodd7f6d/cbd449477.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52055,'2021-03-18 23:53:57','/reflecting6c23/caefcf130496.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52056,'2021-03-18 23:55:45','/tuberculosisc7/be233060.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52057,'2021-03-18 23:56:04','/kylie8a60/cadcbe215656.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52058,'2021-03-19 00:05:34','/sponsored7fe/ccefa421053.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52059,'2021-03-19 00:07:39','/closely6ba/eedcee4584.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52060,'2021-03-19 00:11:04','/chargese4/cca322201.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52061,'2021-03-19 00:11:38','/wonf1/ebfd302642.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52062,'2021-03-19 00:13:09','/deputy2f/af284880.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52063,'2021-03-19 00:14:22','/ilbc73/ffcbe481515.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52064,'2021-03-19 00:18:24','/compression7cd/fbdebb445864.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52065,'2021-03-19 00:22:33','/bm1355/cacdde148076.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52066,'2021-03-19 00:23:25','/personality01/dcc305611.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52067,'2021-03-19 00:28:17','/props9c15/abbbde353736.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52068,'2021-03-19 00:48:02','/comoros41/ad251690.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52069,'2021-03-19 00:51:18','/teensfe/eeb81131.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52070,'2021-03-19 00:56:17','/subgroupa0/eab198851.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52071,'2021-03-19 00:56:19','/wordpress/wp-admin/','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','http://ingivision.com/',404,'GET',NULL,'220.158.200.101'),(52072,'2021-03-19 00:57:01','/commands93da/fbccfa64136.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52073,'2021-03-19 00:57:44','/en/blog-2','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(52074,'2021-03-19 01:16:48','/comcast789b/ceffce76776.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52075,'2021-03-19 01:22:09','/farfc/df140860.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52076,'2021-03-19 01:23:57','/tiffany9c/aea404361.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52077,'2021-03-19 01:34:09','/daytimefed0/ecddd413065.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52078,'2021-03-19 01:35:47','/hometown4dcfb/dfefc249699.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52079,'2021-03-19 01:51:54','/hasslec8bfd/fcf72207.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52080,'2021-03-19 01:55:47','/fourtha43/acdbb263003.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52081,'2021-03-19 02:12:02','/allocate74367/cbb453777.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52082,'2021-03-19 02:14:51','/considerably9ef7/ceadce150216.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52083,'2021-03-19 02:15:10','/fiji6e013/ccd327157.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52084,'2021-03-19 02:18:29','/frutas-y-verduras/mangos','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.94'),(52085,'2021-03-19 02:18:44','/fourteenfa/aefe173642.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52086,'2021-03-19 02:22:38','/am68d/beacdf20084.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52087,'2021-03-19 02:27:08','/stephanae4f/feeed219665.htm','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',NULL,404,'GET',NULL,'34.210.110.174'),(52088,'2021-03-19 02:29:05','/thanx3e/eda437631.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52089,'2021-03-19 02:34:20','/precedence14b/cbcbbd315084.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52090,'2021-03-19 02:44:20','/config.bak.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'POST',NULL,'104.131.163.221'),(52091,'2021-03-19 02:44:51','/config.bak.php','https://www.ingivision.com','python-requests/2.25.1',NULL,404,'POST',NULL,'104.131.163.221'),(52092,'2021-03-19 02:45:40','/fore931/facfb235813.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52093,'2021-03-19 02:47:35','/homeownersc1/ce310020.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52094,'2021-03-19 02:49:32','/stageddb/ed118960.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52095,'2021-03-19 02:49:45','/brewerb6198/ffd114837.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52096,'2021-03-19 02:50:12','/concertof4cf6/adafd55029.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52097,'2021-03-19 02:53:31','/preliminaryc7b4b/beec485048.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52098,'2021-03-19 02:54:52','/wp-signups.php?commanding03%2Faeaf198362.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; SemrushBot/7~bl; +http://www.semrush.com/bot.html)',NULL,404,'GET',NULL,'185.191.171.5'),(52099,'2021-03-19 02:59:33','/qualified308/cfbaeb63344.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52100,'2021-03-19 03:04:14','/thumbzillacf5ff/bff487247.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52101,'2021-03-19 03:17:27','/oct6aca9/ebee80598.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52102,'2021-03-19 03:19:04','/passwords6ff/cbbdee408644.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52103,'2021-03-19 03:40:44','/credited42/efef170922.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52104,'2021-03-19 03:44:51','/controlse727/ccddc222665.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52105,'2021-03-19 03:45:56','/della9cc25/cafae290979.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52106,'2021-03-19 03:49:54','/depressed40c/cdabe32913.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52107,'2021-03-19 03:51:00','/nutritional6f04/ebbeae428156.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52108,'2021-03-19 03:55:13','/torche8/bb232910.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52109,'2021-03-19 03:56:46','/dems6a/bdda477622.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52110,'2021-03-19 03:58:12','/affected9ae/bbaed283153.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52111,'2021-03-19 03:58:50','/frutas-y-verduras/paraguayos','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(52112,'2021-03-19 04:05:10','/femdomf06e/faccf211055.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52113,'2021-03-19 04:07:19','/divine219c/cadaed66466.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52114,'2021-03-19 04:07:39','/preacherb1/eaaa478982.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52115,'2021-03-19 04:08:31','/productos/ingisorter-plus/index.html','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(52116,'2021-03-19 04:14:52','/frutas-y-verduras/','https://www.ingivision.com','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',NULL,404,'GET',NULL,'77.75.76.165'),(52117,'2021-03-19 04:16:17','/sha06/ed33650.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52118,'2021-03-19 04:20:08','/opposite8e62/dceff465425.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52119,'2021-03-19 04:25:51','/ivan4f9/aebae150953.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52120,'2021-03-19 04:26:32','/woo18175/efb154637.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52121,'2021-03-19 04:34:55','/surplus574/afdee467783.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52122,'2021-03-19 04:36:22','/teas1e7/edabda116224.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52123,'2021-03-19 04:38:03','/biotechf1686/afa370487.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52124,'2021-03-19 04:43:24','/grounds043c2/cbd285087.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52125,'2021-03-19 04:47:11','/attendeda7/eb365310.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52126,'2021-03-19 04:48:49','/ntsc935/adabc149613.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52127,'2021-03-19 04:59:48','/maybebc/ed61590.htm','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.94'),(52128,'2021-03-19 05:04:05','/dysfunction163/cfbdc92373.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52129,'2021-03-19 05:12:20','/peakf0204/bfadf123039.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52130,'2021-03-19 05:14:39','/hudsonde/bae26461.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52131,'2021-03-19 05:19:12','/contains55c56/bcd21497.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52132,'2021-03-19 05:21:12','/romab2/add30091.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52133,'2021-03-19 05:21:58','/con82ca5/fcbcf2529.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52134,'2021-03-19 05:24:32','/boltonef3e/eecadd170366.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52135,'2021-03-19 05:27:02','/productos/ingisorter/index.html','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.94'),(52136,'2021-03-19 05:42:05','/certified5938/ebaaae262216.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52137,'2021-03-19 05:42:08','/ads.txt','https://www.ingivision.com','Mozilla/5.0 (compatible; Dataprovider.com)',NULL,404,'GET',NULL,'51.222.43.147'),(52138,'2021-03-19 05:49:55','/alb7/cf140620.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52139,'2021-03-19 05:51:01','/wish03f54/abfac481089.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52140,'2021-03-19 05:51:24','/solomon52/cca26631.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52141,'2021-03-19 06:07:10','/undercover619/dfdfee359424.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52142,'2021-03-19 06:09:09','/passions4d8d/ccafcd198086.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52143,'2021-03-19 06:13:50','/preacherb1/eaaa178982.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52144,'2021-03-19 06:26:43','/unused329d/dbbac170035.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52145,'2021-03-19 06:39:22','/barbiec2ed/aecbaa149806.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52146,'2021-03-19 06:40:11','/groupfc/aee280181.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(52147,'2021-03-19 06:44:40','/frutas-y-verduras/nectarinas/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.198'),(52148,'2021-03-19 06:45:38','/preacherb1/eaaa358982.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52149,'2021-03-19 06:50:41','/severity483d8/eecae190009.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52150,'2021-03-19 06:53:08','/wine602d1/bebfa1399.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52151,'2021-03-19 07:01:57','/beastiality51f/ecbea123883.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52152,'2021-03-19 07:04:29','/carl2ba61/eacbf165339.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52153,'2021-03-19 07:15:00','/macquarie618b/eadfe59945.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52154,'2021-03-19 07:15:23','/ownershipb957d/cef483897.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52155,'2021-03-19 07:23:09','/luce99a3/ead17547.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52156,'2021-03-19 07:24:24','/pongafe70/ecffc98969.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52157,'2021-03-19 07:24:34','/frutas-y-verduras/higos','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(52158,'2021-03-19 07:26:13','/raref1/adbf362682.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52159,'2021-03-19 07:35:14','/scanners985e9/ecada206399.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52160,'2021-03-19 07:48:52','/cartierab1/acbbcd336244.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52161,'2021-03-19 07:49:03','/dawson15/eae171271.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52162,'2021-03-19 07:51:04','/afforded68/ccf117981.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52163,'2021-03-19 07:53:38','/motorsports82d7/cfeed233335.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52164,'2021-03-19 08:07:56','/neighboringda1/ffedea254074.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52165,'2021-03-19 08:10:16','/jdbcf33/aadbe318263.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52166,'2021-03-19 08:12:25','/litigationdf/edaf185882.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52167,'2021-03-19 08:17:32','/vendor/phpunit/phpunit/src/Util/PHP/eval-stdin.php','http://ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',NULL,404,'POST',NULL,'185.195.232.246'),(52168,'2021-03-19 08:23:34','/reform38a7/decda363345.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52169,'2021-03-19 08:25:13','/media/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(52170,'2021-03-19 08:27:15','/translator0bdf2/ecde429948.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52171,'2021-03-19 08:28:05','/affordac/bf326020.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52172,'2021-03-19 08:37:13','/bosea4f/efcea334563.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52173,'2021-03-19 08:44:28','/alot96ba4/ebeec28999.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52174,'2021-03-19 08:44:53','/hoursf61d/fabdc160375.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52175,'2021-03-19 08:45:27','/correlatione9a8f/fcea347358.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52176,'2021-03-19 08:47:58','/garlic254eb/aaffb249049.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52177,'2021-03-19 08:48:45','/thread42998/dfc300457.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52178,'2021-03-19 08:48:53','/proyectos/index.html','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(52179,'2021-03-19 08:49:15','/caledonia4e/bb90790.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52180,'2021-03-19 08:49:37','/mining17/fad304161.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52181,'2021-03-19 08:55:28','/kauai9992/ccbcea295206.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52182,'2021-03-19 08:59:52','/jacks8be/caaeff34324.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(52183,'2021-03-19 09:04:28','/wp-content/uploads/2016/06/ingivision-ico.png','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,'17.58.97.90'),(52184,'2021-03-19 09:30:36','/frutas-y-verduras/kiwis/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.200'),(52185,'2021-03-19 09:38:14','/predictions9cac2/fcae329268.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52186,'2021-03-19 09:40:36','/maniaaa/ef12160.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52187,'2021-03-19 09:44:47','/noticeabled0d/dddfdb157974.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52188,'2021-03-19 09:48:11','/youngerce/cacd125422.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52189,'2021-03-19 09:51:03','/tcl37b/eaace274183.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52190,'2021-03-19 10:04:17','/obsb0f9c/fffdd36329.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52191,'2021-03-19 10:05:24','/candidatedfeb/afdad483485.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52192,'2021-03-19 10:09:50','/shire7ce/ecfdf414803.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52193,'2021-03-19 10:17:01','/beltsfa/dc389300.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52194,'2021-03-19 10:21:27','/bump5d9e4/cebf250588.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52195,'2021-03-19 10:23:47','/frutas-y-verduras/pepino/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.197'),(52196,'2021-03-19 10:26:20','/coloringa7/ed352550.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52197,'2021-03-19 10:34:28','/wimbledon14/aaf159051.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52198,'2021-03-19 10:41:28','/sugababes646/fcfac333103.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52199,'2021-03-19 10:46:27','/publicationsdc/bfec101322.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52200,'2021-03-19 10:46:59','/tried92/ebaa422352.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52201,'2021-03-19 10:51:09','/measures093b6/fbebc362029.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52202,'2021-03-19 10:51:28','/fran8a/daac334842.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52203,'2021-03-19 10:54:57','/watercolor62b45/aeedf58039.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52204,'2021-03-19 11:03:08','/dmx69/fdf390561.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52205,'2021-03-19 11:10:35','/sparks50d/caacf452263.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52206,'2021-03-19 11:26:18','/heapcbd/aeacea94364.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52207,'2021-03-19 11:28:51','/unprecedentede1/cae433241.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52208,'2021-03-19 11:31:34','/appld4/de34760.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52209,'2021-03-19 11:32:35','/remain78/ee422590.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52210,'2021-03-19 11:33:04','/continues68a/ecddb123193.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52211,'2021-03-19 11:41:32','/consistent0e7e0/dfc3367.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52212,'2021-03-19 11:43:57','/macrose4f0/dadfc252655.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52213,'2021-03-19 11:44:16','/furcfc5/bffaa188165.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52214,'2021-03-19 11:44:45','/scaling3693/cfafb91985.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52215,'2021-03-19 11:45:12','/pt99b/eefce163473.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52216,'2021-03-19 11:48:43','/paranormalba85/eebffa379246.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52217,'2021-03-19 11:49:03','/demandaa2a7/efeef461829.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52218,'2021-03-19 11:52:05','/gadget90/dcfd252552.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52219,'2021-03-19 11:57:41','/noticeabled0d/dddfdb457974.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52220,'2021-03-19 11:59:44','/assorted786/cebba190173.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52221,'2021-03-19 12:06:50','/licking44590/dcbe488448.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52222,'2021-03-19 12:08:30','/puts4c267/ceacf385869.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52223,'2021-03-19 12:09:12','/lexuse551/beacee368776.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52224,'2021-03-19 12:12:21','/duncanac6b/aafeba187696.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52225,'2021-03-19 12:15:31','/baindex.php','http://ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:57.0) Gecko/20100101 Firefox/57.0 AtOPvMzpDosdPDlkm3ZmPzxoP',NULL,404,'POST',NULL,'217.12.221.24'),(52226,'2021-03-19 12:33:42','/club46/dacb20582.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52227,'2021-03-19 12:34:02','/remarks29/ab45780.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52228,'2021-03-19 12:34:44','/identified03/fa402400.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52229,'2021-03-19 12:43:32','/yer2f/ac319410.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52230,'2021-03-19 12:44:50','/desktop11/ce41680.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52231,'2021-03-19 12:46:30','/spacing31c/bebdeb213584.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52232,'2021-03-19 12:46:51','/pt/contacto-pt/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52233,'2021-03-19 12:47:11','/believesc8d1/eefdec325186.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52234,'2021-03-19 13:04:36','/lettuce57f5/aeacfc478846.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52235,'2021-03-19 13:08:39','/curricula82/eefc117322.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52236,'2021-03-19 13:08:59','/recall4f/cf285370.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52237,'2021-03-19 13:11:05','/tortured4ec3/eafe25338.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52238,'2021-03-19 13:11:42','/montserratf204a/bdc72697.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52239,'2021-03-19 13:12:35','/sicily066/adaefe358904.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52240,'2021-03-19 13:15:49','/restaurants0966/ecbeea281396.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52241,'2021-03-19 13:16:56','/clones524/aecbf74573.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52242,'2021-03-19 13:21:49','/signupb69/eecee366253.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52243,'2021-03-19 13:23:47','/whenever01b6/dddee124745.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52244,'2021-03-19 13:36:52','/flashers4845/ecbbfc129546.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52245,'2021-03-19 13:45:33','/alleged383/acaba86993.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52246,'2021-03-19 13:49:10','/toshiba7171e/cfafa383859.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52247,'2021-03-19 13:52:31','/widow975/fdcbe451943.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52248,'2021-03-19 13:54:03','/predictive0c/bb435240.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52249,'2021-03-19 13:57:06','/onboard28/dfe35561.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52250,'2021-03-19 13:59:11','/neighbordf/cff89191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52251,'2021-03-19 14:06:58','/__media__/js/netsoltrademark.php?d=zxcvbn.zxc','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.82 Safari/537.36',NULL,404,'GET',NULL,'188.239.119.120'),(52252,'2021-03-19 14:14:38','/cared6a710/fed15987.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52253,'2021-03-19 14:14:40','/laravel/.env','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52254,'2021-03-19 14:22:03','/generatorsd5e/cbfbf469803.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52255,'2021-03-19 14:33:09','/balloond40d/edcbec468246.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52256,'2021-03-19 14:34:25','/irc32/dfc427091.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52257,'2021-03-19 14:36:29','/safaris20/dc295490.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52258,'2021-03-19 14:38:55','/catalogs5e08/ceffab28366.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52259,'2021-03-19 14:40:21','/ant14b73/dee48737.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52260,'2021-03-19 14:44:52','/wina9/dc401240.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52261,'2021-03-19 14:50:32','/implants983/cbfce93483.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52262,'2021-03-19 14:56:37','/archaeologyb055/aacadc170376.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52263,'2021-03-19 14:57:30','/inst738a4/fecad131479.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52264,'2021-03-19 15:04:58','/hamletea/ea356350.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52265,'2021-03-19 15:10:58','/gardening64/bffb265472.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52266,'2021-03-19 15:11:43','/wp-content/themes/alternate-lite/inc/customizer.php','https://www.ingivision.com','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,404,'GET',NULL,'95.217.185.189'),(52267,'2021-03-19 15:13:55','/condosaver5beb6/beb394487.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52268,'2021-03-19 15:14:17','/tennisd1/fd182960.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52269,'2021-03-19 15:26:17','/baindex.php','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','ingivision.com',404,'GET',NULL,'68.183.188.176'),(52270,'2021-03-19 15:29:14','/compete8ad/fdaded286554.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52271,'2021-03-19 15:32:12','/repeal7a71b/eedf176588.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52272,'2021-03-19 15:34:09','/irwind16c/accdfb154836.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52273,'2021-03-19 15:36:55','/ict02/bab147531.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52274,'2021-03-19 15:37:34','/assemblyadd21/acdad422379.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52275,'2021-03-19 15:40:54','/ditd5/add139731.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52276,'2021-03-19 15:44:44','/saw267/abafef161694.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52277,'2021-03-19 15:48:35','/elements537de/dbfea221859.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52278,'2021-03-19 15:57:54','/cancellationsbd/cdf358331.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52279,'2021-03-19 15:58:27','/legaled26/bbdcca380546.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52280,'2021-03-19 16:12:13','/forgive31/db272860.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52281,'2021-03-19 16:19:19','/lad1f492/cead96988.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52282,'2021-03-19 16:23:54','/lbdc363/fee145727.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52283,'2021-03-19 16:27:01','/backpack5a29/fbabe270755.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52284,'2021-03-19 16:34:07','/bernie63/cac277951.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52285,'2021-03-19 16:34:10','/Quienes-somos/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52286,'2021-03-19 16:38:47','/en/2016/05','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(52287,'2021-03-19 16:43:52','/wp-content/wp-1ogin_bak.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'104.131.163.64'),(52288,'2021-03-19 16:44:28','/wp-content/wp-1ogin_bak.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'104.131.163.64'),(52289,'2021-03-19 16:49:26','/hardware2ba59/aec360957.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52290,'2021-03-19 16:50:55','/uncertainty0ef/edfbe27863.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52291,'2021-03-19 16:54:42','/frutas-y-verduras/kiwi/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.198'),(52292,'2021-03-19 16:57:31','/alchemy0c742/ccc238437.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52293,'2021-03-19 17:00:32','/native11/fe202290.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52294,'2021-03-19 17:04:44','/bylaws00c54/aebb414368.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52295,'2021-03-19 17:10:29','/rub5078/fdcdd12745.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52296,'2021-03-19 17:20:56','/modifyd38e/cfeba383475.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52297,'2021-03-19 17:24:07','/wp-stream.php','http://ingivision.com','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36','ingivision.com',404,'POST',NULL,'78.133.206.147'),(52298,'2021-03-19 17:26:23','/breedsa1d/baaed367963.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52299,'2021-03-19 17:41:06','/recording9a11/eeadcb322756.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52300,'2021-03-19 17:49:18','/edgar4f/fd188960.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52301,'2021-03-19 18:03:09','/texa4/ffe47751.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52302,'2021-03-19 18:06:32','/bowenc5/dbe35991.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52303,'2021-03-19 18:08:07','/shiftedd84ba/dfee453538.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52304,'2021-03-19 18:19:27','/freelance63/cdaa28092.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52305,'2021-03-19 18:22:53','/crystalse7ba0/eeebd50059.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52306,'2021-03-19 18:24:20','/acp24/af379850.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52307,'2021-03-19 18:24:25','/monitoredde5/cbccd389553.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52308,'2021-03-19 18:24:26','/kellera5f2b/bdf92737.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52309,'2021-03-19 18:31:18','/sammya9/db75550.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52310,'2021-03-19 18:37:36','/hemp9f/ccd356591.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52311,'2021-03-19 18:44:35','/frutas-y-verduras/patatas','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(52312,'2021-03-19 18:46:31','/alarmsef/fb290820.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52313,'2021-03-19 18:50:44','/rehearsalc1e/cddcf157073.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52314,'2021-03-19 18:58:16','/barrec3ec/dedbc278465.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52315,'2021-03-19 18:58:45','/lemma0b/fe170580.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52316,'2021-03-19 18:59:17','/eliza767/afbacd416164.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52317,'2021-03-19 19:05:07','/powelld1ff/eccfee146696.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52318,'2021-03-19 19:07:41','/dependsfc/ab103830.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52319,'2021-03-19 19:09:34','/canton73/baae351322.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52320,'2021-03-19 19:12:05','/harf5/afca115362.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52321,'2021-03-19 19:18:15','/propertiesa50/bfffac381344.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52322,'2021-03-19 19:27:58','/nonprofit717e1/dca87587.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52323,'2021-03-19 19:36:41','/contacto/index.html','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(52324,'2021-03-19 19:37:38','/accelerationff/bdd231391.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52325,'2021-03-19 19:41:16','/general.php?file=wp-config.php','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'68.235.36.109'),(52326,'2021-03-19 19:42:57','/wp-content/plugins/firestats/php/tools/get_config.php','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.89'),(52327,'2021-03-19 19:43:15','/wp-content/plugins/gi-media-library/download.php?fileid=Li4vLi4vLi4vd3AtY29uZmlnLnBocA%3D%3D','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.71'),(52328,'2021-03-19 19:44:08','/wp-content/plugins/3d-twitter-wall/proxy.php?url=file..%2F..%2F..%2Fwp-config.php','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.75'),(52329,'2021-03-19 19:45:20','/wp-config.php.swp','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.84'),(52330,'2021-03-19 19:45:21','/.wp-config.php.swp','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.84'),(52331,'2021-03-19 19:45:22','/wp-config.php.swo','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.84'),(52332,'2021-03-19 19:45:22','/wp-config.php.save','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.84'),(52333,'2021-03-19 19:45:24','/wp-config.php.old','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.82'),(52334,'2021-03-19 19:45:25','/wp-config.php.dist','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.82'),(52335,'2021-03-19 19:45:26','/wp-config.php.bak','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.82'),(52336,'2021-03-19 19:45:27','/wp-config.php.backup','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.82'),(52337,'2021-03-19 19:45:29','/wp-config.php_backup','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.73'),(52338,'2021-03-19 19:45:30','/wp-config.php%23','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.73'),(52339,'2021-03-19 19:45:33','/.wp-config.php','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.81'),(52340,'2021-03-19 19:45:34','/wp-config.php-bak','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.81'),(52341,'2021-03-19 19:45:36','/wp-content/plugins/sf-booking/lib/downloads.php?file=%2Fwp-config.php','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Firefox/45.0',NULL,404,'GET',NULL,'23.226.133.81'),(52342,'2021-03-19 19:46:32','/cured02521/defff237769.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52343,'2021-03-19 19:46:59','/maybebc/ed61590.htm','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(52344,'2021-03-19 19:50:09','/ussr412aa/fef395497.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52345,'2021-03-19 20:01:42','/amberfd47/dfcbee265716.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52346,'2021-03-19 20:08:07','/cypress99e/fbafa453443.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52347,'2021-03-19 20:12:21','/appeal38/aeeb342842.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52348,'2021-03-19 20:12:58','/ay1ada6/bcdde72879.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52349,'2021-03-19 20:16:28','/odor69706/cec272497.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52350,'2021-03-19 20:19:29','/shrubsff4/adfbcc397274.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52351,'2021-03-19 20:38:01','/archive','http://www.ingivision.com','Googlebot/2.1 (+http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52352,'2021-03-19 20:41:15','/forrestercc6ea/cdffa439429.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52353,'2021-03-19 20:45:41','/applya8/dec381061.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52354,'2021-03-19 20:48:28','/pertinent4d/fe232770.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52355,'2021-03-19 20:48:48','/yemen6acb/cedac28795.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52356,'2021-03-19 20:52:26','/does9dcb8/acff360188.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52357,'2021-03-19 21:08:15','/reinforcement21eb/dcdae396895.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52358,'2021-03-19 21:10:40','/cds18/ed22160.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52359,'2021-03-19 21:19:01','/frutas-y-verduras/mangos/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(52360,'2021-03-19 21:26:33','/mccoy23/aaae56212.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52361,'2021-03-19 21:28:10','/normally930/caffdd3704.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52362,'2021-03-19 21:59:41','/applause912d/aeaddf359306.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52363,'2021-03-19 22:03:10','/functionaff/deecc120853.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52364,'2021-03-19 22:09:28','/tractor09/ad409950.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52365,'2021-03-19 22:10:07','/kuwaitd7/fe86990.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52366,'2021-03-19 22:13:07','/csr38/addd18522.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52367,'2021-03-19 22:13:40','/buds762dd/beede399959.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52368,'2021-03-19 22:17:41','/lohanfae/eabfad212924.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52369,'2021-03-19 22:22:08','/birchb6b4/fcaab253995.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52370,'2021-03-19 22:28:48','/coefficient15779/fcfd350838.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52371,'2021-03-19 22:30:46','/worry1d64/abaeb485005.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52372,'2021-03-19 22:35:05','/positively9bed9/cdded392409.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52373,'2021-03-19 22:36:57','/equipd51c/dcbacb11506.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52374,'2021-03-19 22:40:54','/sensationf2d3/bcbce332945.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52375,'2021-03-19 22:42:05','/throughout80/cb321620.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52376,'2021-03-19 22:42:16','/carry18/acfd142412.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(52377,'2021-03-19 22:43:06','/norwayf9/cc283700.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52378,'2021-03-19 22:43:26','/poisonb7/aa130000.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52379,'2021-03-19 22:46:51','/expediaa36/aeadfb148804.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52380,'2021-03-19 22:55:19','/kcab1/fbacec370824.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52381,'2021-03-19 23:07:19','/artisticcd19/ffaffa187476.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52382,'2021-03-19 23:08:21','/religiousb0b7/adccf422235.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52383,'2021-03-19 23:11:08','/selfish54/cfc158281.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52384,'2021-03-19 23:11:36','/multimedia05/ebce122212.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52385,'2021-03-19 23:11:43','/packaged997e/beeba230045.htm','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.4103.61 Safari/537.36','https://www.ingivision.com/packaged997e/beeba230045.htm',404,'GET',NULL,'92.255.198.132'),(52386,'2021-03-19 23:32:42','/listed192fc/cbbb360668.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52387,'2021-03-19 23:35:56','/fragrance0d7f9/ffdca67369.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52388,'2021-03-19 23:37:31','/sock422/eeced312043.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52389,'2021-03-19 23:40:27','/humans.txt','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36','http://ingivision.com/humans.txt',404,'GET',NULL,'192.71.225.127'),(52390,'2021-03-19 23:40:28','/ads.txt','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 8.0.0; SM-G960F Build/R16NW) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/62.0.3202.84 Mobile Safari/537.36','http://ingivision.com/ads.txt',404,'GET',NULL,'192.71.103.173'),(52391,'2021-03-19 23:48:30','/taliban25dd/bfaeea355616.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52392,'2021-03-19 23:50:01','/whitneydac4a/ebc450817.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52393,'2021-03-19 23:57:02','/frutas-y-verduras/calabacin/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.198'),(52394,'2021-03-19 23:57:23','/namelyb18e8/affec48409.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52395,'2021-03-20 00:15:21','/steroids4053e/bdae30828.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52396,'2021-03-20 00:15:54','/fully83/bde41691.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52397,'2021-03-20 00:20:55','/displaying9d/daea465192.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(52398,'2021-03-20 00:21:04','/dispersione86c/aefba214465.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52399,'2021-03-20 00:26:35','/lessonaf/ddbb43952.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52400,'2021-03-20 00:40:54','/ignoreda2bd/adcab324719.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52401,'2021-03-20 00:58:48','/creator6e42/baade365715.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52402,'2021-03-20 00:59:58','/heroin4a7a/debeaf55006.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52403,'2021-03-20 01:02:59','/frutas-y-verduras/paraguayos/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.200'),(52404,'2021-03-20 01:05:49','/monte39/ce228540.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52405,'2021-03-20 01:06:23','/pt/contacto-pt','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(52406,'2021-03-20 01:11:21','/singled08/bcc418121.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52407,'2021-03-20 01:17:36','/execb800/dbffdf288746.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52408,'2021-03-20 01:19:12','/supermarket3d2c3/cbbd114148.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52409,'2021-03-20 01:21:08','/biotechf1686/afa150487.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52410,'2021-03-20 01:22:21','/tasa2/cbb252731.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52411,'2021-03-20 01:24:27','/frutas-y-verduras/peras/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(52412,'2021-03-20 01:30:47','/belief0cd6/fdbbad365376.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52413,'2021-03-20 01:33:50','/coherent4d8/cfecd173303.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52414,'2021-03-20 01:38:12','/georgiaf3144/badac61719.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52415,'2021-03-20 01:43:13','/westlife0e9/bedde217643.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52416,'2021-03-20 01:46:19','/disclosed3e53/babbd410295.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52417,'2021-03-20 01:48:06','/fighter3ff/daebe88203.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52418,'2021-03-20 01:49:14','/spiritsaba54/abddc46799.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52419,'2021-03-20 02:09:13','/sinclair7dd/cbebbe94124.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52420,'2021-03-20 02:13:06','/appendixf0e/ebccbe263264.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52421,'2021-03-20 02:19:12','/fourierfc0/ebbfc298893.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52422,'2021-03-20 02:21:45','/ccd32/fcb68931.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(52423,'2021-03-20 02:22:33','/wheelfc3/ebbaf43043.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52424,'2021-03-20 02:31:18','/protecting07b/fbaaea66204.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52425,'2021-03-20 02:35:14','/monte39/ce248540.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52426,'2021-03-20 02:44:14','/bradd5f/fbbbaa325924.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52427,'2021-03-20 02:46:28','/suppress55c/ddcfb216683.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52428,'2021-03-20 02:47:26','/depreciationd871/bfcfbc251906.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52429,'2021-03-20 02:49:33','/haroldc42af/ccbe8388.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52430,'2021-03-20 02:54:58','/grahambdb3/bfcfdf45066.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52431,'2021-03-20 02:55:17','/energetic7fa/baeec234373.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52432,'2021-03-20 02:56:31','/haguefa99/bfcfd117385.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52433,'2021-03-20 03:01:20','/drainedc4/ed156860.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52434,'2021-03-20 03:04:17','/expansion51da8/bfd203557.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52435,'2021-03-20 03:07:49','/emergea7755/bfdeb431159.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52436,'2021-03-20 03:08:08','/bxcea77/afa298197.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52437,'2021-03-20 03:12:48','/gentlemaned/fbf209891.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52438,'2021-03-20 03:28:12','/thy63d5f/dea66167.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52439,'2021-03-20 03:31:05','/mtvc5/bbeb9482.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52440,'2021-03-20 03:31:38','/qb2e3/adfec194623.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52441,'2021-03-20 03:35:52','/achievementc831e/ebf125127.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52442,'2021-03-20 03:36:30','/mayenb6/daf338881.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52443,'2021-03-20 03:42:35','/contribution0ee8/abbcee403626.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52444,'2021-03-20 03:46:33','/robotica01/cddddb397964.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52445,'2021-03-20 03:48:52','/res755/bedec263713.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52446,'2021-03-20 03:56:02','/frutas-y-verduras/paraguayo','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(52447,'2021-03-20 03:57:46','/packagesac5da/aace341798.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52448,'2021-03-20 03:58:39','/cupsd7e7/dbdfca326726.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52449,'2021-03-20 04:00:36','/clearing384cb/dbeec8829.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52450,'2021-03-20 04:12:04','/preacherb1/eaaa418982.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52451,'2021-03-20 04:13:32','/regs710a/ddacc233915.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52452,'2021-03-20 04:15:42','/leases7d8/eeaaca452844.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52453,'2021-03-20 04:21:58','/supper0a4/abadab234664.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52454,'2021-03-20 04:25:51','/paranormalba85/eebffa439246.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52455,'2021-03-20 04:29:40','/prwebc52/eafbab79644.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52456,'2021-03-20 04:31:19','/swivel97/cf193250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52457,'2021-03-20 04:34:09','/guidinga7/ee412050.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52458,'2021-03-20 04:40:29','/aerosol373/bdfcfb317014.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52459,'2021-03-20 04:40:47','/inappropriate7a/abbf67392.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52460,'2021-03-20 04:45:00','/foodd1f25/accb340418.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52461,'2021-03-20 04:50:12','/booleanfc/afba287312.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52462,'2021-03-20 04:53:32','/neara1140/eabee480989.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52463,'2021-03-20 04:54:57','/tennessee908/eddcf182663.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52464,'2021-03-20 05:15:04','/choices093/eabdc243743.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52465,'2021-03-20 05:16:17','/widestffb55/cfbf39208.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52466,'2021-03-20 05:17:05','/excessivee96/eedddf488094.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52467,'2021-03-20 05:25:49','/fern1a/dec298261.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52468,'2021-03-20 05:28:22','/pim58/eada437752.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52469,'2021-03-20 05:39:54','/optimumd9/febc349822.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52470,'2021-03-20 05:41:07','/redirect40e4e/dec332797.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.46'),(52471,'2021-03-20 05:41:26','/turnover6217b/dddae310189.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52472,'2021-03-20 05:42:50','/metrica0b/fbdaac187994.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52473,'2021-03-20 05:53:30','/profitdb9/adfbec342314.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52474,'2021-03-20 05:59:01','/qualified308/cfbaeb383344.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52475,'2021-03-20 06:05:29','/dungeons3af7f/ead218037.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52476,'2021-03-20 06:12:33','/decksc474b/cab331367.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52477,'2021-03-20 06:16:10','/cereal55/edb74181.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52478,'2021-03-20 06:17:22','/andecc/dedae120003.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52479,'2021-03-20 06:21:24','/artist82c25/fdcfe441189.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52480,'2021-03-20 06:21:51','/kissimmeebb633/fbdcc439849.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52481,'2021-03-20 06:24:37','/ebay63dc7/ede40217.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52482,'2021-03-20 06:24:48','/gentoo1aaa/eafff354315.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52483,'2021-03-20 06:31:10','/eligible84b/baeab302513.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52484,'2021-03-20 06:45:10','/limp67/cd415920.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52485,'2021-03-20 06:46:26','/oval0da5/daaada487926.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52486,'2021-03-20 06:49:32','/compellingf6/dc270180.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52487,'2021-03-20 06:56:06','/ramon643/dfcee98863.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52488,'2021-03-20 07:19:29','/learnedca3/ebabe403293.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52489,'2021-03-20 07:23:09','/pt/ingivision-pt','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.94'),(52490,'2021-03-20 07:29:15','/eternity3a900/aeda233028.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52491,'2021-03-20 07:29:26','/warez190b/bebdfd75826.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52492,'2021-03-20 07:33:05','/assists7c2c4/ebcab269649.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52493,'2021-03-20 07:34:49','/facesitting735dd/afef454378.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52494,'2021-03-20 07:36:54','/waiverbd/bdb369331.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52495,'2021-03-20 07:37:07','/constructionf47/fceaad460904.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52496,'2021-03-20 07:44:16','/topologyaba/deecd32943.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52497,'2021-03-20 07:47:47','/mailman11/cadf69722.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52498,'2021-03-20 07:48:21','/breath94/fa106080.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52499,'2021-03-20 07:52:33','/read04/ec360180.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52500,'2021-03-20 07:54:31','/swingers29263/bcd387217.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52501,'2021-03-20 07:56:53','/bur2784c/bdcde73899.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52502,'2021-03-20 07:58:40','/usb49af6/bfc281587.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52503,'2021-03-20 08:01:10','/huntsvilled6/fbac13112.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52504,'2021-03-20 08:09:25','/pt/contacto-pt/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(52505,'2021-03-20 08:16:32','/herof1e/feabdb365294.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52506,'2021-03-20 08:20:11','/mariettab15/decdb336833.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52507,'2021-03-20 08:23:55','/cowboysf74e9/fdcec330589.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52508,'2021-03-20 08:25:34','/bugs9529/dacbcc304056.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52509,'2021-03-20 08:28:59','/hypertext05992/eba437407.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52510,'2021-03-20 08:33:03','/frutas-y-verduras/granadas','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(52511,'2021-03-20 08:33:57','/csv61/fa318760.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52512,'2021-03-20 08:34:26','/bw7b/efa349321.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52513,'2021-03-20 08:36:26','/be1f0e3/bfcfb120019.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52514,'2021-03-20 08:37:16','/ff67/aef123581.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52515,'2021-03-20 08:38:43','/yrs7cc5a/afefa68069.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52516,'2021-03-20 08:42:29','/vp2c/fb407830.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52517,'2021-03-20 08:43:40','/wonf1/ebfd2642.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52518,'2021-03-20 08:45:38','/unlike90fd/cffbbe105096.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52519,'2021-03-20 08:45:58','/attractsb164/cebdf119005.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52520,'2021-03-20 08:51:00','/haroldc42af/ccbe488388.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52521,'2021-03-20 08:55:03','/av19/cbc184551.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52522,'2021-03-20 09:02:00','/objectives53a1/eefcdc403016.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52523,'2021-03-20 09:06:02','/out07/ec200060.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52524,'2021-03-20 09:14:21','/by65/bad320011.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52525,'2021-03-20 09:14:59','/ingivision@ingivision.com','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(52526,'2021-03-20 09:17:03','/gba85/aacf8072.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52527,'2021-03-20 09:21:06','/rtfaf/ad158420.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52528,'2021-03-20 09:22:18','/nes2c/aaf73041.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52529,'2021-03-20 09:23:17','/roll453f/dabdc262595.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52530,'2021-03-20 09:31:19','/matt52edc/bea43217.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52531,'2021-03-20 09:33:22','/moleculesd10f/abcce149205.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52532,'2021-03-20 09:33:51','/argv70/fb78740.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52533,'2021-03-20 09:37:08','/postpostedea/af264410.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52534,'2021-03-20 09:39:47','/redheada264/defcae229946.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52535,'2021-03-20 09:40:54','/covecb/bb29060.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52536,'2021-03-20 09:48:02','/protein35464/abce241548.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52537,'2021-03-20 09:48:02','/sloveniaed/edb106911.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52538,'2021-03-20 09:51:02','/nt4b/cfce62552.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52539,'2021-03-20 10:02:36','/sha06/ed313650.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52540,'2021-03-20 10:02:55','/cpg65/faa59491.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52541,'2021-03-20 10:04:54','/passed56503/cfde102398.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52542,'2021-03-20 10:06:07','/crimed7/ec2010.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52543,'2021-03-20 10:06:53','/ecsb3/bb237890.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52544,'2021-03-20 10:09:19','/step1c/cf80930.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52545,'2021-03-20 10:11:47','/kentcf/ef84590.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52546,'2021-03-20 10:17:46','/algeria4e/edcc88542.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52547,'2021-03-20 10:20:49','/glide5e4/daabaf379114.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52548,'2021-03-20 10:22:41','/nyc3dde8/add125257.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52549,'2021-03-20 10:23:33','/departing767d/acbdf475695.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52550,'2021-03-20 10:24:43','/facilitates21b/faadbd176744.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52551,'2021-03-20 10:25:26','/vonbb/cf303950.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52552,'2021-03-20 10:27:35','/over5f/ee80110.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52553,'2021-03-20 10:28:04','/ice7f/ff121960.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52554,'2021-03-20 10:30:00','/glyac/ae415330.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52555,'2021-03-20 10:30:24','/altfa/bf246320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52556,'2021-03-20 10:32:13','/hays63ea2/efd339337.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52557,'2021-03-20 10:32:20','/lgee/ddfb43522.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52558,'2021-03-20 10:32:32','/datasheet1730f/bafc412188.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52559,'2021-03-20 10:37:55','/beam82/cae5471.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52560,'2021-03-20 10:38:36','/civilizationbe/ed348770.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52561,'2021-03-20 10:42:54','/minse5/bd25830.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52562,'2021-03-20 10:43:37','/lookup6b/adec445382.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52563,'2021-03-20 10:44:44','/headline45/bdbd268112.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52564,'2021-03-20 10:47:51','/hgh26/ecf54221.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52565,'2021-03-20 10:50:13','/incidents47bd8/efdb488698.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52566,'2021-03-20 10:54:33','/are98/ad420020.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52567,'2021-03-20 10:56:04','/drewb4a/bfbce465843.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52568,'2021-03-20 11:00:30','/by65/bad480011.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52569,'2021-03-20 11:01:28','/satirea0057/edeaf95969.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52570,'2021-03-20 11:02:49','/glyac/ae315330.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52571,'2021-03-20 11:04:59','/teh3b/cec99421.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52572,'2021-03-20 11:05:48','/vainf4/db95690.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52573,'2021-03-20 11:06:15','/ug1d/baa152491.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52574,'2021-03-20 11:06:47','/fab77/be255110.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52575,'2021-03-20 11:09:09','/yay17/cde74121.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52576,'2021-03-20 11:10:01','/ox01/ecf136321.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52577,'2021-03-20 11:10:06','/wesb3/dc155190.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52578,'2021-03-20 11:13:54','/wordb6/ad40810.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52579,'2021-03-20 11:15:55','/turbo3d/ad6140.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52580,'2021-03-20 11:17:08','/celebrexb3aa/eacfbc113376.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52581,'2021-03-20 11:18:09','/apsc0/bf333170.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52582,'2021-03-20 11:19:07','/out07/ec260060.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52583,'2021-03-20 11:22:11','/rayb0/fb402480.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52584,'2021-03-20 11:22:41','/atmd6/fc166400.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52585,'2021-03-20 11:24:18','/sus72/ba415860.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52586,'2021-03-20 11:26:23','/xc5d/cbb294451.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52587,'2021-03-20 11:27:50','/cancun00db/bebca30185.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52588,'2021-03-20 11:28:01','/aut1c/afc19191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52589,'2021-03-20 11:29:52','/ari1c/bb477270.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52590,'2021-03-20 11:29:58','/seen99/dcae201032.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52591,'2021-03-20 11:30:18','/tax0f/dce20531.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52592,'2021-03-20 11:31:31','/ditd5/add39731.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52593,'2021-03-20 11:32:05','/hu45/bef249671.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52594,'2021-03-20 11:32:50','/statement7c59/bdffa380795.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52595,'2021-03-20 11:33:23','/hailf8/ef14400.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52596,'2021-03-20 11:34:53','/pot91/be445100.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52597,'2021-03-20 11:35:12','/dark84/de41640.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52598,'2021-03-20 11:39:54','/duel3a/ec76880.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52599,'2021-03-20 11:41:09','/nmreb/baa76891.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52600,'2021-03-20 11:42:01','/dean32/de23250.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52601,'2021-03-20 11:43:12','/ol70/dbf469041.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52602,'2021-03-20 11:43:38','/hw6e/cfe471891.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52603,'2021-03-20 11:44:00','/skye8f/dc79060.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52604,'2021-03-20 11:49:11','/step1c/cf20930.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52605,'2021-03-20 11:53:52','/reggae5f/ce328480.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52606,'2021-03-20 11:55:44','/penalties74f23/fca487997.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52607,'2021-03-20 12:00:03','/msmf4/ab118550.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52608,'2021-03-20 12:03:19','/headsets1e/ed50400.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52609,'2021-03-20 12:03:42','/chaired4e8/effdaa439014.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52610,'2021-03-20 12:05:17','/foce/bc248990.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52611,'2021-03-20 12:06:06','/cpt55/de199110.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52612,'2021-03-20 12:07:38','/rfp13d8/bafff415425.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52613,'2021-03-20 12:07:50','/bk06/ecb47671.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52614,'2021-03-20 12:08:08','/slaughtere67/ecaad374083.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52615,'2021-03-20 12:08:46','/launchedaaebd/aee404597.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52616,'2021-03-20 12:11:36','/croatian0f166/adcbe373259.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52617,'2021-03-20 12:12:13','/exceptions4d/fdf226831.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52618,'2021-03-20 12:15:42','/slowingc9c/decdb318653.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52619,'2021-03-20 12:18:54','/scof3f2/adcaac234026.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52620,'2021-03-20 12:19:26','/side7f/acd180551.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52621,'2021-03-20 12:31:23','/insect43bb/aeeccb50696.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52622,'2021-03-20 12:36:35','/withdrawal0e6/bcdefc367184.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52623,'2021-03-20 12:39:08','/timothya0/ecce227242.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52624,'2021-03-20 12:39:52','/kwf6/cd229680.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52625,'2021-03-20 12:42:46','/ibid2d9/eeedc153083.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52626,'2021-03-20 12:43:20','/frutas-y-verduras/granadas/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.200'),(52627,'2021-03-20 12:43:50','/preparing8726/cdcbcb265226.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(52628,'2021-03-20 12:44:04','/ol70/dbf189041.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52629,'2021-03-20 12:44:26','/spiesb704e/ccef249188.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52630,'2021-03-20 12:45:17','/abca3/ff164100.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52631,'2021-03-20 12:45:42','/inconvenienceb04f/faadc414785.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52632,'2021-03-20 12:46:18','/openoffice2509/bcbdbb218156.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52633,'2021-03-20 12:57:23','/ritef18/bffccf373504.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52634,'2021-03-20 12:57:59','/seane70/aeeacb304554.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52635,'2021-03-20 12:59:33','/nvidia78/aa209070.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52636,'2021-03-20 12:59:52','/papers97d01/cbf41627.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52637,'2021-03-20 13:03:41','/recorded9f/bfd422981.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52638,'2021-03-20 13:04:03','/gradual3c/ebdf376742.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52639,'2021-03-20 13:07:29','/launch12/adcb403232.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52640,'2021-03-20 13:08:19','/microbiale1/bf56180.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52641,'2021-03-20 13:09:16','/passing0b/ebcb244462.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52642,'2021-03-20 13:11:15','/nsfb63c/baccb212235.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52643,'2021-03-20 13:13:17','/bitch7d/ac7110.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52644,'2021-03-20 13:16:13','/kl97/bdb213191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52645,'2021-03-20 13:19:30','/penbedc7/cadbe464269.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52646,'2021-03-20 13:24:43','/slopeee80e/cecfe48479.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52647,'2021-03-20 13:28:07','/piping46/cefa334982.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52648,'2021-03-20 13:29:19','/materials0f840/bbacf140959.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52649,'2021-03-20 13:31:37','/avec65/dd12960.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52650,'2021-03-20 13:34:55','/enjoying85/af328310.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52651,'2021-03-20 13:35:18','/homesteadd7/db133430.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52652,'2021-03-20 13:35:47','/collarsd225f/efeaa437329.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52653,'2021-03-20 13:37:46','/freed24e70/cdfcf214729.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52654,'2021-03-20 13:38:13','/abatement81/bb479980.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52655,'2021-03-20 13:39:34','/adult45/fbb300821.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52656,'2021-03-20 13:40:07','/acsf4faa/deaf111868.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52657,'2021-03-20 13:40:13','/breed2c0/abcecd87484.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52658,'2021-03-20 13:41:44','/elvis8834/dbfbd7065.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52659,'2021-03-20 13:42:09','/insurancebee/caaaf400383.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52660,'2021-03-20 13:45:02','/worry1d64/abaeb5005.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52661,'2021-03-20 13:47:02','/antenna78/bdb425371.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52662,'2021-03-20 13:47:06','/cfoe8257/daaaf359579.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52663,'2021-03-20 13:48:20','/electro5d70/ecaefa388766.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52664,'2021-03-20 13:48:57','/editionsf6/bfdc444282.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52665,'2021-03-20 13:49:39','/msds302/bedddc57454.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52666,'2021-03-20 13:49:45','/abroad971e/efafc424605.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52667,'2021-03-20 13:50:04','/xre8c6b/efdbf90569.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52668,'2021-03-20 13:50:42','/created2ab56/acca260978.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52669,'2021-03-20 13:53:19','/without57/dfca460322.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52670,'2021-03-20 13:53:21','/prevail49/feec197822.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52671,'2021-03-20 13:54:12','/pilesc53a/dcbfa439385.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52672,'2021-03-20 13:54:16','/docs568/bcefb346103.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52673,'2021-03-20 13:56:29','/szf653d/fdffe130409.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52674,'2021-03-20 13:56:31','/tommy033/fefdff126514.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52675,'2021-03-20 13:57:40','/rifle670ec/eabf350008.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52676,'2021-03-20 13:57:44','/branches09/afb165961.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52677,'2021-03-20 13:59:06','/mistakesbd/aa287220.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52678,'2021-03-20 13:59:56','/removing02/bff126451.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52679,'2021-03-20 14:00:29','/floridad2/acde400932.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52680,'2021-03-20 14:01:24','/supported07/efad22072.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52681,'2021-03-20 14:01:32','/policya8/abbf320142.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52682,'2021-03-20 14:01:50','/fab77/be95110.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52683,'2021-03-20 14:03:32','/failsbb1/ebfad65403.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52684,'2021-03-20 14:04:07','/ileff685/decfb30739.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52685,'2021-03-20 14:04:16','/reach386/afcbeb462254.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52686,'2021-03-20 14:05:33','/loyola420/effdde59554.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52687,'2021-03-20 14:06:07','/rules3b5dc/efcdd80819.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52688,'2021-03-20 14:06:11','/roundingc2/df296630.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52689,'2021-03-20 14:06:49','/estates2c/da208210.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52690,'2021-03-20 14:07:24','/coated349/adfbe108833.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52691,'2021-03-20 14:08:09','/syntax6b4e2/cff484387.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52692,'2021-03-20 14:08:11','/obsb0f9c/fffdd96329.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52693,'2021-03-20 14:08:13','/arcadia9d/fdb196811.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52694,'2021-03-20 14:09:14','/concisef6/bfce32782.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52695,'2021-03-20 14:10:15','/rainad8e8/fee162947.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52696,'2021-03-20 14:10:32','/afl32/be195360.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52697,'2021-03-20 14:10:34','/waveform2a/eee37941.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52698,'2021-03-20 14:11:09','/codesf7e/ffbed22333.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52699,'2021-03-20 14:14:41','/subchapter42/bc399360.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52700,'2021-03-20 14:14:58','/undef16db0/acc295227.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52701,'2021-03-20 14:15:52','/rangers769/cdedd69153.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52702,'2021-03-20 14:15:52','/them9fc/dfcff40133.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52703,'2021-03-20 14:15:53','/eliza767/afbacd236164.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52704,'2021-03-20 14:15:57','/aims5a0b8/fadd325228.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52705,'2021-03-20 14:16:12','/incidental72/abe193621.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52706,'2021-03-20 14:16:22','/blush5bd/ffbfd459173.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52707,'2021-03-20 14:16:26','/molded7967d/eece73728.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52708,'2021-03-20 14:17:02','/explainedbd/cadf4012.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52709,'2021-03-20 14:17:05','/chiefc8c/addbf361793.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52710,'2021-03-20 14:17:13','/pagea5771/bced220038.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52711,'2021-03-20 14:17:15','/crewsa6143/cac213857.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52712,'2021-03-20 14:18:20','/cheshireb7/caef391472.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52713,'2021-03-20 14:18:22','/bindings16/bfdb474222.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52714,'2021-03-20 14:18:57','/anime1b1/aaeeb382543.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52715,'2021-03-20 14:21:17','/fp69/ca328320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52716,'2021-03-20 14:21:28','/spin1d9/faaafb445184.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52717,'2021-03-20 14:22:28','/rows06a5/dabfb387725.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52718,'2021-03-20 14:23:05','/threads73/abfd183422.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52719,'2021-03-20 14:23:57','/patent944a5/bbf303487.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52720,'2021-03-20 14:24:09','/houstonce6/aaabe82253.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52721,'2021-03-20 14:24:21','/balloonse6fa0/abed190598.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52722,'2021-03-20 14:25:19','/likes34875/aabf206298.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52723,'2021-03-20 14:25:28','/utc5e6d/ecaeeb363166.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52724,'2021-03-20 14:27:01','/porno00a/fadbbc302184.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52725,'2021-03-20 14:27:04','/guyanaa1046/adc349187.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52726,'2021-03-20 14:29:16','/parser8c86c/eaec31838.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52727,'2021-03-20 14:29:17','/mess74627/aafbb48009.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52728,'2021-03-20 14:29:31','/soupsef/da116850.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52729,'2021-03-20 14:30:32','/school9766/cbdcc60165.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52730,'2021-03-20 14:30:39','/rosie1e01/beffc118275.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52731,'2021-03-20 14:30:41','/tysonabe91/afac98018.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52732,'2021-03-20 14:32:11','/axialb2e/dcfdcb79444.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52733,'2021-03-20 14:32:22','/spherical76/ec459180.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52734,'2021-03-20 14:33:02','/esteemf4f/becdc392073.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52735,'2021-03-20 14:33:07','/bpmeef7/bbbfea177646.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52736,'2021-03-20 14:34:53','/donec0f1/ccdfe100775.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52737,'2021-03-20 14:34:55','/norm032/aaccbe349684.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52738,'2021-03-20 14:35:55','/blast51f15/dbe186477.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52739,'2021-03-20 14:36:01','/styles4ea83/cbf203257.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52740,'2021-03-20 14:37:03','/cuffd996/cfcba354945.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52741,'2021-03-20 14:37:06','/byron8c12/ebbed390835.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52742,'2021-03-20 14:38:11','/ngc0e/ee34740.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52743,'2021-03-20 14:38:12','/culture36/ecfd141172.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52744,'2021-03-20 14:39:09','/nam4158/bfcecd147986.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52745,'2021-03-20 14:45:34','/transformer92e7/cbedac394546.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52746,'2021-03-20 14:48:59','/wp/wp-admin/install.php','http://www.ingivision.com','Python-urllib/2.7',NULL,404,'GET',NULL,'185.222.57.164'),(52747,'2021-03-20 14:49:08','/wordpress/wp-admin/install.php','http://www.ingivision.com','Python-urllib/2.7',NULL,404,'GET',NULL,'185.222.57.164'),(52748,'2021-03-20 14:49:19','/blog/wp-admin/install.php','http://www.ingivision.com','Python-urllib/2.7',NULL,404,'GET',NULL,'185.222.57.164'),(52749,'2021-03-20 14:49:28','/old/wp-admin/install.php','http://www.ingivision.com','Python-urllib/2.7',NULL,404,'GET',NULL,'185.222.57.164'),(52750,'2021-03-20 14:49:38','/new/wp-admin/install.php','http://www.ingivision.com','Python-urllib/2.7',NULL,404,'GET',NULL,'185.222.57.164'),(52751,'2021-03-20 14:49:47','/oldsite/wp-admin/install.php','http://www.ingivision.com','Python-urllib/2.7',NULL,404,'GET',NULL,'185.222.57.164'),(52752,'2021-03-20 14:50:00','/backup/wp-admin/install.php','http://www.ingivision.com','Python-urllib/2.7',NULL,404,'GET',NULL,'185.222.57.164'),(52753,'2021-03-20 14:51:24','/tai5ef20/eeabf131579.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52754,'2021-03-20 14:56:26','/fit15/deb41931.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52755,'2021-03-20 15:00:53','/hamletea/ea116350.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52756,'2021-03-20 15:05:55','/meme6/ddfb6822.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52757,'2021-03-20 15:10:12','/advertiserscb/bb485330.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52758,'2021-03-20 15:10:30','/rude56921/caacc292199.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52759,'2021-03-20 15:14:05','/site9a/aece380052.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52760,'2021-03-20 15:14:23','/ste89db0/fdf147687.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52761,'2021-03-20 15:16:00','/xy69/bd255670.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52762,'2021-03-20 15:17:59','/jena5764/afa311897.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52763,'2021-03-20 15:21:54','/wh0bae/bbccce90556.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52764,'2021-03-20 15:25:10','/Informaci-n-legal/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52765,'2021-03-20 15:25:34','/yo75/be366270.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52766,'2021-03-20 15:32:20','/TRUEe0/dee460831.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52767,'2021-03-20 15:42:59','/indians263f/bffca166485.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52768,'2021-03-20 15:44:57','/poisoning9a585/bfbab273849.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52769,'2021-03-20 15:46:40','/shook872/ddffdb134054.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52770,'2021-03-20 15:53:15','/mtcc/ebf182621.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52771,'2021-03-20 15:54:32','/fore931/facfb255813.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52772,'2021-03-20 15:58:44','/orchard36/fbff411762.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52773,'2021-03-20 16:00:44','/frutas-y-verduras/nectarina/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(52774,'2021-03-20 16:00:51','/frutas-y-verduras/nectarinas/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(52775,'2021-03-20 16:01:57','/judith37f/bfecf350293.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52776,'2021-03-20 16:06:43','/alisonde/ec391960.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52777,'2021-03-20 16:08:19','/wigs45847/efbdc475149.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52778,'2021-03-20 16:11:17','/sat7c9/edcbfe381134.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52779,'2021-03-20 16:12:48','/trek05/bc25880.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52780,'2021-03-20 16:21:17','/inorganic8e/fee236631.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52781,'2021-03-20 16:25:21','/vrcc/af312370.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52782,'2021-03-20 16:38:56','/dischargedd0999/dcebe453509.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52783,'2021-03-20 16:40:35','/are98/ad200020.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52784,'2021-03-20 16:41:16','/jj77/ad328340.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52785,'2021-03-20 16:48:57','/cessationb5/ebed276872.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52786,'2021-03-20 16:53:34','/turquoisee2ba/dadabe293746.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52787,'2021-03-20 16:57:02','/steepa48d/ebbcd132815.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52788,'2021-03-20 16:59:34','/out07/ec140060.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52789,'2021-03-20 16:59:53','/plenty5b0f/dfbde264715.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52790,'2021-03-20 17:11:50','/dangerous15584/eaac164178.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52791,'2021-03-20 17:13:51','/generator05/deee105062.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52792,'2021-03-20 17:16:31','/chattanooga66/bbf34551.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52793,'2021-03-20 17:30:24','/tous0c741/caff199818.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52794,'2021-03-20 17:31:52','/compaq80/aa425070.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52795,'2021-03-20 17:32:43','/focuses510f/cecebf146646.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52796,'2021-03-20 17:37:22','/texa4/ffe87751.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52797,'2021-03-20 17:38:06','/im88/db322170.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52798,'2021-03-20 17:40:44','/governmental69/aca126501.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52799,'2021-03-20 17:42:05','/mist84/eac472091.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52800,'2021-03-20 17:42:47','/panthers43/ace392151.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52801,'2021-03-20 17:47:17','/virusesf845c/dde386817.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52802,'2021-03-20 17:47:37','/rx70/bf147000.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52803,'2021-03-20 17:48:56','/mortgage4f16/eddde121085.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52804,'2021-03-20 17:50:28','/joey63/eca30151.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52805,'2021-03-20 17:51:55','/steadilyd3/eaf174921.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52806,'2021-03-20 17:54:04','/speede744f/aadcf480969.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52807,'2021-03-20 17:56:59','/en/contact-us','http://www.ingivision.com','Mozilla/5.0 (compatible; VelenPublicWebCrawler/1.0; +https://velen.io)','http://ingivision.com/en/contact-us',404,'GET',NULL,'35.210.231.164'),(52808,'2021-03-20 18:01:03','/complaint0b846/beaa424888.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52809,'2021-03-20 18:02:10','/contrary2a/def126811.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52810,'2021-03-20 18:03:12','/opposing7c1b/afaba132575.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52811,'2021-03-20 18:06:44','/out07/ec160060.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52812,'2021-03-20 18:07:10','/py5f/bc377680.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52813,'2021-03-20 18:07:39','/watersports4d34/aacde438895.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52814,'2021-03-20 18:13:59','/dsc964/bbeae289693.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52815,'2021-03-20 18:14:06','/formulation47c9/dececf310246.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52816,'2021-03-20 18:18:36','/rapidse0a/eadbbc267964.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52817,'2021-03-20 18:20:48','/salmonb7ae/ceafd126285.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52818,'2021-03-20 18:21:07','/wp-content/plugins/wp-engine-module/king.php?clarkefc5/eaeea208033.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52819,'2021-03-20 18:26:37','/frutas-y-verduras/tomate/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.200'),(52820,'2021-03-20 18:34:56','/sidbb/ed51170.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52821,'2021-03-20 18:36:21','/reconciliatione13/aecadb331834.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52822,'2021-03-20 18:38:41','/responseef4e/febde300955.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52823,'2021-03-20 18:39:00','/localities27e5b/aaecd193319.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52824,'2021-03-20 18:44:22','/ssa44/ff55740.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52825,'2021-03-20 18:48:30','/vetee41/fdcacd10096.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52826,'2021-03-20 18:53:07','/moicf/dc419720.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52827,'2021-03-20 18:54:11','/torah080/ffceba234694.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52828,'2021-03-20 18:57:08','/en/2016/05/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.231.113'),(52829,'2021-03-20 19:03:03','/bypass9578a/dcc370257.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52830,'2021-03-20 19:03:17','/ent9a/cc65450.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52831,'2021-03-20 19:04:43','/memorable49172/ecc430727.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52832,'2021-03-20 19:11:16','/gets1ef/aadfaa201684.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52833,'2021-03-20 19:14:14','/frutas-y-verduras/berenjena/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52834,'2021-03-20 19:16:34','/probable8a/fce250461.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52835,'2021-03-20 19:21:46','/wp-content/plugins/backup_index.php','http://ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'13.83.48.35'),(52836,'2021-03-20 19:22:01','/wp-content/plugins/backup_index.php','https://ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'13.83.48.35'),(52837,'2021-03-20 19:31:05','/hj2f/baff13772.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52838,'2021-03-20 19:33:21','/slipknot8553/fdffac430426.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52839,'2021-03-20 19:45:46','/techniquec6d6/dbdca223845.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52840,'2021-03-20 19:46:37','/derivative89/ebbd310442.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52841,'2021-03-20 19:50:37','/par35/ab44220.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52842,'2021-03-20 19:56:01','/reno07d5/faccf387265.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52843,'2021-03-20 19:58:37','/prima13/abeb373502.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52844,'2021-03-20 20:02:25','/probing12/efb273551.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52845,'2021-03-20 20:07:20','/nerdb5/ecda79892.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52846,'2021-03-20 20:11:16','/archive','http://www.ingivision.com','Googlebot/2.1 (+http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52847,'2021-03-20 20:13:10','/fdab2ead/cdfa226138.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52848,'2021-03-20 20:15:24','/tend8d3/aaecc241755.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52849,'2021-03-20 20:22:24','/gis9c/be47820.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52850,'2021-03-20 20:37:14','/argue1c/bc7080.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52851,'2021-03-20 20:38:01','/tn90/ca243040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52852,'2021-03-20 20:49:54','/mediterranean4a/efb308081.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52853,'2021-03-20 20:49:59','/planningf2201/aec440767.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52854,'2021-03-20 20:51:15','/cutie9f/de73040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52855,'2021-03-20 20:51:23','/consultation4f/ae183640.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52856,'2021-03-20 20:55:14','/centres4b0a0/efdad84839.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52857,'2021-03-20 21:01:23','/valuable3b/fc244080.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52858,'2021-03-20 21:16:55','/onlinef0/bb80.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52859,'2021-03-20 21:18:18','/invitationala3/ca115400.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52860,'2021-03-20 21:19:10','/vesselsac3e/cdcbe307465.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52861,'2021-03-20 21:19:29','/ramp51/ab50970.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52862,'2021-03-20 21:24:36','/adaptation8c/ae89670.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52863,'2021-03-20 21:31:05','/plaquea72e/faeee151845.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52864,'2021-03-20 21:34:02','/vpnf8/ba128450.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52865,'2021-03-20 21:34:47','/charsc7/ac79830.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.151.233'),(52866,'2021-03-20 21:36:27','/swallowc45/ebeed171883.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52867,'2021-03-20 21:36:59','/parsing0bd9/fefdd314525.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52868,'2021-03-20 21:37:43','/sgtb5/cad191511.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52869,'2021-03-20 21:40:42','/vg64/ef328980.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52870,'2021-03-20 21:45:47','/ford6a/cae201951.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52871,'2021-03-20 21:46:09','/en/products/index.html','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52872,'2021-03-20 21:52:59','/sgd32/fd276320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52873,'2021-03-20 21:53:46','/vp2c/fb487830.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52874,'2021-03-20 21:56:50','/corsairaa432/ceddb98929.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52875,'2021-03-20 22:00:41','/lipidd8/fbad54812.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52876,'2021-03-20 22:09:29','/navajob9e9/eeaca379595.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52877,'2021-03-20 22:11:54','/bigfe/ab160330.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52878,'2021-03-20 22:13:53','/pct3f00/cfdcdb308806.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52879,'2021-03-20 22:14:43','/kiddingae/dad474981.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52880,'2021-03-20 22:17:42','/scoring082a/bebbab306116.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52881,'2021-03-20 22:22:50','/cruz65/cf6920.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(52882,'2021-03-20 22:28:11','/genresa9/aba346861.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52883,'2021-03-20 22:36:30','/calendar2d/fa160790.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52884,'2021-03-20 22:40:19','/y4f/dfed300382.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52885,'2021-03-20 22:44:08','/ry25/de396490.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52886,'2021-03-20 22:48:49','/chiteddb9/caaad358389.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52887,'2021-03-20 22:50:33','/uhbc/db248660.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.218'),(52888,'2021-03-20 22:54:17','/verdec742/fcbbee468596.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52889,'2021-03-20 22:56:25','/phones9ade/bacfca341196.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52890,'2021-03-20 22:59:14','/ixef/dce227991.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52891,'2021-03-20 23:00:04','/wy9d/de387100.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(52892,'2021-03-20 23:00:35','/depositedfea93/dbc51847.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52893,'2021-03-20 23:04:31','/montha5324/ada260637.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52894,'2021-03-20 23:15:16','/bakersfield40/fda16071.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52895,'2021-03-20 23:16:10','/eng14d/baabd45683.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52896,'2021-03-20 23:22:59','/norms91/decf273482.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52897,'2021-03-20 23:26:25','/investing39/ea484270.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52898,'2021-03-20 23:27:08','/cages4cd47/dfd377837.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52899,'2021-03-20 23:27:38','/dsd4/acf363501.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52900,'2021-03-20 23:27:50','/taiwanb5b0d/fba403517.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52901,'2021-03-20 23:28:23','/k00/fee240381.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52902,'2021-03-20 23:30:30','/con82ca5/fcbcf122529.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52903,'2021-03-20 23:37:06','/pamf2/eb129370.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52904,'2021-03-20 23:37:40','/queer322d8/cdbb334638.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52905,'2021-03-20 23:37:53','/jk89/dc170620.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(52906,'2021-03-20 23:45:11','/introf1/cbb105431.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52907,'2021-03-20 23:47:19','/sba2f/da17880.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52908,'2021-03-20 23:56:47','/ho29/ef245240.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52909,'2021-03-21 00:05:02','/sgtb5/cad431511.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52910,'2021-03-21 00:05:35','/bn44/bcd310571.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(52911,'2021-03-21 00:06:16','/fatd4/df21690.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52912,'2021-03-21 00:13:56','/chaosc600/baaaea286866.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52913,'2021-03-21 00:15:44','/atmd6/fc66400.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52914,'2021-03-21 00:16:39','/frutas-y-verduras/aguacate/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(52915,'2021-03-21 00:16:43','/frutas-y-verduras/aguacates/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(52916,'2021-03-21 00:21:15','/eat5e751/ffdc242728.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52917,'2021-03-21 00:23:11','/preferably191b6/aaaef51749.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52918,'2021-03-21 00:23:52','/abstract571d/effff421475.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52919,'2021-03-21 00:24:31','/ddr35/be187020.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52920,'2021-03-21 00:25:13','/fige7/df23790.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52921,'2021-03-21 00:30:24','/pedalsb4a3c/baea197818.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52922,'2021-03-21 00:31:44','/planets9b644/bffda168379.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52923,'2021-03-21 00:33:54','/ska06/dc196830.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52924,'2021-03-21 00:37:44','/baileydab12/ecb247967.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52925,'2021-03-21 00:44:08','/ho29/ef205240.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52926,'2021-03-21 00:48:16','/burden141/dcbbb146303.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52927,'2021-03-21 00:52:50','/kev61/aa218500.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52928,'2021-03-21 00:54:46','/frauen99e71/fbfdf198699.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52929,'2021-03-21 01:15:20','/separated57827/cff366287.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52930,'2021-03-21 01:16:17','/marinaae/aabe87532.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52931,'2021-03-21 01:18:37','/possessionf1398/cadd326648.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52932,'2021-03-21 01:20:10','/kathyace/eccdcd168294.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52933,'2021-03-21 01:22:53','/vos871ee/edee299558.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52934,'2021-03-21 01:25:01','/automatef4ef8/cbaa36148.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52935,'2021-03-21 01:25:50','/eyes798/baaeeb61714.htm','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','https://search.yahoo.co.jp/',404,'GET',NULL,'211.19.232.36'),(52936,'2021-03-21 01:30:03','/instructorsddf35/ebaea429009.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52937,'2021-03-21 01:30:43','/afl32/be295360.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52938,'2021-03-21 01:34:43','/cancer2c8/caecbb301244.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52939,'2021-03-21 01:40:11','/gope9/df451700.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52940,'2021-03-21 01:45:48','/chefccf/ffdbff306304.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52941,'2021-03-21 01:49:38','/owe04/de233320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(52942,'2021-03-21 01:50:25','/thisc2/bbfd12.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(52943,'2021-03-21 01:53:05','/rl5f8e2/ccd48437.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52944,'2021-03-21 01:59:08','/nih06/ce450930.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52945,'2021-03-21 01:59:52','/xx7e/cf184830.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52946,'2021-03-21 02:02:12','/duncanac6b/aafeba67696.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52947,'2021-03-21 02:02:21','/sophia79e64/ecaa96558.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52948,'2021-03-21 02:06:29','/watkins29/ec196060.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52949,'2021-03-21 02:07:28','/adminer-4.3.0.php','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.3770.100 Safari/537.36',NULL,404,'GET',NULL,'45.88.3.179'),(52950,'2021-03-21 02:07:32','/adminer-4.3.0-en.php','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.3770.100 Safari/537.36',NULL,404,'GET',NULL,'45.88.3.179'),(52951,'2021-03-21 02:07:37','/adminer-4.2.5.php','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/83.0.3770.100 Safari/537.36',NULL,404,'GET',NULL,'45.88.3.179'),(52952,'2021-03-21 02:10:00','/wp-content/plugins/backup_index.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'13.83.48.35'),(52953,'2021-03-21 02:10:12','/wp-content/plugins/backup_index.php','https://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'13.83.48.35'),(52954,'2021-03-21 02:12:02','/shaker8afff/caedb437849.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52955,'2021-03-21 02:18:02','/elk27/fa170490.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52956,'2021-03-21 02:18:34','/gis9c/be47820.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(52957,'2021-03-21 02:18:47','/ida8d/ae73730.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(52958,'2021-03-21 02:19:19','/weighed049/adaea437893.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52959,'2021-03-21 02:20:01','/contentsaf/cef281031.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52960,'2021-03-21 02:20:46','/pounding8010/ecaeff119316.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52961,'2021-03-21 02:23:26','/incident502c/cdabcc224926.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52962,'2021-03-21 02:30:10','/mcac31b4/cbddd276889.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52963,'2021-03-21 02:33:26','/spectral299/fedac170893.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52964,'2021-03-21 02:41:59','/ciao6a/baea367032.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52965,'2021-03-21 02:43:18','/distributing5a/be12660.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52966,'2021-03-21 02:44:30','/jessie83/bfca76712.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52967,'2021-03-21 02:50:31','/grapeb5814/ccdd212278.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52968,'2021-03-21 02:53:22','/mottof41ba/dcadd278119.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52969,'2021-03-21 02:57:42','/lives04/cfe421911.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52970,'2021-03-21 02:58:39','/headache2c75c/ebac251228.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(52971,'2021-03-21 03:00:49','/corrected9cd01/bdfdf68789.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52972,'2021-03-21 03:12:24','/units3bb/cdbbfb441454.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52973,'2021-03-21 03:13:47','/frame365/defcab221784.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52974,'2021-03-21 03:19:22','/fernandez61/db138940.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52975,'2021-03-21 03:30:01','/madagascar138aa/abfa288428.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52976,'2021-03-21 03:34:00','/whena3f39/bcdd200068.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52977,'2021-03-21 03:35:39','/securityef0d3/bedba280299.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52978,'2021-03-21 03:37:35','/consent77c49/dbbdd483569.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52979,'2021-03-21 03:43:24','/rosad921c/aeeec109119.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52980,'2021-03-21 03:43:44','/docs568/bcefb166103.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52981,'2021-03-21 03:52:31','/avi8c/df87250.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(52982,'2021-03-21 03:54:43','/adopting7c1/fcbfb112083.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(52983,'2021-03-21 03:57:07','/desire5875/eceae224015.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(52984,'2021-03-21 04:03:49','/expiration00/ddb169491.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52985,'2021-03-21 04:12:22','/volvoef/adf267891.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52986,'2021-03-21 04:12:54','/rawf44ee/abeba183079.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(52987,'2021-03-21 04:21:48','/orf4a/baf319771.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(52988,'2021-03-21 04:22:30','/lean4f52/aafab108525.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(52989,'2021-03-21 04:23:26','/firewall91/ccda425282.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52990,'2021-03-21 04:28:17','/throwing0f/ff29800.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52991,'2021-03-21 04:29:39','/counts173/ddebda364494.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(52992,'2021-03-21 04:38:06','/mandatory40/ac146240.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(52993,'2021-03-21 04:40:15','/serenitybf/aed173471.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52994,'2021-03-21 04:46:43','/resourcedc5/accbea480804.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52995,'2021-03-21 04:55:34','/operations99/eabb461302.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(52996,'2021-03-21 04:57:28','/informsd06/beeddd19184.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(52997,'2021-03-21 04:58:53','/counterfe40f/aeb362277.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(52998,'2021-03-21 05:02:49','/sewage0ba/abead372953.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(52999,'2021-03-21 05:05:12','/antenna78/bdb205371.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53000,'2021-03-21 05:17:33','/clients68148/bfbcd81889.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53001,'2021-03-21 05:21:00','/figured81/ed429590.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53002,'2021-03-21 05:30:56','/funded9713f/dffff104529.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53003,'2021-03-21 05:37:22','/canyon5c/bcf65561.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53004,'2021-03-21 05:37:43','/hsn51a6c/bfbfb391149.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53005,'2021-03-21 05:39:23','/sdne89c/cdcee198645.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53006,'2021-03-21 05:47:12','/premiums8230b/ecebf151489.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53007,'2021-03-21 05:49:49','/optionf09/beafa341313.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53008,'2021-03-21 05:50:55','/ia29/bffd143472.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53009,'2021-03-21 06:00:39','/sergeantab7c/dbcbb433435.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53010,'2021-03-21 06:00:46','/evan6b45b/dac213117.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53011,'2021-03-21 06:01:18','/gucciae/cdeb70912.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53012,'2021-03-21 06:01:38','/dac2945/daeaaa299896.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53013,'2021-03-21 06:01:53','/silently660e/aecba319505.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53014,'2021-03-21 06:02:02','/snapc2/bcc87321.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53015,'2021-03-21 06:06:56','/comic76c/bdbdbb364214.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53016,'2021-03-21 06:09:13','/centuriesc4805/aedec148439.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53017,'2021-03-21 06:09:48','/elisad64/ececa118293.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53018,'2021-03-21 06:11:20','/cacheb9/fb84120.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53019,'2021-03-21 06:15:32','/getty08b/acbfa112873.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53020,'2021-03-21 06:15:52','/execb800/dbffdf128746.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53021,'2021-03-21 06:16:27','/logical0db/bcbbac185754.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53022,'2021-03-21 06:17:29','/jonasfd1/acbbdb17834.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53023,'2021-03-21 06:29:22','/inflammation807/bffff73853.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53024,'2021-03-21 06:29:44','/apartments2cd4/abdbf202095.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53025,'2021-03-21 06:33:40','/cannon141aa/ecfab169599.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53026,'2021-03-21 06:38:28','/navigated7/ebad204422.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53027,'2021-03-21 06:42:55','/dying1c336/ccaa346628.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53028,'2021-03-21 06:46:42','/wp-signups.php?irqb5/da319330.htm','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','https://www.google.com/',404,'GET',NULL,'150.95.129.59'),(53029,'2021-03-21 06:46:45','/wp-signups.php?irqb5/da319330.htm','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/70.0.3538.110 Safari/537.36','https://www.google.com/',404,'GET',NULL,'150.95.129.59'),(53030,'2021-03-21 06:50:57','/combinesa9cc6/ecd108347.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53031,'2021-03-21 06:59:13','/turbineded65/fcebd393229.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53032,'2021-03-21 07:09:02','/logged69/ecbe222502.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53033,'2021-03-21 07:16:25','/reinforce0b/eda55731.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53034,'2021-03-21 07:21:49','/commerceb13/dbcbcb41924.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53035,'2021-03-21 07:24:24','/ciscod0bb8/efab442838.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53036,'2021-03-21 07:32:11','/aired18/fce376781.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53037,'2021-03-21 07:35:50','/screensavera95a/adfbcf428096.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53038,'2021-03-21 07:38:24','/lindendb26e/edea398438.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53039,'2021-03-21 07:41:06','/coefficient15779/fcfd250838.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53040,'2021-03-21 07:47:33','/youngerce/cacd185422.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53041,'2021-03-21 07:47:52','/sundance8e025/afa372957.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53042,'2021-03-21 07:59:59','/adviseea3a/bcbacf467096.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53043,'2021-03-21 08:03:31','/reason9050/cedbea341246.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53044,'2021-03-21 08:09:20','/buildsa2/defd128522.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53045,'2021-03-21 08:09:51','/ladyboys624/adaaa236333.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53046,'2021-03-21 08:16:56','/wolves5459/cbeaaa73126.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53047,'2021-03-21 08:18:33','/instructea/cae119451.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53048,'2021-03-21 08:20:44','/pictureb7/eaa220631.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53049,'2021-03-21 08:33:56','/joystick680a0/fca299427.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53050,'2021-03-21 08:34:40','/tropical52/caba224362.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53051,'2021-03-21 08:36:19','/kaneebea/eeceb52475.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53052,'2021-03-21 08:46:40','/separator1782/eccbb137765.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53053,'2021-03-21 08:49:48','/spectrum460/aecbe344483.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53054,'2021-03-21 08:51:41','/somewheref9ff/aabbde44726.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53055,'2021-03-21 08:54:21','/european766/eabedb421014.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53056,'2021-03-21 09:06:22','/voicemail2f1/bbefe219683.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(53057,'2021-03-21 09:30:22','/wp-content/wp-1ogin_bak.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'104.131.163.64'),(53058,'2021-03-21 09:31:00','/closer76/aeeb364502.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53059,'2021-03-21 09:31:28','/wp-content/wp-1ogin_bak.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'104.131.163.64'),(53060,'2021-03-21 09:32:37','/bazaar6e/bfbe158682.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53061,'2021-03-21 09:37:57','/introf1/cbb425431.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53062,'2021-03-21 09:38:29','/lightf29/aebcd200613.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53063,'2021-03-21 09:49:39','/rebelef/bb148420.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53064,'2021-03-21 09:51:59','/dick0ebf/bbcbd443045.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53065,'2021-03-21 09:52:48','/orbita6/efb469591.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53066,'2021-03-21 09:53:58','/wp-content/plugins/ioptimizations/bak.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'51.75.209.227'),(53067,'2021-03-21 09:54:00','/wp-content/plugins/ioptimization/bak.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'51.75.209.227'),(53068,'2021-03-21 09:58:57','/swivel97/cf13250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53069,'2021-03-21 10:01:30','/gig5bbf4/fcdd368858.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53070,'2021-03-21 10:01:55','/involvement862/dabac464523.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53071,'2021-03-21 10:08:45','/inland24064/ccc370017.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53072,'2021-03-21 10:10:44','/coaxial8c688/bdf118727.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53073,'2021-03-21 10:14:11','/bloomberg8cd77/beeef368569.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53074,'2021-03-21 10:15:14','/bases53/cdcd306882.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53075,'2021-03-21 10:23:40','/regards98/df85090.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53076,'2021-03-21 10:27:27','/fruits5e/ab167330.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53077,'2021-03-21 10:28:15','/dxb55/dfdcc247713.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53078,'2021-03-21 10:32:34','/tcl37b/eaace14183.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53079,'2021-03-21 10:33:16','/rational93/aaba128052.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53080,'2021-03-21 10:38:41','/small9d/ac240350.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53081,'2021-03-21 10:41:19','/sufficient6ad/ecfecd3614.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53082,'2021-03-21 10:43:04','/butterff0ab/cebae226299.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53083,'2021-03-21 10:46:30','/mediaen/','https://www.ingivision.com','Mozilla/5.0 (compatible; Linux x86_64; Mail.RU_Bot/2.0; +http://go.mail.ru/help/robots)',NULL,404,'GET',NULL,'95.163.255.58'),(53084,'2021-03-21 10:47:12','/feltdcf6/daefad22396.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53085,'2021-03-21 10:48:23','/bk06/ecb47671.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53086,'2021-03-21 10:55:51','/preteenc55c6/ccd33837.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53087,'2021-03-21 10:59:24','/implication48bf/aefcfc457846.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53088,'2021-03-21 11:05:25','/measurable12/cb96570.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53089,'2021-03-21 11:09:44','/bottle08/ea344030.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53090,'2021-03-21 11:13:11','/someday2d6f7/faab433648.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53091,'2021-03-21 11:18:12','/joins29a9/cfacf289385.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53092,'2021-03-21 11:18:49','/mediator38/abcd158882.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53093,'2021-03-21 11:20:15','/authoritye1/ceb361431.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53094,'2021-03-21 11:27:49','/eau2e9f/ebfbf148575.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53095,'2021-03-21 11:28:40','/category/actualidad/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.84'),(53096,'2021-03-21 11:29:13','/frutas-y-verduras/albaricoques/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.86'),(53097,'2021-03-21 11:31:30','/plenty5b0f/dfbde344715.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53098,'2021-03-21 11:33:19','/royal39027/ffaf261808.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53099,'2021-03-21 11:40:34','/gamers3882c/bcc210027.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(53100,'2021-03-21 11:44:59','/precision34186/fbccc144949.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53101,'2021-03-21 11:53:09','/furnitureb2/fde141191.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53102,'2021-03-21 11:53:50','/runtimeca515/faaef469079.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53103,'2021-03-21 11:55:04','/gaps3d/fefe449352.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53104,'2021-03-21 12:00:58','/locee07/cccbca187826.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53105,'2021-03-21 12:03:31','/autonomy04/fe453990.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53106,'2021-03-21 12:04:20','/regulatede0f/fafebe327434.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53107,'2021-03-21 12:09:28','/uptime402a/edbff359435.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53108,'2021-03-21 12:12:44','/bodya8/ee120570.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53109,'2021-03-21 12:27:57','/erectile48/ecb319011.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53110,'2021-03-21 12:29:54','/inventory28/cfc103371.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53111,'2021-03-21 12:33:35','/teaches72/abea9362.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53112,'2021-03-21 12:38:18','/kick12b66/befcb325089.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53113,'2021-03-21 12:39:55','/hormone0d975/afded127239.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53114,'2021-03-21 12:42:12','/secret32/ce402600.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53115,'2021-03-21 12:45:48','/macha10/daadf476703.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53116,'2021-03-21 12:53:56','/compensationb23f5/afbeb283099.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53117,'2021-03-21 12:55:24','/brother20c9f/cbdd202348.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53118,'2021-03-21 12:58:05','/regent9f7/bfbefc435474.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53119,'2021-03-21 13:06:34','/seeker6f8/caceb125173.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53120,'2021-03-21 13:09:46','/desire5875/eceae264015.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53121,'2021-03-21 13:15:38','/lasted790ed/deea274428.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53122,'2021-03-21 13:15:59','/plze6/dfe259651.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53123,'2021-03-21 13:24:04','/chambers444b/dcaeb28055.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53124,'2021-03-21 13:25:34','/connorcac06/cfc58487.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53125,'2021-03-21 13:28:40','/workstationsb1f6/dbdcae52396.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53126,'2021-03-21 13:32:40','/flowerb090/fddea382395.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53127,'2021-03-21 13:33:53','/merchandisecf8/aebbee323654.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53128,'2021-03-21 13:34:36','/givingf0f/fefafc81884.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53129,'2021-03-21 13:44:15','/petersenfa/bf419940.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53130,'2021-03-21 13:44:41','/annotations8982/bffdca17146.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53131,'2021-03-21 13:45:13','/careerc210/bbdcb41125.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53132,'2021-03-21 13:53:00','/eligibility63/effe4512.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53133,'2021-03-21 13:53:45','/bathing47eb/fdada174565.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53134,'2021-03-21 13:55:32','/disappearef/bca192421.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53135,'2021-03-21 14:01:07','/denseb1/ae329770.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53136,'2021-03-21 14:03:06','/nomination1c3/cafbba449154.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53137,'2021-03-21 14:14:06','/collegea96b6/ddcfa460409.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53138,'2021-03-21 14:19:50','/solaracf/dfdbe3633.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53139,'2021-03-21 14:22:34','/conserved17440/cdc394857.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53140,'2021-03-21 14:30:57','/im88/db482170.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53141,'2021-03-21 14:33:13','/sweet7b41/bedfec422466.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53142,'2021-03-21 14:34:04','/gearedf0a/fceed255583.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53143,'2021-03-21 14:35:46','/proudly3b92/debadb209306.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53144,'2021-03-21 14:52:56','/enacted3b/cef90481.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53145,'2021-03-21 14:57:21','/frutas-y-verduras/calabacin/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.85'),(53146,'2021-03-21 14:58:36','/williams47/ddaa322292.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53147,'2021-03-21 15:02:18','/madthumbs84274/ebeda333439.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53148,'2021-03-21 15:02:59','/gd499/dfbbe289273.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53149,'2021-03-21 15:03:32','/frutas-y-verduras/paraguayos/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.84'),(53150,'2021-03-21 15:04:07','/injury8b/fa422620.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53151,'2021-03-21 15:09:57','/deemedc77c/dcfaf86115.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53152,'2021-03-21 15:10:07','/exe9f/dbea94172.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53153,'2021-03-21 15:10:34','/uu365/bdaaea251764.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53154,'2021-03-21 15:27:56','/preserves3e9/dbbebc237754.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53155,'2021-03-21 15:30:42','/combat3178/ecddc184575.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53156,'2021-03-21 15:30:44','/causing5e5/edfbfe45804.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53157,'2021-03-21 15:31:53','/meats466/cfbaef36734.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53158,'2021-03-21 15:35:29','/rack4f/df164680.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53159,'2021-03-21 15:35:42','/nrc84/aea315951.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53160,'2021-03-21 15:36:16','/logging60244/aee426707.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53161,'2021-03-21 15:36:49','/en5e/abdc480862.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53162,'2021-03-21 15:37:03','/triviac5/ba7290.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53163,'2021-03-21 15:37:24','/initiation26/bf131830.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53164,'2021-03-21 15:38:03','/named79/bfe2361.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53165,'2021-03-21 15:38:07','/skinner2e9/fcbaee78074.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53166,'2021-03-21 15:38:10','/dem20/fba108231.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53167,'2021-03-21 15:38:22','/dvrdc/aba411201.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53168,'2021-03-21 15:38:39','/gila2/efcc35482.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53169,'2021-03-21 15:38:56','/kiwi6a/aa316870.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53170,'2021-03-21 15:39:12','/mus46/decd52902.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53171,'2021-03-21 15:39:27','/thec4/abb100001.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53172,'2021-03-21 15:39:47','/mammalian6a444/afedb439289.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53173,'2021-03-21 15:41:04','/trek05/bc405880.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53174,'2021-03-21 15:41:04','/benny1b/edfc475742.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53175,'2021-03-21 15:41:33','/event48a/dcafcc60624.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53176,'2021-03-21 15:43:08','/host712a/fddcdb121656.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53177,'2021-03-21 15:43:10','/mailer0d43f/adfa415498.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53178,'2021-03-21 15:43:12','/garth29/ba56700.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53179,'2021-03-21 15:43:29','/siam6a/bfd58351.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53180,'2021-03-21 15:43:30','/redmondfe/ce475420.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53181,'2021-03-21 15:44:21','/odd95/ecc285451.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53182,'2021-03-21 15:44:34','/pj01/aebd429552.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53183,'2021-03-21 15:44:49','/hidec6/ce322880.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53184,'2021-03-21 15:45:06','/macsbb/faa93741.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53185,'2021-03-21 15:45:13','/bargain0b105/cea123697.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53186,'2021-03-21 15:45:21','/minere5/cd56290.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53187,'2021-03-21 15:45:37','/xxla2/fad236451.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53188,'2021-03-21 15:45:52','/scent74/cee473121.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53189,'2021-03-21 15:45:55','/razrb1/ce191840.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53190,'2021-03-21 15:46:07','/basinsa8d/cacedf319314.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53191,'2021-03-21 15:46:09','/vis0b/cce251601.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53192,'2021-03-21 15:46:25','/happyda/ab21280.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53193,'2021-03-21 15:46:28','/keeps457de/eaeda4909.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53194,'2021-03-21 15:46:42','/rtsca/cdb179411.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53195,'2021-03-21 15:46:57','/afb64/cebb94162.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53196,'2021-03-21 15:47:06','/integerf885/aaeca65295.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53197,'2021-03-21 15:47:13','/dnfa/dadc331882.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53198,'2021-03-21 15:47:29','/rfida1/bd470010.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53199,'2021-03-21 15:47:49','/hv17/fcea237012.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53200,'2021-03-21 15:48:00','/chemicala5a/ffbaf62033.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53201,'2021-03-21 15:48:02','/egoc4/caf172191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53202,'2021-03-21 15:48:52','/trusted82ba9/bef384677.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53203,'2021-03-21 15:49:55','/lionelb2faa/bbdd277238.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53204,'2021-03-21 15:51:36','/boycott5e/cadb136272.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53205,'2021-03-21 15:51:54','/channel9a3/dfcea481193.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53206,'2021-03-21 15:52:29','/pt/nosso-sistema/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(53207,'2021-03-21 15:53:13','/holloway34dd/cedac39645.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53208,'2021-03-21 15:53:23','/lineup8d37/fbdace93766.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53209,'2021-03-21 15:53:51','/clancyef13a/bfbfc17699.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53210,'2021-03-21 15:54:20','/painter9c/ccbc151342.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53211,'2021-03-21 15:55:47','/acred202/bdbac428295.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53212,'2021-03-21 15:56:34','/april63538/aecaf120519.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53213,'2021-03-21 15:56:38','/languages86/cafc362162.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53214,'2021-03-21 15:57:07','/timothya0/ecce427242.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53215,'2021-03-21 15:59:12','/briggs76/afce476472.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53216,'2021-03-21 15:59:26','/rabbitsbfb/eadbed93854.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53217,'2021-03-21 15:59:54','/maternal89/dbfb432452.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53218,'2021-03-21 15:59:57','/weiss72893/bcc114547.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53219,'2021-03-21 16:02:16','/commanda9/fbba161362.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53220,'2021-03-21 16:02:57','/overview0e556/bdc81347.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53221,'2021-03-21 16:03:30','/frutas-y-verduras/paraguayo/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(53222,'2021-03-21 16:03:35','/frutas-y-verduras/paraguayos/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(53223,'2021-03-21 16:05:07','/keeps457de/eaeda224909.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53224,'2021-03-21 16:05:44','/curling59/ecea438572.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53225,'2021-03-21 16:06:21','/priest84253/bccf367708.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53226,'2021-03-21 16:07:18','/rapef18a/fddff381605.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53227,'2021-03-21 16:07:23','/amnestyfc/eacc313192.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53228,'2021-03-21 16:07:59','/ideal2d71b/feccc122979.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53229,'2021-03-21 16:08:23','/null9457f/bcfd382578.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53230,'2021-03-21 16:08:45','/navajob9e9/eeaca219595.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53231,'2021-03-21 16:09:29','/tac1029/ccdefa293356.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53232,'2021-03-21 16:10:34','/summarizecb/dc336650.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53233,'2021-03-21 16:11:11','/dots44139/dddb431408.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53234,'2021-03-21 16:11:27','/realtimeef/ccb114751.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53235,'2021-03-21 16:11:50','/vaughand84/dffab315793.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53236,'2021-03-21 16:12:25','/segmentsef/ecc127831.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53237,'2021-03-21 16:12:33','/plump8c840/bbbef432849.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53238,'2021-03-21 16:12:59','/movablee06db/bee132127.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53239,'2021-03-21 16:14:12','/visadba1/bcabcb303326.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53240,'2021-03-21 16:15:19','/version17/fbfb300292.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53241,'2021-03-21 16:16:05','/notablea2/fff70011.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53242,'2021-03-21 16:16:19','/scalee9b73/fce201777.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53243,'2021-03-21 16:16:53','/linkera19/edcdb459853.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53244,'2021-03-21 16:18:16','/honest7f848/cedb325698.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53245,'2021-03-21 16:18:51','/wallsd63/deeddf484604.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53246,'2021-03-21 16:20:06','/facial885b2/aead405168.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53247,'2021-03-21 16:22:24','/charmed572/ffafed59074.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53248,'2021-03-21 16:25:30','/nominal7a/fedf130132.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53249,'2021-03-21 16:26:00','/george83f97/bcf421177.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53250,'2021-03-21 16:26:09','/cute43e0/ebcefe203996.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53251,'2021-03-21 16:26:32','/sassyce8a/cccfdf319616.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53252,'2021-03-21 16:26:55','/sonsbf8dd/bdcf405028.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53253,'2021-03-21 16:27:18','/until548/decddb400694.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53254,'2021-03-21 16:27:51','/wiselybc80e/ced139697.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53255,'2021-03-21 16:28:57','/nottingham4e/df428400.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53256,'2021-03-21 16:28:58','/leatherc44/fafce221913.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53257,'2021-03-21 16:29:19','/earnest991/bfebb37693.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53258,'2021-03-21 16:29:38','/carvinge584b/bac275667.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53259,'2021-03-21 16:29:49','/spread019f/cadef43125.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53260,'2021-03-21 16:30:22','/pantiead/cdb17561.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53261,'2021-03-21 16:31:03','/nevercf/ba380520.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53262,'2021-03-21 16:31:22','/cjcd506/bbef309468.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53263,'2021-03-21 16:31:48','/leafca172/edefd445029.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53264,'2021-03-21 16:33:37','/burberrydb/eabc377892.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53265,'2021-03-21 16:35:29','/spotting7b/cbed238402.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53266,'2021-03-21 16:37:20','/prescribed7f/eb446360.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53267,'2021-03-21 16:37:55','/hillsidedb/ede479371.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53268,'2021-03-21 16:38:21','/pcos1af2/ebdaaa197556.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53269,'2021-03-21 16:39:19','/belmont35468/eabc72668.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53270,'2021-03-21 16:40:11','/weave88fb/cfdfae137716.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53271,'2021-03-21 16:40:47','/stylusff7a2/fabe86948.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53272,'2021-03-21 16:41:29','/workspace0bb7/ccdbfc74746.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53273,'2021-03-21 16:43:04','/talbot3b95a/dad416517.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53274,'2021-03-21 16:43:30','/comic76c/bdbdbb304214.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53275,'2021-03-21 16:45:35','/demons9d5/fcfda213603.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53276,'2021-03-21 16:47:30','/conducting23c89/cabe7338.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53277,'2021-03-21 16:47:33','/unaware35ed/caebc56485.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53278,'2021-03-21 16:48:16','/alrighte5b/efbcb292293.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53279,'2021-03-21 16:48:23','/inevitableeb/be411810.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53280,'2021-03-21 16:48:29','/dishca851/addfc463469.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53281,'2021-03-21 16:48:34','/meaning98d/ecccac22764.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53282,'2021-03-21 16:48:37','/ligand06e11/ffc79757.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53283,'2021-03-21 16:48:51','/pfizer0b6/ccdbe319773.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53284,'2021-03-21 16:49:36','/drain61879/ecaca308539.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53285,'2021-03-21 16:49:45','/appellantb3/feb150351.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53286,'2021-03-21 16:50:15','/gentleede5/cfdfa408075.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53287,'2021-03-21 16:51:14','/cease5bf/bafcef351444.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53288,'2021-03-21 16:51:40','/uniprotkbdf/dccb183882.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53289,'2021-03-21 16:51:56','/politicianfa/aad415291.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53290,'2021-03-21 16:52:11','/orionb89e0/cbeed152479.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53291,'2021-03-21 16:52:28','/motor5ec82/fbcac61999.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53292,'2021-03-21 16:52:35','/camden67f/fedcca431154.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53293,'2021-03-21 16:53:12','/telecommunications88479/cffc244138.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53294,'2021-03-21 16:53:18','/expiration00/ddb309491.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53295,'2021-03-21 16:53:19','/seeks34e42/acdc486098.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53296,'2021-03-21 16:53:33','/strapon9fc/ecbaf239563.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53297,'2021-03-21 16:53:45','/tanned7b9/fdedb237993.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53298,'2021-03-21 16:53:56','/mimid7d1b/beeae399609.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53299,'2021-03-21 16:54:06','/dislike132ae/dee57397.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53300,'2021-03-21 16:54:15','/stadium1c208/afd185827.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53301,'2021-03-21 16:54:21','/defeat518f/baccc388135.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53302,'2021-03-21 16:54:33','/booba686/aceadd266376.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53303,'2021-03-21 16:54:35','/vanderbilt5e/ba235610.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53304,'2021-03-21 16:55:00','/hornf82/dffaf127283.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53305,'2021-03-21 16:55:36','/jacking4c6ec/fdd79127.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53306,'2021-03-21 16:55:39','/twist62ce/bcfae147835.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53307,'2021-03-21 16:55:54','/hepatitis28/bcfe329322.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53308,'2021-03-21 16:55:55','/whom6244/cadbff462776.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53309,'2021-03-21 16:55:56','/unfortunate66/bc332840.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53310,'2021-03-21 16:56:00','/friedman159/efdcc33393.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53311,'2021-03-21 16:56:21','/yearlyf9a3/ddaca89115.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53312,'2021-03-21 16:56:31','/lens0655/eaefcb303346.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53313,'2021-03-21 16:56:56','/bladderbacae/cfe352317.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53314,'2021-03-21 16:56:58','/batesf6e8/bedaed252566.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53315,'2021-03-21 16:57:00','/annuityc87/edaced14204.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53316,'2021-03-21 16:57:02','/snakesa754f/efef295288.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53317,'2021-03-21 16:57:06','/edmund8a2/bdaafd175214.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53318,'2021-03-21 16:57:15','/bonsaie743a/adfba18249.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53319,'2021-03-21 16:57:28','/trump2d28/cdaab414165.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53320,'2021-03-21 16:57:51','/kidsce78d/bffae280829.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53321,'2021-03-21 16:58:04','/daylightaf/debe131112.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53322,'2021-03-21 16:58:30','/pcos1af2/ebdaaa217556.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53323,'2021-03-21 16:59:24','/theirs5d7/defcba477064.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53324,'2021-03-21 16:59:33','/attend96799/ecc463607.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53325,'2021-03-21 16:59:51','/grid79ca/fabcfa463766.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53326,'2021-03-21 17:00:04','/choice7d771/bedd181178.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53327,'2021-03-21 17:00:11','/greatest09d/cfaaf43023.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53328,'2021-03-21 17:00:13','/detachedca075/cee92087.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53329,'2021-03-21 17:00:15','/weaker1d1/fdabcd216074.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53330,'2021-03-21 17:00:17','/diecast37c/aaaea355123.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53331,'2021-03-21 17:00:24','/columnists97/efdb467262.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53332,'2021-03-21 17:00:26','/stitch19b1/ecabad10006.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53333,'2021-03-21 17:00:28','/midst0f40/abaaad252856.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53334,'2021-03-21 17:00:42','/walked615/cdacdb485784.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53335,'2021-03-21 17:00:43','/either6e7b3/aca380807.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53336,'2021-03-21 17:00:52','/facts3dd9/caadfb162236.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53337,'2021-03-21 17:00:59','/mitchcc6/fcccdc255494.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53338,'2021-03-21 17:01:03','/seemeddd79/edddf283625.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53339,'2021-03-21 17:01:06','/nightlifeb9/ecce128082.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53340,'2021-03-21 17:01:19','/slidee8a/deafdd243394.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53341,'2021-03-21 17:01:29','/beijingc03/cbdde126443.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53342,'2021-03-21 17:01:47','/legislative48/ed23900.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53343,'2021-03-21 17:02:24','/idiotse271b/deeb198318.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53344,'2021-03-21 17:02:40','/brewers79d5/ffdeb77415.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53345,'2021-03-21 17:02:53','/singlea8849/efdc300578.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53346,'2021-03-21 17:03:06','/diffs64be2/bfdfe69059.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53347,'2021-03-21 17:03:19','/lingerie0b7e9/fcf62647.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53348,'2021-03-21 17:03:33','/reform38a7/decda403345.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53349,'2021-03-21 17:03:48','/flatbedaff39/fdb79587.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53350,'2021-03-21 17:04:00','/creepy36885/adc219357.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53351,'2021-03-21 17:04:21','/exam5fc7c/cdfac283919.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53352,'2021-03-21 17:04:28','/frutas-y-verduras/nectarinas/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.84'),(53353,'2021-03-21 17:04:35','/filmmakers9b/dcaf59622.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53354,'2021-03-21 17:04:53','/outpost0a4/efddc338833.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53355,'2021-03-21 17:05:09','/emergenceaa/ccdc192532.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53356,'2021-03-21 17:05:21','/reign04c7/dcfec252555.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53357,'2021-03-21 17:05:41','/costellofbc/dfbde97033.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53358,'2021-03-21 17:05:57','/jimmyac0b/bbeca165065.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53359,'2021-03-21 17:06:15','/tuitionbcb7c/aeeec6249.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53360,'2021-03-21 17:06:30','/blaze6b40/cafdac175546.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53361,'2021-03-21 17:07:56','/adultsc65d/fcceba22426.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53362,'2021-03-21 17:08:09','/cinemasde1d5/fad414537.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53363,'2021-03-21 17:08:11','/pantera37a/ebcac254423.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53364,'2021-03-21 17:08:16','/fullerfc45/effbe211785.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53365,'2021-03-21 17:08:28','/satindf0/eefbbd228334.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53366,'2021-03-21 17:08:44','/glibc009d6/ddffa36039.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53367,'2021-03-21 17:09:13','/hostagea3444/cfe217017.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53368,'2021-03-21 17:09:23','/sanctions76/ffe350321.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53369,'2021-03-21 17:09:36','/starre6c1/eaedd353215.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53370,'2021-03-21 17:09:37','/diagrams7688d/fde30397.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53371,'2021-03-21 17:09:55','/simon9e740/dfcde483719.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53372,'2021-03-21 17:09:56','/simple043/acccd460933.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53373,'2021-03-21 17:10:11','/ripleye5c2/ecabef79576.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53374,'2021-03-21 17:10:18','/chunke863/feadab175846.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53375,'2021-03-21 17:10:26','/seatingb613e/eeb266577.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53376,'2021-03-21 17:10:28','/piecesb1b/afdfa222983.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53377,'2021-03-21 17:10:33','/dresser42e7/daffe99655.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53378,'2021-03-21 17:11:10','/morton9843a/ddad291928.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53379,'2021-03-21 17:12:11','/amberfd47/dfcbee65716.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53380,'2021-03-21 17:12:18','/notablya7/cff432671.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.151.233'),(53381,'2021-03-21 17:12:53','/sonnya8f9/bdcbff237496.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53382,'2021-03-21 17:13:10','/salonsf268/bfaeb412925.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53383,'2021-03-21 17:13:20','/nottingham4e/df188400.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53384,'2021-03-21 17:14:14','/denny58ef/dabed199075.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53385,'2021-03-21 17:14:27','/randall211cb/bcf311947.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53386,'2021-03-21 17:14:45','/parceld12/fbffdf128684.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53387,'2021-03-21 17:14:51','/suddenly73f71/bef105557.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53388,'2021-03-21 17:15:23','/monmouth84/aebe238662.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53389,'2021-03-21 17:15:34','/developers80/cadc183182.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53390,'2021-03-21 17:15:41','/vikingf6e06/dba369927.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53391,'2021-03-21 17:15:53','/unwanted1f2/dfcaa150563.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53392,'2021-03-21 17:16:08','/sings6bbd8/fafab114619.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53393,'2021-03-21 17:16:19','/arbitrarye0/dfaa448512.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53394,'2021-03-21 17:16:23','/us1c38/acada300035.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53395,'2021-03-21 17:16:44','/buy9b/ab120130.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53396,'2021-03-21 17:16:58','/roasted717fb/fdbc234308.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53397,'2021-03-21 17:17:14','/breaks200/ebbbe404343.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53398,'2021-03-21 17:17:29','/coastlinec42/bcdef39763.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53399,'2021-03-21 17:17:34','/explore30aaf/bcfa282508.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53400,'2021-03-21 17:17:37','/benches1b19b/cdac336068.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53401,'2021-03-21 17:17:46','/omaha7cc5/aeadcf26586.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53402,'2021-03-21 17:17:58','/salute5ebf2/bcbb58518.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53403,'2021-03-21 17:18:19','/everyone7eb/febaa401263.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53404,'2021-03-21 17:18:23','/pavilion656/baffee68664.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53405,'2021-03-21 17:18:29','/horoscopeba/ffc452001.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53406,'2021-03-21 17:18:39','/correctiona6/ddcf65072.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53407,'2021-03-21 17:18:50','/women07cdf/bfdf180278.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53408,'2021-03-21 17:19:03','/possiblyd3/dafa383872.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53409,'2021-03-21 17:19:17','/wagonf687/facdf329805.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53410,'2021-03-21 17:19:21','/simulated987/cacab11083.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53411,'2021-03-21 17:19:35','/laptope71/aecdb282503.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53412,'2021-03-21 17:19:36','/donte1228/dafaa483669.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53413,'2021-03-21 17:19:43','/inspired54e/bfafe225553.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53414,'2021-03-21 17:19:45','/reign04c7/dcfec472555.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53415,'2021-03-21 17:20:12','/fist4b7f/ecbbcb127766.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53416,'2021-03-21 17:20:26','/ranging58182/aaf426077.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53417,'2021-03-21 17:20:34','/stakes0ac/fbbac412123.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53418,'2021-03-21 17:20:55','/heaven6754e/bae483687.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53419,'2021-03-21 17:21:13','/theme41e76/dbbc122168.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53420,'2021-03-21 17:21:44','/angular573c3/ffba456198.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53421,'2021-03-21 17:22:04','/proliant28/aafa158342.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53422,'2021-03-21 17:22:13','/imageryebc52/adff470198.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53423,'2021-03-21 17:22:35','/invitationd8/ecfd367232.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53424,'2021-03-21 17:23:22','/inducea7d4c/bfcbf194129.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53425,'2021-03-21 17:23:32','/orphan0b3c/dfebfe459846.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53426,'2021-03-21 17:24:01','/savingscc099/deaf482428.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53427,'2021-03-21 17:24:20','/writerad47a/cbaf322718.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53428,'2021-03-21 17:24:31','/svenska2019/ccade197695.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53429,'2021-03-21 17:24:37','/coastere3a/dcafef95344.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53430,'2021-03-21 17:24:53','/fillerb02/edaecd475874.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53431,'2021-03-21 17:25:01','/wheaton367/bdfefa138844.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53432,'2021-03-21 17:25:11','/auroraba638/feef368018.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53433,'2021-03-21 17:25:53','/throughputb0/abb453201.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53434,'2021-03-21 17:26:40','/cette27bc/ebcda397975.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53435,'2021-03-21 17:26:53','/blanks3ae6/dbeac178035.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53436,'2021-03-21 17:27:08','/wicked251d5/defbb368459.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53437,'2021-03-21 17:27:21','/fonts67fe0/dfded105449.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53438,'2021-03-21 17:27:37','/keypad0432/dbfae156175.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53439,'2021-03-21 17:27:57','/esther47ba/dcddb112715.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53440,'2021-03-21 17:28:24','/smallerd31/acbaf103083.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53441,'2021-03-21 17:28:52','/premium3e9/cbbaa382083.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53442,'2021-03-21 17:29:26','/biene7ed9/ffcec399879.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53443,'2021-03-21 17:29:35','/profitdb9/adfbec222314.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53444,'2021-03-21 17:29:45','/braceleta32d7/cca185787.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53445,'2021-03-21 17:30:05','/later642/ddfdde240944.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53446,'2021-03-21 17:30:36','/herbsbcc2b/ebfef187129.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53447,'2021-03-21 17:31:12','/quantity3b92/ceacfe62126.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53448,'2021-03-21 17:32:12','/refresh247/bbbda229833.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53449,'2021-03-21 17:32:23','/battlefield25/ac167920.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53450,'2021-03-21 17:32:34','/broncos7c3b/faebd75465.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53451,'2021-03-21 17:32:51','/exports7990/abfff126585.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53452,'2021-03-21 17:33:19','/golfers0c8/dcaee279593.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53453,'2021-03-21 17:33:24','/fischer3829/fabcf92405.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53454,'2021-03-21 17:33:34','/expandc6a01/fddda123129.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53455,'2021-03-21 17:34:20','/frutas-y-verduras/naranjas-y-mandarinas/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.85'),(53456,'2021-03-21 17:35:01','/powerseller1b/fd429450.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53457,'2021-03-21 17:35:28','/placebo2e5/cbacd393543.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53458,'2021-03-21 17:38:32','/cruel7303a/ddcbc291289.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53459,'2021-03-21 17:39:51','/presa7cd3/fdbef92709.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53460,'2021-03-21 17:41:49','/iowaf7/aa462500.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53461,'2021-03-21 17:56:07','/stealth450/fbceba292754.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53462,'2021-03-21 18:00:16','/summarizedd9/bd54340.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53463,'2021-03-21 18:00:36','/understanding14/eb101670.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53464,'2021-03-21 18:02:32','/ordination72db/fcdbfd155626.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53465,'2021-03-21 18:06:13','/characterize157/bdbdac17004.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53466,'2021-03-21 18:07:15','/pp06/fc261830.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53467,'2021-03-21 18:10:36','/throwing0f/ff329800.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53468,'2021-03-21 18:10:58','/lionse9798/bebf328038.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53469,'2021-03-21 18:20:10','/owner7b5b2/adacb221409.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53470,'2021-03-21 18:22:07','/stc15da/fedc200788.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53471,'2021-03-21 18:25:18','/competitore0/ffec192862.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53472,'2021-03-21 18:41:17','/unlawful03be/bfdda52565.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53473,'2021-03-21 18:41:41','/greatere8/eb41480.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53474,'2021-03-21 18:47:12','/mythbd6/faafbb148854.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53475,'2021-03-21 18:59:21','/decadec66/cbacf205673.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53476,'2021-03-21 19:02:13','/exc25/debe213022.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53477,'2021-03-21 19:07:15','/colombia860/dceeca425734.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53478,'2021-03-21 19:08:03','/odyssey6a/cec30781.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53479,'2021-03-21 19:08:15','/deutschea3/fbea428532.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53480,'2021-03-21 19:11:10','/seat96/bb22740.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53481,'2021-03-21 19:14:08','/pound43/ea404910.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53482,'2021-03-21 19:15:00','/loversf169/fcabbe46196.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53483,'2021-03-21 19:21:25','/intact66/bca111711.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53484,'2021-03-21 19:21:45','/eat5e751/ffdc122728.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53485,'2021-03-21 19:28:17','/participatesedb/baaeff358454.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53486,'2021-03-21 19:33:46','/abusedb3449/cdf373007.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53487,'2021-03-21 19:37:04','/timesc3/dfda380362.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53488,'2021-03-21 19:37:31','/clothing2c/aa261110.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53489,'2021-03-21 19:40:43','/deputy2f/af484880.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53490,'2021-03-21 19:44:26','/liver32/bcea485362.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53491,'2021-03-21 19:51:10','/stays4d6da/cbdb9418.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53492,'2021-03-21 19:57:11','/ostg65c55/cdcef173189.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53493,'2021-03-21 19:59:16','/surfers7c/ede15201.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53494,'2021-03-21 20:05:33','/latinas3891/cecef325415.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53495,'2021-03-21 20:05:42','/returning48e95/dcb465347.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53496,'2021-03-21 20:07:15','/tested5c809/bfa443397.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53497,'2021-03-21 20:12:07','/cxf6/fd14470.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53498,'2021-03-21 20:12:34','/ip0ce2/bcded21265.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53499,'2021-03-21 20:14:53','/hunger264/bfdbbd289624.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53500,'2021-03-21 20:16:20','/tgd6/efda310052.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53501,'2021-03-21 20:19:51','/relationdb/aaf363391.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53502,'2021-03-21 20:27:49','/burial9c42/feccba231146.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53503,'2021-03-21 20:28:59','/stance2bfd5/bddfc393169.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53504,'2021-03-21 20:29:54','/reflected88/add307481.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53505,'2021-03-21 20:31:05','/contrast76/af123990.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53506,'2021-03-21 20:33:06','/slaves44/addd90542.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53507,'2021-03-21 20:36:33','/bk06/ecb47671.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53508,'2021-03-21 20:40:21','/uninsuredd8/eb477790.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53509,'2021-03-21 20:40:40','/please2b24/bcebe440145.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53510,'2021-03-21 20:41:01','/countryf8c1/bcadeb120396.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53511,'2021-03-21 20:55:55','/frutas-y-verduras/pepino/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.85'),(53512,'2021-03-21 21:01:21','/artebb2/fbcdac356054.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53513,'2021-03-21 21:02:59','/defendingbf3/bcddd251853.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53514,'2021-03-21 21:05:05','/hometown4dcfb/dfefc469699.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53515,'2021-03-21 21:06:23','/edmund8a2/bdaafd155214.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53516,'2021-03-21 21:07:42','/lane512/dfbdbf243094.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53517,'2021-03-21 21:16:24','/pst02f03/abe261707.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53518,'2021-03-21 21:26:06','/refinance38/ccc405551.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53519,'2021-03-21 21:27:13','/reproduced36ab6/bbff26368.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53520,'2021-03-21 21:32:53','/grew07/fdd185871.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53521,'2021-03-21 21:35:51','/generals99e9/bcfdac296646.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53522,'2021-03-21 21:40:10','/vines003/eefea57793.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53523,'2021-03-21 21:50:07','/uploaded16980/caabb367049.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53524,'2021-03-21 21:50:33','/disturbedfb03a/fbdbd187759.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(53525,'2021-03-21 21:50:58','/representationse7/eca28341.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53526,'2021-03-21 21:51:17','/circuit25ef0/ecbe2898.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53527,'2021-03-21 21:58:29','/lenses764a9/edc365307.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53528,'2021-03-21 22:00:04','/album83fa/dbfdfc241036.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53529,'2021-03-21 22:01:06','/pt/ingivision-estreia-novo-website','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(53530,'2021-03-21 22:01:24','/rub5078/fdcdd292745.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53531,'2021-03-21 22:03:22','/arp1d03/ddffbf119056.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53532,'2021-03-21 22:05:33','/en5e/abdc400862.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53533,'2021-03-21 22:07:42','/spankingf083/cebad344895.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53534,'2021-03-21 22:09:05','/nativeseb/ee277850.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53535,'2021-03-21 22:11:05','/lettering87/eae439331.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53536,'2021-03-21 22:11:29','/secretariat96/eb129380.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53537,'2021-03-21 22:15:33','/ju80/cd155580.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53538,'2021-03-21 22:17:26','/ontario805/eeefba462284.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53539,'2021-03-21 22:18:13','/garfield0d761/ebbeb74899.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53540,'2021-03-21 22:21:26','/bryantce46f/eec29737.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53541,'2021-03-21 22:25:41','/sings6bbd8/fafab434619.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53542,'2021-03-21 22:29:03','/batch0c/fe127410.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53543,'2021-03-21 22:30:31','/freely89/af88160.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53544,'2021-03-21 22:35:22','/probing12/efb273551.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53545,'2021-03-21 22:41:27','/cams09/ad226260.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53546,'2021-03-21 22:44:15','/schedules173f/bebdac45106.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53547,'2021-03-21 22:44:48','/jk89/dc230620.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53548,'2021-03-21 22:45:23','/canadians3c2e5/dbdea70849.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53549,'2021-03-21 22:47:26','/postcode00/decc350522.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53550,'2021-03-21 22:47:47','/eur390/bafba221073.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53551,'2021-03-21 22:48:17','/genius48/cc188200.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53552,'2021-03-21 22:51:09','/arsenal5d69d/eaad91568.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53553,'2021-03-21 22:53:40','/proyectos','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(53554,'2021-03-21 23:12:03','/leafletdc21/feedcf239176.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53555,'2021-03-21 23:13:51','/doc1b/fe82660.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53556,'2021-03-21 23:15:25','/mondo4344/fbced199575.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53557,'2021-03-21 23:18:16','/eliminates3e/ae234070.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53558,'2021-03-21 23:23:54','/hardbackef12/aeafdb252006.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53559,'2021-03-21 23:29:49','/surveyors79e/bfaec316943.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53560,'2021-03-21 23:31:48','/responsiblea9eb8/fbf201237.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53561,'2021-03-21 23:32:18','/boogie948ba/aace276788.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53562,'2021-03-21 23:32:49','/insightsf18e/aacddc347576.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53563,'2021-03-21 23:34:29','/jukeboxc5/acdd154592.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53564,'2021-03-21 23:41:01','/manson26/bdf233961.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53565,'2021-03-21 23:44:16','/franz6a/adb191051.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53566,'2021-03-21 23:44:29','/jonesdf4fe/adb122057.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53567,'2021-03-21 23:59:01','/crisp1f4/cdddb251793.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53568,'2021-03-22 00:03:45','/prominenta88/acedb188513.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53569,'2021-03-22 00:05:05','/wicked251d5/defbb208459.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53570,'2021-03-22 00:05:25','/campuses552d2/aeda132858.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53571,'2021-03-22 00:06:41','/admittedb6f97/ffbed446819.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53572,'2021-03-22 00:09:04','/ord6819/ebdae174585.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53573,'2021-03-22 00:20:16','/integerf885/aaeca5295.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53574,'2021-03-22 00:21:20','/en/blog-2/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(53575,'2021-03-22 00:26:27','/releases144a/dabcff41206.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53576,'2021-03-22 00:28:22','/inicia%C3%A7%C3%A3o-p-198.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,'144.76.29.148'),(53577,'2021-03-22 00:28:26','/inicia%C3%A7%C3%A3o-p-198.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; MJ12bot/v1.4.8; http://mj12bot.com/)',NULL,404,'GET',NULL,'144.76.29.148'),(53578,'2021-03-22 00:28:31','/secure6f/eb261300.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53579,'2021-03-22 00:28:51','/maritalb4/fc171230.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53580,'2021-03-22 00:30:37','/dq75/fe338020.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53581,'2021-03-22 00:36:40','/amd1f/ad244990.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53582,'2021-03-22 00:37:05','/bartlett734/ebdad354103.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53583,'2021-03-22 00:37:42','/dateec/caea180102.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53584,'2021-03-22 00:43:02','/quizzes3d9f8/cfefd308369.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53585,'2021-03-22 00:43:31','/muscle90/fad383591.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53586,'2021-03-22 00:44:34','/signsd9fc0/daf122497.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53587,'2021-03-22 00:48:42','/gradual3c/ebdf476742.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53588,'2021-03-22 00:49:02','/jena5764/afa391897.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53589,'2021-03-22 00:52:36','/fusion4c/df85810.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53590,'2021-03-22 00:53:29','/en/projects/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(53591,'2021-03-22 00:53:35','/orlando6d/bc322970.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53592,'2021-03-22 00:59:57','/ti4c/ab306040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53593,'2021-03-22 01:01:42','/interpretedf3/aaeb229432.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53594,'2021-03-22 01:05:18','/ranges198d/afeaab46456.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53595,'2021-03-22 01:15:27','/meditationc81e/befede188236.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53596,'2021-03-22 01:18:27','/unconscious521e/bedcfe296926.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53597,'2021-03-22 01:18:46','/operates20d/aaebea87114.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53598,'2021-03-22 01:27:09','/britannica7e/aeab487672.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53599,'2021-03-22 01:27:40','/articulatecb/cdc298871.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53600,'2021-03-22 01:27:59','/elderly64a4/cffccf406976.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53601,'2021-03-22 01:28:28','/wp-content/uploads/2016/06/Logo-color-ingivision.png','https://www.ingivision.com','Googlebot-Image/1.0',NULL,404,'GET',NULL,'66.249.64.84'),(53602,'2021-03-22 01:29:27','/basicsb7/eeca345302.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53603,'2021-03-22 01:32:59','/images7f5d0/dbe40687.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53604,'2021-03-22 01:33:04','/cloudybc9c8/edbfa224709.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53605,'2021-03-22 01:41:20','/lake8d/fc200940.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53606,'2021-03-22 01:47:14','/machining20345/adf176127.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53607,'2021-03-22 01:48:06','/attacksc2/cab343651.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53608,'2021-03-22 01:49:05','/conserved17440/cdc314857.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53609,'2021-03-22 01:49:11','/rentals1ee3d/dbefd1319.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53610,'2021-03-22 01:50:34','/spend6271f/aecce2919.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53611,'2021-03-22 01:55:36','/wp-content/plugins/backup_index.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'104.131.173.99'),(53612,'2021-03-22 01:55:52','/analyseec2/ccbdc133073.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53613,'2021-03-22 01:56:39','/wp-content/plugins/backup_index.php','https://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'104.131.173.99'),(53614,'2021-03-22 01:57:33','/appropriate45/acdf281152.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53615,'2021-03-22 02:04:05','/nz995f5/bdc424467.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53616,'2021-03-22 02:08:38','/sh48/fe65250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(53617,'2021-03-22 02:09:10','/participation2e/cfae122802.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53618,'2021-03-22 02:15:55','/weir35/acd139461.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53619,'2021-03-22 02:15:55','/cumshotdd/cbe484231.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53620,'2021-03-22 02:19:54','/resolveab/efb85981.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53621,'2021-03-22 02:23:50','/aura8914f/adcdc96299.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53622,'2021-03-22 02:23:55','/newest170/efbace123084.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53623,'2021-03-22 02:25:09','/bahrain1b/ff428120.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53624,'2021-03-22 02:25:39','/crmab/cd64930.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53625,'2021-03-22 02:29:46','/work3def/cafef125.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53626,'2021-03-22 02:33:03','/fx89/edfe6292.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53627,'2021-03-22 02:34:52','/mcac31b4/cbddd36889.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53628,'2021-03-22 02:39:41','/chiccea0/abfcdf292096.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53629,'2021-03-22 02:44:04','/frutas-y-verduras/sandia/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(53630,'2021-03-22 02:45:17','/auditionsb66/cdaea337143.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53631,'2021-03-22 02:54:12','/ti4c/ab146040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53632,'2021-03-22 02:55:02','/sortsbac4c/eac8907.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53633,'2021-03-22 02:56:03','/flap254/bcffe454613.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53634,'2021-03-22 02:56:21','/narratorc7/dfdb219362.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53635,'2021-03-22 02:57:05','/pieceeb/ffba481852.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53636,'2021-03-22 02:57:27','/workerf167/efbba164335.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53637,'2021-03-22 03:06:16','/seedfbf/abbaa244013.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53638,'2021-03-22 03:08:21','/jc7a/da247190.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53639,'2021-03-22 03:14:01','/screensaversbd/ffb428131.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53640,'2021-03-22 03:14:41','/successesc305a/acae392308.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53641,'2021-03-22 03:17:49','/reserve2b8eb/eecc362268.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53642,'2021-03-22 03:18:41','/roic9/bebf130822.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53643,'2021-03-22 03:22:54','/ibb2/aa312090.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53644,'2021-03-22 03:29:45','/please2b24/bcebe140145.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53645,'2021-03-22 03:33:26','/bf6c/ca250440.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53646,'2021-03-22 03:35:48','/density1340/ffafa123925.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53647,'2021-03-22 03:35:58','/eia32535/cfcaf338449.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53648,'2021-03-22 03:36:08','/geometryab/ccad227352.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53649,'2021-03-22 03:37:59','/fp69/ca408320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53650,'2021-03-22 03:38:40','/easily36ac8/fbbaa381949.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53651,'2021-03-22 03:44:46','/bidsb2/faca422752.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53652,'2021-03-22 03:46:05','/bakef9b/fbabe131973.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53653,'2021-03-22 03:46:26','/nil4e6/dcaaae49364.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53654,'2021-03-22 03:50:47','/intlfa/bda409901.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53655,'2021-03-22 03:53:12','/ieee23fa7/dbaca265239.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53656,'2021-03-22 04:00:41','/limestonee4495/bec55837.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53657,'2021-03-22 04:05:47','/gangbanga91bc/cfca225838.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53658,'2021-03-22 04:06:55','/ml55/ac383710.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53659,'2021-03-22 04:10:58','/paperwork2b9/abcaed133754.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53660,'2021-03-22 04:16:50','/islamic7828/dbfdbf385236.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53661,'2021-03-22 04:22:48','/leaste7/ea710.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53662,'2021-03-22 04:22:59','/parkerb49/bdfcf105243.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53663,'2021-03-22 04:28:18','/jeanneeef76/cbbbf395249.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53664,'2021-03-22 04:32:38','/parseae/cdd12141.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53665,'2021-03-22 04:34:12','/peoples8a3/dcdcad366444.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53666,'2021-03-22 04:36:25','/uhbc/db428660.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53667,'2021-03-22 04:38:24','/image1429/beefdf40376.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53668,'2021-03-22 04:42:05','/equipd51c/dcbacb471506.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53669,'2021-03-22 04:42:39','/syn550/eeffcb57434.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53670,'2021-03-22 04:47:32','/com20/aecf481112.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53671,'2021-03-22 04:51:03','/k00/fee420381.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53672,'2021-03-22 04:54:22','/provisions1d94/cdcaae22556.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53673,'2021-03-22 05:03:42','/house9fd81/dde180297.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53674,'2021-03-22 05:05:14','/c43/dcb400081.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53675,'2021-03-22 05:06:11','/suzanne9a/ffe271921.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53676,'2021-03-22 05:12:38','/spa4e/ad62510.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53677,'2021-03-22 05:17:29','/britannica7e/aeab7672.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53678,'2021-03-22 05:21:39','/locus4f/ff253800.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53679,'2021-03-22 05:22:40','/mandatec9/babe249882.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53680,'2021-03-22 05:29:07','/postings92b/bdbecd68534.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53681,'2021-03-22 05:30:43','/TRUEe0/dee831.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53682,'2021-03-22 05:32:09','/buttons9f1f/bfbbe64525.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53683,'2021-03-22 05:34:32','/haltdf566/fffed113959.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53684,'2021-03-22 05:35:20','/advocates7520/aedde70145.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53685,'2021-03-22 05:37:41','/colts63/fec37071.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53686,'2021-03-22 05:41:40','/relaxed2132/cbefe90615.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53687,'2021-03-22 05:42:24','/va08/aa422000.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53688,'2021-03-22 05:52:10','/repetitivea9fd6/aefd74938.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53689,'2021-03-22 05:53:43','/elliota97e/cdcdad13216.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53690,'2021-03-22 05:56:27','/leap9a5b/eecde350365.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53691,'2021-03-22 05:59:44','/finland09e76/fdaec24189.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53692,'2021-03-22 06:05:50','/undergraduate0b2/cbeab44573.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53693,'2021-03-22 06:07:16','/appropriated67/cb176000.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53694,'2021-03-22 06:13:51','/amd1f/ad364990.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53695,'2021-03-22 06:14:13','/moments78/bef185331.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53696,'2021-03-22 06:14:49','/decreasing9d/fa112520.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53697,'2021-03-22 06:21:34','/tn90/ca423040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53698,'2021-03-22 06:22:13','/acclaim78/bfff178782.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53699,'2021-03-22 06:25:33','/sr14/add84301.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53700,'2021-03-22 06:28:33','/purchases1e51/daedb264625.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53701,'2021-03-22 06:33:20','/wasted52/bacd292442.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53702,'2021-03-22 06:35:39','/scholastic927/abecd96633.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53703,'2021-03-22 06:38:16','/piedmont7347/ebdbc479135.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53704,'2021-03-22 06:39:26','/dead01/cc1700.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53705,'2021-03-22 06:40:21','/ball7302e/dcc361887.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53706,'2021-03-22 06:42:10','/unusualc6/eff325261.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53707,'2021-03-22 06:51:52','/barrels24e/bbfdb414823.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53708,'2021-03-22 06:57:05','/matte272/bfdce74073.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53709,'2021-03-22 07:01:04','/develops95/cdc88961.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53710,'2021-03-22 07:02:06','/csv61/fa18760.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53711,'2021-03-22 07:04:14','/wateringff35/dfbbc17275.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53712,'2021-03-22 07:04:18','/bananac4ede/bae29397.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53713,'2021-03-22 07:11:32','/rotaryd6428/eaa69157.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53714,'2021-03-22 07:13:07','/ga44/ff202120.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53715,'2021-03-22 07:16:46','/aj38/bc407740.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53716,'2021-03-22 07:17:04','/bears36/fc423320.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53717,'2021-03-22 07:18:07','/freshe0a2/dfaad182085.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53718,'2021-03-22 07:21:43','/evolution411/bfcef23013.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53719,'2021-03-22 07:24:30','/horror51/ec264260.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53720,'2021-03-22 07:27:34','/glyac/ae15330.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53721,'2021-03-22 07:28:08','/uzbekistan190/dafaff308434.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53722,'2021-03-22 07:28:25','/sherwooddd4e/acffc255355.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53723,'2021-03-22 07:31:24','/cwe3/ab189560.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53724,'2021-03-22 07:35:17','/kits8d30a/fdda383188.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53725,'2021-03-22 07:38:41','/tb6e/bbef8042.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53726,'2021-03-22 07:39:47','/def2b/ff184380.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53727,'2021-03-22 07:40:06','/bangor94/cad157041.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53728,'2021-03-22 07:43:27','/opus601c/efaddd178576.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53729,'2021-03-22 07:51:46','/baindex.php','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','ingivision.com',404,'GET',NULL,'128.199.200.213'),(53730,'2021-03-22 07:55:16','/inmatesbd2de/cbcaf15119.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53731,'2021-03-22 07:56:28','/retire133a1/abcea232529.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53732,'2021-03-22 08:12:30','/certified5938/ebaaae342216.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53733,'2021-03-22 08:15:42','/plymouth14/efbe207002.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53734,'2021-03-22 08:18:55','/blk78/cf50680.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53735,'2021-03-22 08:19:39','/realised31ab/cdbecc393596.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53736,'2021-03-22 08:24:57','/disadvantages1cd45/acf93457.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53737,'2021-03-22 08:26:54','/crackers4d0ac/ebf18927.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53738,'2021-03-22 08:29:03','/alongside0a5/cedffb210404.htm','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',NULL,404,'GET',NULL,'54.244.78.189'),(53739,'2021-03-22 08:30:12','/waterproof45ec/ffdacb449326.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53740,'2021-03-22 08:48:40','/seville02c98/fbfcb238839.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53741,'2021-03-22 08:50:44','/pt/ingivision-pt/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(53742,'2021-03-22 08:52:16','/bisb5f30/afdfd193659.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53743,'2021-03-22 08:54:13','/dreamcast5f9/bffafd151634.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53744,'2021-03-22 08:56:13','/motors4fb/acfdb404923.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53745,'2021-03-22 09:02:50','/plenary17894/faa275887.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53746,'2021-03-22 09:11:29','/plumbing8f/cdcc127372.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53747,'2021-03-22 09:16:51','/basinsa8d/cacedf339314.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53748,'2021-03-22 09:17:09','/tief2708/dfd164607.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53749,'2021-03-22 09:25:45','/frutas-y-verduras/','https://www.ingivision.com','Mozilla/5.0 (compatible; SeznamBot/3.2; +http://napoveda.seznam.cz/en/seznambot-intro/)',NULL,404,'GET',NULL,'77.75.78.169'),(53750,'2021-03-22 09:26:08','/frutas-y-verduras/sandia/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.86'),(53751,'2021-03-22 09:40:29','/thongc5/caf107461.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53752,'2021-03-22 09:41:18','/exposed8b1/baeebc52366.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53753,'2021-03-22 09:44:51','/storesshop0d55/efdeca170446.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53754,'2021-03-22 09:46:11','/competencef365/dbebee330206.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53755,'2021-03-22 09:50:41','/exempt2b763/fef187347.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53756,'2021-03-22 09:51:28','/mostec5de/aee200127.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53757,'2021-03-22 09:54:59','/employs0c/dbe433921.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53758,'2021-03-22 10:04:04','/desires30/edfa331002.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53759,'2021-03-22 10:04:52','/frutas-y-verduras/higos/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(53760,'2021-03-22 10:08:33','/boldc381/efeba103945.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53761,'2021-03-22 10:09:52','/yrb5/afe265351.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53762,'2021-03-22 10:13:28','/catalogs5e08/ceffab228366.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53763,'2021-03-22 10:22:25','/jihad9a/adc457281.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53764,'2021-03-22 10:27:34','/ems6bd29/cbab90418.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53765,'2021-03-22 10:29:54','/keeps457de/eaeda164909.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53766,'2021-03-22 10:31:09','/taxpayer451/beaeaa170734.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53767,'2021-03-22 10:41:14','/dragonfly20/bddc475842.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53768,'2021-03-22 10:41:18','/conventions1f/cef168311.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53769,'2021-03-22 10:41:52','/optimization672d/abdcfb284336.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53770,'2021-03-22 10:47:41','/kick12b66/befcb305089.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53771,'2021-03-22 10:47:48','/denon2f/afea357332.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53772,'2021-03-22 10:50:31','/menusac/ae367120.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53773,'2021-03-22 10:51:34','/bringa424/cddfd141425.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53774,'2021-03-22 10:52:40','/indianapolis81/bbc305761.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53775,'2021-03-22 10:53:27','/afghan9d0/cbeab212413.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53776,'2021-03-22 10:55:22','/conformity607f1/caaff114659.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53777,'2021-03-22 10:55:59','/disks172fd/aaa188507.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53778,'2021-03-22 11:01:15','/accreditatione6/ebda388232.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53779,'2021-03-22 11:02:30','/organize8b/bdd407411.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53780,'2021-03-22 11:06:12','/detected8e/dec45781.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53781,'2021-03-22 11:08:12','/britannica7e/aeab407672.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53782,'2021-03-22 11:11:06','/undercf/ad300190.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53783,'2021-03-22 11:12:27','/um67ba0/cabbe406189.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53784,'2021-03-22 11:13:38','/translator0bdf2/ecde49948.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53785,'2021-03-22 11:14:23','/stephanae4f/feeed159665.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53786,'2021-03-22 11:15:54','/upload7f/deef123842.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53787,'2021-03-22 11:23:19','/libstdcbba6b/dabce378359.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53788,'2021-03-22 11:28:43','/hhsc3/baa18901.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53789,'2021-03-22 11:37:48','/sj5e9/eebcd90463.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53790,'2021-03-22 11:41:05','/tailed63/fcb178191.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53791,'2021-03-22 11:43:20','/retailer29586/ceb26107.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53792,'2021-03-22 11:43:55','/adipexf841/cdbcad87526.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53793,'2021-03-22 11:45:33','/ode72/bac339721.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53794,'2021-03-22 11:47:09','/youths44/eb397930.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53795,'2021-03-22 11:50:48','/integral42299/bbcea286779.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53796,'2021-03-22 11:55:53','/parkwayd5a/ecdece431054.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53797,'2021-03-22 11:58:01','/elective33/fef191281.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53798,'2021-03-22 11:59:57','/motley4a/ebf277421.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53799,'2021-03-22 12:01:33','/electra1f/cc397410.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53800,'2021-03-22 12:09:54','/hedge82e9/edcee451515.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53801,'2021-03-22 12:10:10','/whena3f39/bcdd200068.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53802,'2021-03-22 12:11:10','/motelf740c/dfec146598.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53803,'2021-03-22 12:13:08','/accomodationeb1/cffeaa413424.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53804,'2021-03-22 12:17:00','/ra54/be324620.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53805,'2021-03-22 12:17:16','/robot9b/bec85191.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53806,'2021-03-22 12:17:32','/winxp93/edba331792.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53807,'2021-03-22 12:19:21','/scenebb/dcff282712.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53808,'2021-03-22 12:23:58','/payroll782/cdeacc287044.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53809,'2021-03-22 12:33:50','/len60/cab388351.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53810,'2021-03-22 12:42:26','/cheapest8e19a/bbfbf186729.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53811,'2021-03-22 12:51:11','/webere4f3/daedc350485.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53812,'2021-03-22 12:57:13','/porque-ingivision/index.html','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(53813,'2021-03-22 12:57:27','/pensacolae3/abd295311.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53814,'2021-03-22 12:59:24','/frutas-y-verduras/melocoton/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(53815,'2021-03-22 12:59:32','/frutas-y-verduras/melocotones/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(53816,'2021-03-22 12:59:56','/directoryb39/bacfba80344.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53817,'2021-03-22 13:02:40','/cac91c53/cdbcb19419.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53818,'2021-03-22 13:07:06','/fold972/dcfdd166423.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53819,'2021-03-22 13:09:38','/deliveringb0/be267280.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53820,'2021-03-22 13:10:33','/detachedca075/cee172087.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53821,'2021-03-22 13:11:26','/satirea0057/edeaf435969.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53822,'2021-03-22 13:14:36','/synonymscdfe9/effba456189.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53823,'2021-03-22 13:17:27','/scrolling9da3b/dcbeb38089.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53824,'2021-03-22 13:34:44','/bows606f/feaaa138855.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53825,'2021-03-22 13:35:36','/adhere2a/fea394841.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53826,'2021-03-22 13:43:08','/museums25dae/dfae205718.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53827,'2021-03-22 13:45:00','/frutas-y-verduras/aguacate/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53828,'2021-03-22 13:45:40','/unlawful03be/bfdda292565.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53829,'2021-03-22 13:46:17','/southernc5/fbf421601.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53830,'2021-03-22 13:48:03','/sst33e9/befba219835.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53831,'2021-03-22 13:48:52','/outbound7b1/abdad478493.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53832,'2021-03-22 14:02:31','/lower4da/aedeca401104.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53833,'2021-03-22 14:05:17','/wp-content/themes/ingivi/font/revicons90c6.eot?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','https://www.ingivision.com/',404,'GET',NULL,'195.121.71.38'),(53834,'2021-03-22 14:05:18','/wp-content/themes/ingivi/font/revicons90c6.woff?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','https://www.ingivision.com/',404,'GET',NULL,'195.121.71.38'),(53835,'2021-03-22 14:05:19','/wp-content/themes/ingivi/font/revicons90c6.ttf?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; Trident/7.0; rv:11.0) like Gecko','https://www.ingivision.com/',404,'GET',NULL,'195.121.71.38'),(53836,'2021-03-22 14:05:59','/data/admin/allowurl.txt','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64; rv:48.0) Gecko/20100101 Firefox/48.0',NULL,404,'GET',NULL,'39.103.181.213'),(53837,'2021-03-22 14:11:23','/ucd5e70/faff27418.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53838,'2021-03-22 14:13:36','/freshmanbd213/cacd10258.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53839,'2021-03-22 14:15:58','/randomly00/dd111860.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53840,'2021-03-22 14:21:28','/buckaf94/dfbdc148285.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53841,'2021-03-22 14:24:49','/threesomes84/cfa132631.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53842,'2021-03-22 14:29:21','/josee2e/bdacfe263634.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53843,'2021-03-22 14:36:32','/referralse572/fddee168895.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53844,'2021-03-22 14:43:28','/authors020c8/fcafb361559.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53845,'2021-03-22 14:51:33','/honorable420c8/cfede72949.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53846,'2021-03-22 14:51:37','/brokerage54e0/abcbc71415.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53847,'2021-03-22 14:52:49','/fragmentsac6/cbfcdc91194.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53848,'2021-03-22 14:58:18','/apostle8c1dc/daebb78749.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53849,'2021-03-22 14:58:20','/entrance246a3/bef485207.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53850,'2021-03-22 15:19:34','/checkerffe/eaefae392394.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53851,'2021-03-22 15:31:15','/turin03/adbe258722.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53852,'2021-03-22 15:33:13','/society60/aef20711.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53853,'2021-03-22 15:36:20','/paginadbf1/fdbad252835.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53854,'2021-03-22 15:38:31','/genetic3c7/adbeee444344.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53855,'2021-03-22 15:39:39','/medical5b/cac200501.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53856,'2021-03-22 15:39:58','/senate81b0/dfefe122345.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53857,'2021-03-22 15:45:26','/tickboxes2a/bfd177931.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53858,'2021-03-22 15:53:20','/west550/aebbcc220444.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53859,'2021-03-22 15:56:21','/pourcb/ffa44561.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53860,'2021-03-22 15:59:38','/iriver474/feabd177343.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53861,'2021-03-22 16:00:44','/frutas-y-verduras/manzanas','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.151.233'),(53862,'2021-03-22 16:06:54','/relaxation36a77/dae409757.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53863,'2021-03-22 16:07:39','/mls50/edd487131.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53864,'2021-03-22 16:08:55','/enormousaf/cab8121.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53865,'2021-03-22 16:09:34','/not70efd/ddf440017.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53866,'2021-03-22 16:10:53','/synthetic9f564/dfbb207828.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53867,'2021-03-22 16:23:12','/messaging41/bf425530.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53868,'2021-03-22 16:36:11','/mixer6948/dbdddf29406.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53869,'2021-03-22 16:37:22','/progaed8/eacbdb352886.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53870,'2021-03-22 16:39:46','/slipknot8553/fdffac430426.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53871,'2021-03-22 16:44:33','/departmentd34ab/bed180377.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53872,'2021-03-22 16:50:50','/barber09/bf351180.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53873,'2021-03-22 17:10:06','/leonardo3a/edef255462.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53874,'2021-03-22 17:10:55','/translate63eb/ddeeae45846.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53875,'2021-03-22 17:19:57','/earlierf7e/adaddd362364.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53876,'2021-03-22 17:20:15','/wp-content/uploads/2016/06/Logo-color-ingivision.png','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(53877,'2021-03-22 17:20:35','/braceletscecd8/aad128187.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53878,'2021-03-22 17:23:11','/barley5c/dea255641.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53879,'2021-03-22 17:40:07','/magna1501c/ebcaa16259.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53880,'2021-03-22 17:42:27','/plastic74/ebea462272.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53881,'2021-03-22 17:45:11','/addsf5/eef264591.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53882,'2021-03-22 17:45:30','/travelersabc99/dfcf467068.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53883,'2021-03-22 17:46:28','/fog441/aacef268103.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53884,'2021-03-22 17:49:49','/femmecf/decc235292.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53885,'2021-03-22 17:52:18','/goodbyeac1/bcfdc130323.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53886,'2021-03-22 17:52:37','/veteransa89b/eebeee285456.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53887,'2021-03-22 18:01:46','/flags286/dacbea64594.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53888,'2021-03-22 18:15:01','/ministersfe5e/feaffa307196.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53889,'2021-03-22 18:17:45','/water2f2/fffbee120334.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(53890,'2021-03-22 18:20:04','/accordingb9d48/cafa381108.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53891,'2021-03-22 18:20:38','/particles4e/fb266980.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53892,'2021-03-22 18:23:55','/constantse866/bedabe172776.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53893,'2021-03-22 18:24:23','/en/projects/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.116'),(53894,'2021-03-22 18:25:40','/updated82f2/daacd320725.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53895,'2021-03-22 18:34:01','/skirtse0/bbea249172.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53896,'2021-03-22 18:34:21','/montserratf204a/bdc472697.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53897,'2021-03-22 18:39:50','/retain94c4d/acb6857.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53898,'2021-03-22 18:41:02','/baindex.php','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','ingivision.com',404,'GET',NULL,'50.31.138.167'),(53899,'2021-03-22 18:42:28','/slipknot8553/fdffac430426.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53900,'2021-03-22 18:47:52','/gmbdeee/bebc364838.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53901,'2021-03-22 18:51:01','/wp-content/plugins/backup_index.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'51.81.111.187'),(53902,'2021-03-22 18:51:20','/wp-content/plugins/backup_index.php','https://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'51.81.111.187'),(53903,'2021-03-22 18:51:31','/vwf376/edeaca270156.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53904,'2021-03-22 18:54:18','/tiava3f802/ceca54718.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53905,'2021-03-22 18:55:32','/noticias','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(53906,'2021-03-22 19:07:01','/coatingsbd/be232700.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53907,'2021-03-22 19:13:08','/horror51/ec224260.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53908,'2021-03-22 19:16:26','/pants0b0b0/bbfe24198.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53909,'2021-03-22 19:16:39','/frutas-y-verduras/calabacin','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(53910,'2021-03-22 19:18:01','/selects786/bbadb352903.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53911,'2021-03-22 19:24:27','/cozyf861a/ddfb235998.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53912,'2021-03-22 19:30:33','/combine335cd/fecb425038.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53913,'2021-03-22 19:34:10','/mayo65895/cdbed291559.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(53914,'2021-03-22 19:37:31','/ixef/dce107991.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53915,'2021-03-22 19:37:45','/frutas-y-verduras/cerezas','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(53916,'2021-03-22 19:40:57','/tablewared4/dc437950.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53917,'2021-03-22 19:41:47','/frutas-y-verduras/kiwis/','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','https://online.seranking.com/',404,'GET',NULL,'91.126.97.162'),(53918,'2021-03-22 19:44:17','/frutas-y-verduras/naranjas-y-mandarinas/','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','https://online.seranking.com/',404,'GET',NULL,'91.126.97.162'),(53919,'2021-03-22 19:44:36','/recap65/caac394212.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53920,'2021-03-22 19:45:04','/hydrocodonec2/de28330.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53921,'2021-03-22 19:49:05','/frutas-y-verduras','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(53922,'2021-03-22 19:49:43','/distribution27155/deebe21219.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53923,'2021-03-22 19:55:51','/solidddd9d/cbcce162159.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53924,'2021-03-22 19:57:48','/racese3bc4/dcc106307.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53925,'2021-03-22 19:58:38','/packers30/cc55660.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53926,'2021-03-22 19:59:20','/category/actualidad','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(53927,'2021-03-22 20:14:04','/subscriptionsdc/cbd163851.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53928,'2021-03-22 20:14:56','/chapter2a/ffcb440912.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53929,'2021-03-22 20:16:25','/lestedeb/efeaaa57966.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53930,'2021-03-22 20:18:37','/rawf44ee/abeba423079.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53931,'2021-03-22 20:19:02','/pt/nosso-sistema/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(53932,'2021-03-22 20:20:06','/sessions732/fedaed363504.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53933,'2021-03-22 20:23:00','/fellows8e08/ddbba351495.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53934,'2021-03-22 20:23:42','/euros682/bacead268414.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53935,'2021-03-22 20:26:25','/installed8bdb5/cdcba342459.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(53936,'2021-03-22 20:30:12','/real15/efea420212.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53937,'2021-03-22 20:36:31','/singapore56/acc402821.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(53938,'2021-03-22 20:36:49','/woodsd1/fa184650.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(53939,'2021-03-22 20:38:08','/hardingc0d/bbfbea436684.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(53940,'2021-03-22 20:49:41','/heavily994d/fbebbd247216.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(53941,'2021-03-22 20:52:10','/closing56577/ecdd64038.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(53942,'2021-03-22 20:52:28','/monuments22c/beaef334293.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(53943,'2021-03-22 21:00:03','/embroidery342b/ffecf90015.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(53944,'2021-03-22 21:00:28','/combined7edcc/cbd442667.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53945,'2021-03-22 21:00:51','/douglas53c5/aafde384265.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53946,'2021-03-22 21:01:05','/fellowe546/fefed404245.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53947,'2021-03-22 21:01:45','/vector665d5/cdbed164369.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53948,'2021-03-22 21:02:37','/secular93f/ccbbeb312654.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53949,'2021-03-22 21:03:26','/pot91/be345100.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53950,'2021-03-22 21:03:38','/price38/dbc101.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53951,'2021-03-22 21:03:44','/mbda/deed61472.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53952,'2021-03-22 21:04:01','/sangb6/ca32200.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53953,'2021-03-22 21:04:33','/immune57e5/cfadad407066.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53954,'2021-03-22 21:04:44','/trembl43b9/cadcce84986.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53955,'2021-03-22 21:04:46','/dbde/fea463451.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53956,'2021-03-22 21:04:52','/ug1d/baa412491.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53957,'2021-03-22 21:04:53','/restrictf33/fffabd49424.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53958,'2021-03-22 21:04:58','/sangb6/ca12200.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53959,'2021-03-22 21:05:12','/ui91/aebd68442.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(53960,'2021-03-22 21:05:18','/beanie7af/bbadfe235924.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53961,'2021-03-22 21:05:22','/adv72/ae470770.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53962,'2021-03-22 21:05:34','/rf8c/fce224931.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53963,'2021-03-22 21:05:36','/convection2d/effb178262.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53964,'2021-03-22 21:05:38','/qr6b/dbfd79582.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53965,'2021-03-22 21:05:56','/coll86/ff73200.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53966,'2021-03-22 21:05:57','/mobiles6ca/bcfabe47604.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53967,'2021-03-22 21:06:02','/adjf0/af274300.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53968,'2021-03-22 21:06:16','/prague685bf/abedd26489.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53969,'2021-03-22 21:06:19','/ecsb3/bb397890.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53970,'2021-03-22 21:06:30','/ol70/dbf109041.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53971,'2021-03-22 21:06:53','/sr14/add384301.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53972,'2021-03-22 21:06:57','/sensingcf3/adcedb350584.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53973,'2021-03-22 21:07:03','/brunch7c09/cdbecd476936.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(53974,'2021-03-22 21:07:10','/archive','http://www.ingivision.com','Googlebot/2.1 (+http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53975,'2021-03-22 21:07:16','/eosb6/dc328750.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53976,'2021-03-22 21:07:23','/unwrap356/eddfcd129954.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53977,'2021-03-22 21:07:35','/esther47ba/dcddb152715.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53978,'2021-03-22 21:07:40','/sbjct21/ea9410.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53979,'2021-03-22 21:08:02','/ucla57/fa70710.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53980,'2021-03-22 21:08:10','/melanomae1528/bfd99987.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53981,'2021-03-22 21:08:14','/acp24/af319850.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53982,'2021-03-22 21:08:20','/micc0/eb309310.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53983,'2021-03-22 21:08:26','/edsc2/ec288460.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53984,'2021-03-22 21:08:33','/plateau2a3c5/cecb55538.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53985,'2021-03-22 21:08:43','/lesb0/ad482760.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53986,'2021-03-22 21:08:44','/logging60244/aee286707.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53987,'2021-03-22 21:08:54','/grinf7/ce97170.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53988,'2021-03-22 21:08:58','/sunday4607/dabbf161075.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53989,'2021-03-22 21:09:12','/muze5a/ba68640.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53990,'2021-03-22 21:09:17','/abid0/ccb38231.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53991,'2021-03-22 21:09:18','/ambassador06/dcca408832.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53992,'2021-03-22 21:09:23','/uss23/fa252850.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53993,'2021-03-22 21:09:29','/godc0/df320690.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53994,'2021-03-22 21:09:40','/adjf0/af454300.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53995,'2021-03-22 21:09:48','/hansen82d31/beeaa369469.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53996,'2021-03-22 21:09:52','/owe04/de193320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53997,'2021-03-22 21:09:58','/godc0/df360690.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(53998,'2021-03-22 21:10:04','/coa23/ec475430.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(53999,'2021-03-22 21:10:05','/automatef4ef8/cbaa96148.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54000,'2021-03-22 21:10:21','/tha0e/df213470.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54001,'2021-03-22 21:10:25','/licking44590/dcbe248448.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54002,'2021-03-22 21:10:26','/ug1d/baa212491.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54003,'2021-03-22 21:10:38','/owedc7/fd36330.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54004,'2021-03-22 21:10:44','/rayb0/fb382480.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54005,'2021-03-22 21:10:50','/buy9b/ab320130.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54006,'2021-03-22 21:10:55','/jeux94/dc38920.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54007,'2021-03-22 21:10:57','/standby0390a/fbf453927.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54008,'2021-03-22 21:11:07','/pkg3b/bd330600.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54009,'2021-03-22 21:11:13','/ent9a/cc125450.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54010,'2021-03-22 21:11:18','/iss0c/ae472320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54011,'2021-03-22 21:11:18','/prayingfda6b/adef434328.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54012,'2021-03-22 21:11:27','/happens2151b/aecb23678.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54013,'2021-03-22 21:11:30','/trek05/bc45880.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54014,'2021-03-22 21:11:33','/outreach5a5/afacd486353.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54015,'2021-03-22 21:11:37','/brendan704/eaeaf454483.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54016,'2021-03-22 21:11:40','/amounts04157/bfdaa42699.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54017,'2021-03-22 21:11:43','/wife6a/ff201750.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54018,'2021-03-22 21:11:47','/su13/bfc344261.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54019,'2021-03-22 21:11:47','/amberfd47/dfcbee105716.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54020,'2021-03-22 21:11:59','/valee7/ab12260.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54021,'2021-03-22 21:12:21','/programming10/deb381641.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54022,'2021-03-22 21:12:22','/hn71/efba34952.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54023,'2021-03-22 21:12:27','/wwec7/bc211790.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54024,'2021-03-22 21:12:33','/mil02/fcde8582.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54025,'2021-03-22 21:12:34','/eightya3f/aeddef335774.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54026,'2021-03-22 21:12:39','/doc1b/fe422660.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54027,'2021-03-22 21:12:45','/sas22/db248860.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54028,'2021-03-22 21:12:50','/wwec7/bc151790.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54029,'2021-03-22 21:13:02','/eosb6/dc468750.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54030,'2021-03-22 21:13:08','/sea2a/ba441320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54031,'2021-03-22 21:13:17','/sleep825f/baefc422705.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54032,'2021-03-22 21:13:22','/rustic3b8d8/bccee235519.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54033,'2021-03-22 21:13:42','/wina9/dc161240.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54034,'2021-03-22 21:13:47','/rotate8a70/defbd394225.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54035,'2021-03-22 21:13:48','/tam21/ca176520.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54036,'2021-03-22 21:14:05','/nonbc/cc440380.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54037,'2021-03-22 21:14:11','/mov7c/afe13401.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54038,'2021-03-22 21:14:14','/quickly84ddf/efde62018.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54039,'2021-03-22 21:14:17','/fee46/fe481630.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54040,'2021-03-22 21:14:23','/mftc3/ca199120.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54041,'2021-03-22 21:14:25','/propecia7be/efbdd109093.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54042,'2021-03-22 21:14:32','/shapiro305a3/def378027.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54043,'2021-03-22 21:14:34','/durablec37f/bbdfc367635.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54044,'2021-03-22 21:14:39','/drawne6615/ebcce444609.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54045,'2021-03-22 21:14:53','/deferred690e6/bad169507.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54046,'2021-03-22 21:15:04','/wichita8cc0/ecfdf207645.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54047,'2021-03-22 21:15:09','/ric5a/ae318360.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54048,'2021-03-22 21:15:20','/shuttleb47/adaca127023.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54049,'2021-03-22 21:15:20','/europef9028/dcbf280838.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54050,'2021-03-22 21:15:21','/apsc0/bf133170.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54051,'2021-03-22 21:15:28','/higher9c01/fbddae480976.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54052,'2021-03-22 21:15:32','/ille0/ff364320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54053,'2021-03-22 21:15:36','/aimed2eac/dbbffe486156.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54054,'2021-03-22 21:15:43','/wife6a/ff21750.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54055,'2021-03-22 21:15:49','/wec1/ecd260031.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54056,'2021-03-22 21:15:55','/duned4/ad17920.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54057,'2021-03-22 21:16:01','/ford6a/cae1951.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54058,'2021-03-22 21:16:10','/pollutants27/daff253462.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54059,'2021-03-22 21:16:18','/wwec7/bc331790.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54060,'2021-03-22 21:16:24','/phs66/acf54051.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54061,'2021-03-22 21:16:24','/reality415e/eaeca282515.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54062,'2021-03-22 21:16:30','/obj8c/baf48371.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54063,'2021-03-22 21:16:35','/sus72/ba235860.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54064,'2021-03-22 21:16:39','/inception16f/dddac15733.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54065,'2021-03-22 21:16:41','/rid64/eea27381.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54066,'2021-03-22 21:16:44','/boats7c584/bbacc204439.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54067,'2021-03-22 21:16:47','/ean22/ee476790.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54068,'2021-03-22 21:16:50','/misses267/fbdacb373804.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54069,'2021-03-22 21:17:04','/pilots45e7f/cbda110298.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54070,'2021-03-22 21:17:04','/acp24/af159850.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54071,'2021-03-22 21:17:10','/mfc1c/aae96881.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54072,'2021-03-22 21:17:12','/dissertation4f/aa430940.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54073,'2021-03-22 21:17:15','/contestc9f0/fffec23575.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54074,'2021-03-22 21:17:16','/lona1/cf352300.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54075,'2021-03-22 21:17:17','/listing28f/bcbcff340394.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54076,'2021-03-22 21:17:39','/defendant72/cdec345352.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54077,'2021-03-22 21:17:39','/nane4/cb292820.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54078,'2021-03-22 21:17:56','/oc50/eeb147731.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54079,'2021-03-22 21:17:59','/determine07a/bcddcb1914.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54080,'2021-03-22 21:18:02','/bu58/efb310251.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54081,'2021-03-22 21:18:08','/avi8c/df307250.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54082,'2021-03-22 21:18:15','/sg0b/afa166441.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54083,'2021-03-22 21:18:24','/dresser42e7/daffe359655.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54084,'2021-03-22 21:18:49','/harriet54a/baedcb234634.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54085,'2021-03-22 21:18:57','/samba3ebd/ddfeef409096.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54086,'2021-03-22 21:19:10','/bedrooms70afb/dcd204457.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54087,'2021-03-22 21:19:34','/broadband2a/dcce202942.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54088,'2021-03-22 21:19:44','/bbbonline1c9/daecf78453.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54089,'2021-03-22 21:20:33','/expandc6a01/fddda43129.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54090,'2021-03-22 21:20:49','/counterpart36/fe418090.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54091,'2021-03-22 21:21:08','/smiliesf90/bdbcd408813.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54092,'2021-03-22 21:21:50','/inbound275/decbd374713.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54093,'2021-03-22 21:21:57','/conversions5ed17/dccca212869.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54094,'2021-03-22 21:22:19','/tissue4e46/fdadbb24466.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54095,'2021-03-22 21:23:05','/germand63/dcedfa461534.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54096,'2021-03-22 21:23:29','/coaxial8c688/bdf478727.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54097,'2021-03-22 21:24:58','/carver66ad/adfcdc79856.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54098,'2021-03-22 21:26:10','/houstonce6/aaabe322253.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54099,'2021-03-22 21:26:28','/simpsonsd4d8/eeecfe469526.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(54100,'2021-03-22 21:27:07','/harris8710/ffdef444355.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54101,'2021-03-22 21:28:46','/competitive99/ebd343041.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54102,'2021-03-22 21:30:40','/successorac514/efa32997.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54103,'2021-03-22 21:31:12','/quoting8cf/efdce152813.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54104,'2021-03-22 21:31:38','/stickerd88/fdaac268323.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54105,'2021-03-22 21:32:14','/offended22fbc/dfea57678.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54106,'2021-03-22 21:33:20','/upgrades32c47/faa346297.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54107,'2021-03-22 21:33:48','/rockies1bab/deeee315305.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54108,'2021-03-22 21:34:09','/flores5d21/dccaa296995.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54109,'2021-03-22 21:34:21','/koreabd70/deadfd322596.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54110,'2021-03-22 21:34:36','/belongd139d/afac446558.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54111,'2021-03-22 21:35:23','/payable181/deeff185763.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54112,'2021-03-22 21:36:04','/vessel937/aaeddc466814.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.66.220'),(54113,'2021-03-22 21:38:08','/support47d1e/fbcc120148.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54114,'2021-03-22 21:38:32','/eyewear8598/faeaa36065.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54115,'2021-03-22 21:39:27','/downingf0f7/abdae338705.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54116,'2021-03-22 21:39:33','/samplea3fb/aabfc381165.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54117,'2021-03-22 21:40:01','/reachingd4cd9/eed486257.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54118,'2021-03-22 21:40:20','/adhesivefc8/fdeff210643.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54119,'2021-03-22 21:40:26','/suffer2751f/eabd246848.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54120,'2021-03-22 21:41:25','/kingdomdf6d2/abc80987.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54121,'2021-03-22 21:41:38','/frutas-y-verduras/patatas/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(54122,'2021-03-22 21:42:01','/conducta778/efebe422645.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54123,'2021-03-22 21:42:42','/pillarsdfd/fdafc398513.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54124,'2021-03-22 21:42:56','/rt62459/abb244857.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54125,'2021-03-22 21:43:15','/chattanooga66/bbf114551.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54126,'2021-03-22 21:43:29','/cores7b30/aaeaab197606.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54127,'2021-03-22 21:43:44','/besidee320/cbaeca49426.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54128,'2021-03-22 21:43:48','/beauty1e056/efce120918.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54129,'2021-03-22 21:45:00','/purifierb0e9b/bccff78689.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(54130,'2021-03-22 21:45:26','/seo89abe/ddc85777.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54131,'2021-03-22 21:45:56','/remunerationbe/fb255700.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54132,'2021-03-22 21:46:54','/martini1c2b/caffa35335.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54133,'2021-03-22 21:47:12','/disagreementbf/ef138900.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54134,'2021-03-22 21:47:31','/niftyfafb/effeee377616.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54135,'2021-03-22 21:47:59','/theodorea69ce/fcee33148.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54136,'2021-03-22 21:48:14','/plantc88d8/eeeea361549.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54137,'2021-03-22 21:48:25','/machine55b/dcadc101153.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54138,'2021-03-22 21:48:35','/loversf169/fcabbe246196.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54139,'2021-03-22 21:49:04','/coolpixd8b/afccdf153394.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54140,'2021-03-22 21:49:13','/mandated7448b/bebc35008.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54141,'2021-03-22 21:49:23','/refinance38/ccc105551.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54142,'2021-03-22 21:49:24','/exportedefb5/ecbab54445.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54143,'2021-03-22 21:49:46','/draper335/cbbbcf455734.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54144,'2021-03-22 21:50:28','/catchment8e304/cded439678.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54145,'2021-03-22 21:50:51','/chevrolet64e/dadddf5054.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54146,'2021-03-22 21:51:31','/unbiased45d38/dcc331047.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54147,'2021-03-22 21:51:58','/fingersb58f/baacd166405.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54148,'2021-03-22 21:52:05','/updatingabd/aaeff446873.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54149,'2021-03-22 21:52:09','/catholic4da9d/cbbf63618.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54150,'2021-03-22 21:52:19','/ripencca41a6/fddc335648.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54151,'2021-03-22 21:52:40','/macrose4f0/dadfc412655.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54152,'2021-03-22 21:53:03','/clippers110/dbebc319603.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54153,'2021-03-22 21:53:19','/joanne251ea/bcffa74019.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54154,'2021-03-22 21:53:51','/billingaac9/aeccf305035.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54155,'2021-03-22 21:54:03','/obedience335/ebbef55783.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54156,'2021-03-22 21:54:23','/supported07/efad362072.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54157,'2021-03-22 21:54:27','/pictures6855/cdcaaa336.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54158,'2021-03-22 21:54:44','/finger1b33d/dfff364908.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54159,'2021-03-22 21:55:30','/emergesd076/ceeae379165.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54160,'2021-03-22 21:56:12','/irvinge2e2f/eedad371449.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54161,'2021-03-22 21:56:29','/offense380/bedbab227144.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54162,'2021-03-22 21:56:47','/centersccb/dcedde262264.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54163,'2021-03-22 21:57:11','/clicks426e/cbaadd188136.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54164,'2021-03-22 21:57:31','/billingaac9/aeccf445035.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54165,'2021-03-22 21:57:57','/lodging754/bccbea84564.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54166,'2021-03-22 21:58:42','/austrianded08/caff131918.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54167,'2021-03-22 21:58:57','/veteran9a84a/bafb266768.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54168,'2021-03-22 22:00:12','/questb22ed/bad364737.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54169,'2021-03-22 22:00:18','/spell58c2/abdfac266986.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54170,'2021-03-22 22:00:38','/settledd19a0/dea207877.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54171,'2021-03-22 22:01:54','/handlingc5dc3/fff482517.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54172,'2021-03-22 22:01:59','/monetary6084/eefbd206975.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54173,'2021-03-22 22:02:17','/savingscc099/deaf282428.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54174,'2021-03-22 22:03:17','/mention13e3/dadcb23935.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54175,'2021-03-22 22:07:03','/acapulcoe8334/eeec299808.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54176,'2021-03-22 22:07:03','/oversizedaf416/bea37887.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54177,'2021-03-22 22:08:42','/frutas-y-verduras/limones','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(54178,'2021-03-22 22:12:43','/foundation81/de461250.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54179,'2021-03-22 22:14:25','/breathing3c88/dbaed188195.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54180,'2021-03-22 22:16:43','/conceptual2b9bd/eeee49938.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(54181,'2021-03-22 22:18:16','/merlin03/ca435910.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54182,'2021-03-22 22:22:58','/magnet854/ebbbd288263.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54183,'2021-03-22 22:24:02','/krishna075a/cdeffd118596.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54184,'2021-03-22 22:35:21','/probing12/efb273551.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54185,'2021-03-22 22:45:37','/notebooks5ed/accdb384243.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54186,'2021-03-22 22:49:14','/pullsbe8/affaac251854.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(54187,'2021-03-22 22:51:30','/magnitude43/bfc168441.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54188,'2021-03-22 22:51:56','/early19/ddf300801.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54189,'2021-03-22 22:57:28','/realtor90a82/aed88957.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54190,'2021-03-22 22:57:50','/infertilityc6e/beeaeb396434.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54191,'2021-03-22 22:58:10','/demonstrating61cb/fdbfd452955.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54192,'2021-03-22 22:58:49','/opposition6c468/fdcaf265349.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54193,'2021-03-22 23:00:07','/fidelitye395/abece32505.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54194,'2021-03-22 23:00:47','/brewc9/aeac195792.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54195,'2021-03-22 23:09:51','/aqua2f0/dadfef348304.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54196,'2021-03-22 23:12:49','/consistsb035/ddbaee24306.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54197,'2021-03-22 23:21:50','/statewidec923d/defa367308.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54198,'2021-03-22 23:22:12','/abby43738/adbdf157729.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54199,'2021-03-22 23:22:37','/bugd79/fbbbe302043.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54200,'2021-03-22 23:27:22','/publishc2e06/deef244738.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54201,'2021-03-22 23:31:54','/struck31c23/cacfb306999.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(54202,'2021-03-22 23:39:30','/ewfd/bdd11631.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54203,'2021-03-22 23:40:24','/delegation4d8b/aaeba49575.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54204,'2021-03-22 23:44:43','/memorials7d/ed198950.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54205,'2021-03-22 23:48:47','/blog/.env','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54206,'2021-03-22 23:51:07','/frutas-y-verduras/kiwis/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(54207,'2021-03-22 23:51:50','/ppt33278/abf417277.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54208,'2021-03-22 23:52:10','/greenwoodfb5/ebdbd92153.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54209,'2021-03-23 00:10:16','/yrb5/afe65351.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54210,'2021-03-23 00:13:25','/ser2b/da87930.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54211,'2021-03-23 00:16:42','/tastinga3/acd12361.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54212,'2021-03-23 00:22:49','/practitionersf056b/afdcd446939.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54213,'2021-03-23 00:23:34','/gsba/ff406060.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54214,'2021-03-23 00:37:25','/ice7f/ff81960.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54215,'2021-03-23 00:37:45','/nonsense26/ddf212351.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54216,'2021-03-23 00:44:26','/linkind6/fd453440.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54217,'2021-03-23 00:48:29','/listed192fc/cbbb20668.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54218,'2021-03-23 00:49:54','/bib1c/eb56500.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54219,'2021-03-23 00:51:42','/waters64b3e/ead104347.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54220,'2021-03-23 00:54:07','/ibb2/aa472090.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54221,'2021-03-23 00:56:08','/despite39d/abadc22813.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54222,'2021-03-23 01:03:32','/isolateddc/deaf166462.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(54223,'2021-03-23 01:06:40','/ddsc7/cee455191.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54224,'2021-03-23 01:07:19','/sloanc8c/eeddf357333.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54225,'2021-03-23 01:07:42','/glne3/ba37220.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54226,'2021-03-23 01:14:18','/raid9e/aa67170.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54227,'2021-03-23 01:14:31','/cs27/ee223760.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54228,'2021-03-23 01:21:17','/probing12/efb273551.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54229,'2021-03-23 01:30:38','/delegate1b/bcbe351722.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54230,'2021-03-23 01:31:11','/small9d/ac350.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54231,'2021-03-23 01:33:03','/avid5fb3/cadcd252315.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54232,'2021-03-23 01:34:14','/refinancingf2e2/ffcceb110746.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54233,'2021-03-23 01:40:59','/mediaen','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.151.233'),(54234,'2021-03-23 01:43:52','/bon3645/ebefb268335.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54235,'2021-03-23 01:45:23','/pmid6516c/cebce103989.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54236,'2021-03-23 01:48:26','/frutas-y-verduras/calabacin/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(54237,'2021-03-23 01:48:53','/simone07844/eda177597.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54238,'2021-03-23 01:50:25','/london443cb/dedf480648.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54239,'2021-03-23 01:51:49','/reda/bc260120.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54240,'2021-03-23 01:55:15','/tm63/dd223300.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54241,'2021-03-23 02:10:18','/wildd860e/fbdb22028.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54242,'2021-03-23 02:11:18','/protocol86ecf/fea22547.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54243,'2021-03-23 02:12:27','/acceleratord76/afebda352164.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54244,'2021-03-23 02:16:08','/ddr35/be27020.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54245,'2021-03-23 02:16:39','/seen99/dcae81032.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54246,'2021-03-23 02:17:02','/cynthia23/eedf350972.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54247,'2021-03-23 02:20:18','/libstdcbba6b/dabce478359.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(54248,'2021-03-23 02:21:54','/tell084/fcbbb480723.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54249,'2021-03-23 02:22:18','/allocationsf07bd/bdc335157.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54250,'2021-03-23 02:22:39','/retiring44e88/daf279227.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54251,'2021-03-23 02:29:30','/va08/aa322000.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54252,'2021-03-23 02:31:38','/ecommercefd/ac485900.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54253,'2021-03-23 02:32:17','/providersa08/afdfca242084.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54254,'2021-03-23 02:36:16','/mls50/edd47131.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54255,'2021-03-23 02:43:03','/grfb/aa485460.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54256,'2021-03-23 02:43:35','/watkins29/ec156060.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54257,'2021-03-23 02:45:42','/filmmakers9b/dcaf119622.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54258,'2021-03-23 02:46:29','/partitioningc0/daeb419682.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54259,'2021-03-23 02:49:38','/flcec6f/faef181468.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54260,'2021-03-23 02:50:11','/ml55/ac403710.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54261,'2021-03-23 02:56:33','/sv86/dcfc8932.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54262,'2021-03-23 02:59:45','/engineering9f/acc120931.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54263,'2021-03-23 03:03:19','/k00/fee120381.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54264,'2021-03-23 03:06:37','/trivialdcd3/bcefed412556.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54265,'2021-03-23 03:10:51','/ga44/ff182120.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54266,'2021-03-23 03:18:26','/buffers57d21/ddfb95728.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54267,'2021-03-23 03:23:02','/farmingb6/ceeb287402.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54268,'2021-03-23 03:27:39','/ngc0e/ee14740.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54269,'2021-03-23 03:38:09','/gx02a/acbbdf317044.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54270,'2021-03-23 03:41:07','/ope4/be203020.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54271,'2021-03-23 03:42:17','/dildos941/cfaba285913.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54272,'2021-03-23 03:44:13','/ope4/be143020.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54273,'2021-03-23 03:46:35','/skeptical9ba08/baebc78409.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54274,'2021-03-23 03:47:03','/mutation40/eac151521.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54275,'2021-03-23 03:47:42','/visualcc42/cefcc81655.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54276,'2021-03-23 03:52:24','/motor5ec82/fbcac161999.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54277,'2021-03-23 03:55:07','/hed82/cbdae53.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54278,'2021-03-23 04:01:37','/embroidery342b/ffecf270015.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(54279,'2021-03-23 04:01:49','/stilla0/fb390.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54280,'2021-03-23 04:13:19','/human94/ecd60481.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(54281,'2021-03-23 04:14:43','/pot91/be25100.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54282,'2021-03-23 04:15:22','/en/home/ingivision@ingivision.com','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(54283,'2021-03-23 04:16:45','/noxbf31/edbeda379636.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54284,'2021-03-23 04:17:13','/planting57960/afabd210369.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54285,'2021-03-23 04:18:10','/occupations09/def468941.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54286,'2021-03-23 04:19:56','/disclosure2f/cec244541.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54287,'2021-03-23 04:24:00','/en/proyectos/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54288,'2021-03-23 04:27:26','/latentb5/cacf258352.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.231'),(54289,'2021-03-23 04:28:02','/lfe234e/fefdd109359.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54290,'2021-03-23 04:32:58','/wt48/eb369110.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54291,'2021-03-23 04:42:56','/ry25/de476490.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(54292,'2021-03-23 04:44:51','/wacc0590/bbac319238.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54293,'2021-03-23 04:46:38','/toshiba7171e/cfafa183859.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54294,'2021-03-23 04:52:39','/pressed73/fe369620.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.229'),(54295,'2021-03-23 04:53:14','/en/blog-2/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(54296,'2021-03-23 04:54:58','/investorsd278d/bdad284218.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54297,'2021-03-23 04:55:41','/rumorse2/dd232530.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54298,'2021-03-23 04:59:07','/mst48/fc70430.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54299,'2021-03-23 04:59:30','/shortage8805/fafff171775.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54300,'2021-03-23 05:00:15','/hansen82d31/beeaa109469.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54301,'2021-03-23 05:05:14','/verybf8/deffbb360174.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54302,'2021-03-23 05:06:05','/scm23/ec75980.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54303,'2021-03-23 05:18:00','/sittinge8d/febfd43893.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54304,'2021-03-23 05:19:08','/cn2a/fce87841.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54305,'2021-03-23 05:25:52','/ok38/cbf41161.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54306,'2021-03-23 05:26:19','/media','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(54307,'2021-03-23 05:32:12','/utilizes3a3/dbefd36793.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54308,'2021-03-23 05:33:02','/pot91/be85100.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54309,'2021-03-23 05:33:45','/academy4bbd/fccfa282725.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.201'),(54310,'2021-03-23 05:40:05','/rhdf/fa367620.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54311,'2021-03-23 05:45:54','/cagecd/cac268591.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54312,'2021-03-23 05:56:49','/dead01/cc101700.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.81'),(54313,'2021-03-23 05:57:09','/monetary6084/eefbd326975.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.14'),(54314,'2021-03-23 06:00:13','/sdsdb/cc79520.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54315,'2021-03-23 06:06:13','/osteoporosisab/aaec154582.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.65'),(54316,'2021-03-23 06:09:48','/whitman59b1/abfeb195195.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.9'),(54317,'2021-03-23 06:13:25','/im88/db462170.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54318,'2021-03-23 06:13:25','/silicon03/cb126550.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.226'),(54319,'2021-03-23 06:25:17','/ry25/de456490.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.146'),(54320,'2021-03-23 06:27:16','/freea1/cfce60042.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54321,'2021-03-23 06:32:40','/jerseyae614/bafe161688.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54322,'2021-03-23 06:35:33','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36',NULL,404,'GET',NULL,'154.48.235.182'),(54323,'2021-03-23 06:36:03','/chlorided0e/cfffd412473.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54324,'2021-03-23 06:40:22','/ifdef67/bab233661.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54325,'2021-03-23 06:40:47','/tues1e53b/ddf116787.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54326,'2021-03-23 06:45:48','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.3; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.111 Safari/537.36',NULL,404,'GET',NULL,'154.48.235.182'),(54327,'2021-03-23 06:47:13','/xy69/bd435670.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54328,'2021-03-23 06:50:10','/ei73/aa110270.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54329,'2021-03-23 06:51:47','/avery3d/aaf373011.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54330,'2021-03-23 06:54:29','/campaigns5bd8/cccafc446886.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54331,'2021-03-23 06:55:45','/annuityc87/edaced94204.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54332,'2021-03-23 07:00:48','/cpf0/ff484860.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54333,'2021-03-23 07:02:31','/neighbourhooda8a/ebefb212333.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54334,'2021-03-23 07:10:10','/nrc84/aea95951.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54335,'2021-03-23 07:14:22','/ry25/de256490.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54336,'2021-03-23 07:18:34','/pakistancae82/aba303637.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54337,'2021-03-23 07:20:35','/pdbacf1b/deee215558.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54338,'2021-03-23 07:21:08','/uk9c/afc60291.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54339,'2021-03-23 07:27:10','/sampling80f2f/eff185547.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54340,'2021-03-23 07:28:08','/hurry1d4/fdbbc472483.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54341,'2021-03-23 07:29:31','/vicce/caab226442.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54342,'2021-03-23 07:29:52','/oversight067/ecaded310114.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54343,'2021-03-23 07:34:43','/ry25/de456490.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54344,'2021-03-23 07:44:54','/townsf1a/eaffae404984.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54345,'2021-03-23 07:45:11','/protestersb3f9a/cfbcd478939.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.96 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54346,'2021-03-23 07:45:14','/announcef998f/cabed25539.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54347,'2021-03-23 07:52:54','/artifactsb984/edddfd192806.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54348,'2021-03-23 07:55:06','/wwec7/bc91790.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54349,'2021-03-23 07:59:45','/ak3fc/ddcba24943.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'40.77.167.1'),(54350,'2021-03-23 08:02:00','/athlete11/daea330162.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54351,'2021-03-23 08:02:19','/bars577fd/ceedb42689.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54352,'2021-03-23 08:08:39','/ff67/aef63581.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54353,'2021-03-23 08:13:35','/representative02/cb302670.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54354,'2021-03-23 08:18:55','/quarter6cd93/ecdbf322229.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54355,'2021-03-23 08:19:59','/cdrwae204/abdc259648.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54356,'2021-03-23 08:20:45','/xxx464/dcabc21713.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54357,'2021-03-23 08:22:14','/tm63/dd203300.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54358,'2021-03-23 08:25:38','/shop/.env','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54359,'2021-03-23 08:25:43','/vgroup5c/ecfd98872.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54360,'2021-03-23 08:29:50','/fartherf2/dd454790.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(54361,'2021-03-23 08:43:34','/save18/ab100400.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54362,'2021-03-23 08:49:23','/cpt55/de59110.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54363,'2021-03-23 08:50:02','/enough1ce/badfd40963.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54364,'2021-03-23 09:00:19','/utopia8ca/efefaf219324.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54365,'2021-03-23 09:02:40','/differentiationee25f/adfd72348.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54366,'2021-03-23 09:08:01','/wp-content/plugins/backup_index.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'40.76.2.80'),(54367,'2021-03-23 09:08:15','/hq38/ad349090.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(54368,'2021-03-23 09:09:45','/ju80/cd375580.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54369,'2021-03-23 09:23:19','/ac02/bbe42121.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54370,'2021-03-23 09:36:54','/vg64/ef108980.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54371,'2021-03-23 09:45:17','/carpenter8e/db450240.htm','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/72.0.3626.109 Safari/537.36',NULL,404,'GET',NULL,'52.90.29.81'),(54372,'2021-03-23 09:50:14','/watches84c64/eeac121738.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54373,'2021-03-23 09:57:16','/rhdf/fa347620.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54374,'2021-03-23 09:57:36','/wagonf687/facdf329805.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54375,'2021-03-23 09:57:52','/prospect838f1/babbe427939.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54376,'2021-03-23 09:58:25','/restrictionse8aa/dcdaf364345.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54377,'2021-03-23 10:03:48','/adopting7c1/fcbfb372083.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54378,'2021-03-23 10:04:03','/bk06/ecb87671.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54379,'2021-03-23 10:04:57','/mozart0c/fd371390.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54380,'2021-03-23 10:09:24','/cecil6c/bd276300.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54381,'2021-03-23 10:09:41','/weights0d8/acaabb128454.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54382,'2021-03-23 10:11:40','/askb056e/fedad20749.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54383,'2021-03-23 10:12:58','/jerseys97/ae231220.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54384,'2021-03-23 10:14:45','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11','http://ingivision.com/sitemap.xml',404,'GET',NULL,'45.204.12.68'),(54385,'2021-03-23 10:16:10','/hoteleb/baf220211.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54386,'2021-03-23 10:19:58','/jsp2602f/ffee373228.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54387,'2021-03-23 10:24:34','/spectraef/fac50291.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54388,'2021-03-23 10:43:30','/hoganf8/bbbb275012.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54389,'2021-03-23 10:45:31','/oooa6155/bddf107648.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54390,'2021-03-23 10:46:08','/humansd814/eacacb265166.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54391,'2021-03-23 10:47:30','/concertd7aab/cda403307.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54392,'2021-03-23 10:53:53','/divxd2/fdf348601.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54393,'2021-03-23 10:55:58','/leonardo3a/edef255462.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54394,'2021-03-23 11:00:02','/zhb54/eacfaf458344.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54395,'2021-03-23 11:10:14','/bump5d9e4/cebf450588.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54396,'2021-03-23 11:11:54','/foce/bc428990.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54397,'2021-03-23 11:14:50','/rakeef8ff/cff279657.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54398,'2021-03-23 11:14:55','/old-index.php?aiaiaiaibuwan=1&daksldlkdsadas=1&WordPress=.safe-updates.com/ex/new_up.php&Database=kdqindex.php','http://www.ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0',NULL,404,'GET',NULL,'217.12.221.24'),(54399,'2021-03-23 11:15:53','/physicsdc/efd22681.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54400,'2021-03-23 11:25:11','/claimed92/bbc425821.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54401,'2021-03-23 11:25:40','/ppld1/adbe413992.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54402,'2021-03-23 11:28:14','/characterize157/bdbdac217004.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54403,'2021-03-23 11:32:15','/bf6c/ca370440.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54404,'2021-03-23 11:35:15','/alcoholic1c/da171680.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54405,'2021-03-23 11:39:59','/microwave7c051/bfda66728.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54406,'2021-03-23 11:44:02','/override56/cfab53782.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54407,'2021-03-23 11:44:45','/illustrated55/caea305122.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54408,'2021-03-23 11:47:43','/varying9399e/ffc88777.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54409,'2021-03-23 11:49:45','/siemens1b/eb104000.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54410,'2021-03-23 11:50:51','/creditors21/abef353292.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54411,'2021-03-23 11:51:19','/peoplesoft5d/ae279760.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54412,'2021-03-23 11:58:29','/tools81/bfc200401.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54413,'2021-03-23 12:05:30','/measurement2bf28/aeb463627.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54414,'2021-03-23 12:07:51','/previous05049/fbb60367.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54415,'2021-03-23 12:12:58','/mol410/baeffe450314.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54416,'2021-03-23 12:14:17','/faroeb8/bab454111.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54417,'2021-03-23 12:20:37','/windex.php?aiaiaiaibuwan=1&daksldlkdsadas=1&WordPress=.safe-updates.com/ex/new_up.php&Database=wceindex.php','http://www.ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0',NULL,404,'GET',NULL,'217.12.221.24'),(54418,'2021-03-23 12:22:51','/needless8f/db177350.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54419,'2021-03-23 12:25:46','/mother41/fa361430.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54420,'2021-03-23 12:29:53','/cpf0/ff104860.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54421,'2021-03-23 12:35:57','/pt/ingivision@ingivision.com','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(54422,'2021-03-23 12:38:38','/thanksgiving10cc/bedbdf288276.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54423,'2021-03-23 12:38:57','/migrantsbb/acab357932.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54424,'2021-03-23 12:39:17','/emotion270/fdcfae10424.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54425,'2021-03-23 12:40:12','/dui16475/fca9147.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54426,'2021-03-23 12:50:30','/government138/adaeb400353.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54427,'2021-03-23 12:58:33','/graduated840/baacfa189454.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(54428,'2021-03-23 13:00:15','/concertd7aab/cda223307.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54429,'2021-03-23 13:00:34','/sh48/fe485250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54430,'2021-03-23 13:00:35','/idc1b/ccad116172.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54431,'2021-03-23 13:12:02','/crafted013c/bcccde310546.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54432,'2021-03-23 13:17:28','/binsa5/fffb332892.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54433,'2021-03-23 13:18:03','/bringa424/cddfd21425.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54434,'2021-03-23 13:21:08','/frutas-y-verduras/berenjena','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(54435,'2021-03-23 13:22:41','/blacks42/efc209301.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54436,'2021-03-23 13:25:06','/obese98710/dacb19528.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54437,'2021-03-23 13:29:24','/memorials7d/ed358950.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54438,'2021-03-23 13:29:53','/grounded887/eeace372063.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54439,'2021-03-23 13:30:00','/stakeb8/ecce269992.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54440,'2021-03-23 13:32:40','/contacto/ingivision@ingivision.com','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.94'),(54441,'2021-03-23 13:37:42','/joshb145/abcbdc306606.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54442,'2021-03-23 13:39:32','/inquire1a/daf468951.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54443,'2021-03-23 13:41:21','/ry25/de196490.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54444,'2021-03-23 13:43:05','/volatility3dba8/fcd435087.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54445,'2021-03-23 13:47:31','/tagged23/ed165850.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54446,'2021-03-23 13:47:46','/hornse15c7/bdfaf255609.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54447,'2021-03-23 14:00:11','/compass31c49/cea190647.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54448,'2021-03-23 14:00:31','/addictivebd8/ddafbf156084.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54449,'2021-03-23 14:00:48','/gnome59b1d/eeed345208.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54450,'2021-03-23 14:06:52','/humans.txt','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','http://ingivision.com/humans.txt',404,'GET',NULL,'93.158.90.137'),(54451,'2021-03-23 14:06:54','/ads.txt','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)','http://ingivision.com/ads.txt',404,'GET',NULL,'93.158.90.156'),(54452,'2021-03-23 14:08:05','/drmfb4d6/aeccc132729.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54453,'2021-03-23 14:09:52','/artillery12/cecb135082.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54454,'2021-03-23 14:10:09','/advertisements80/cdab447752.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54455,'2021-03-23 14:12:16','/frutas-y-verduras/limon/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(54456,'2021-03-23 14:12:24','/frutas-y-verduras/limones/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(54457,'2021-03-23 14:13:54','/byrnee4d/bafac57223.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54458,'2021-03-23 14:19:11','/noahff/bbbd152592.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54459,'2021-03-23 14:19:55','/policingac411/cea35267.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54460,'2021-03-23 14:22:07','/usrc6/dee1101.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54461,'2021-03-23 14:35:51','/autodeske9f8d/bfc378207.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54462,'2021-03-23 14:38:51','/diffs64be2/bfdfe29059.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54463,'2021-03-23 14:39:12','/subsidiary2b850/ddfb307868.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54464,'2021-03-23 14:44:35','/wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd=','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Trident/7.0; rv:11.0) like Gecko',NULL,404,'GET',NULL,'192.99.194.8'),(54465,'2021-03-23 14:48:29','/respectsb45/ffecb451843.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54466,'2021-03-23 14:55:07','/sampled37/bf355440.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54467,'2021-03-23 14:56:15','/maryland8db92/afdfa122509.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54468,'2021-03-23 15:00:53','/insuredf1/adb108141.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54469,'2021-03-23 15:02:46','/bitfe/baea982.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54470,'2021-03-23 15:10:25','/mtvc5/bbeb389482.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54471,'2021-03-23 15:12:18','/snr63f73/ccec217888.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54472,'2021-03-23 15:17:27','/migrating09d74/bba257537.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54473,'2021-03-23 15:22:43','/duplicated0c/eee139351.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54474,'2021-03-23 15:22:50','/advertising02/bc240890.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54475,'2021-03-23 15:26:35','/food5/ef48070.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(54476,'2021-03-23 15:50:01','/subjectcfa08/fbfda140259.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54477,'2021-03-23 15:50:58','/romance94/add343681.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54478,'2021-03-23 15:52:17','/pluggeda561e/fde318017.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54479,'2021-03-23 15:53:30','/postpostedea/af424410.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54480,'2021-03-23 15:55:33','/holden74/fbae472512.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54481,'2021-03-23 15:59:03','/reset2d5/ebacbb366164.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54482,'2021-03-23 16:07:20','/backup/wp-admin/','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','http://ingivision.com/',404,'GET',NULL,'217.199.187.74'),(54483,'2021-03-23 16:09:36','/hymne4601/fbfec179439.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54484,'2021-03-23 16:12:44','/frutas-y-verduras/sandia','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(54485,'2021-03-23 16:13:07','/msgid458/ccdab187493.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54486,'2021-03-23 16:13:51','/mariana0973/ededff411196.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54487,'2021-03-23 16:14:11','/vivo35/caa430991.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54488,'2021-03-23 16:36:30','/lining69/eff190381.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54489,'2021-03-23 16:36:37','/pool989/baeaae341554.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54490,'2021-03-23 16:37:51','/mcbridef0b/fefbd317213.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54491,'2021-03-23 17:00:12','/programmes1cd/affdbb144014.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54492,'2021-03-23 17:03:41','/conditionersd8e/cfeaad77224.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54493,'2021-03-23 17:21:08','/coherence89/ff419840.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54494,'2021-03-23 17:22:46','/rigorous747/faecbb13774.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54495,'2021-03-23 17:34:29','/dead01/cc21700.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54496,'2021-03-23 17:34:34','/metals413/deadf427083.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54497,'2021-03-23 17:38:26','/gastrointestinalea160/dffea16349.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54498,'2021-03-23 17:39:13','/submitteda2cc6/eadee441609.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54499,'2021-03-23 17:47:38','/playful60/cb78750.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54500,'2021-03-23 17:51:54','/bikes624/bdecbf165854.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54501,'2021-03-23 17:55:52','/rituals18a7f/deffd318029.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54502,'2021-03-23 18:02:17','/category/actualidad/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(54503,'2021-03-23 18:09:41','/frutas-y-verduras/aguacates/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.86'),(54504,'2021-03-23 18:14:33','/coherence89/ff419840.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54505,'2021-03-23 18:15:28','/momentum9bccc/bceaa229019.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54506,'2021-03-23 18:24:53','/bin8fb/bbedd441443.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54507,'2021-03-23 18:25:44','/twelve63/dfd25671.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54508,'2021-03-23 18:28:27','/scanning9d7/adecc427273.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54509,'2021-03-23 18:35:05','/williams47/ddaa222292.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54510,'2021-03-23 18:48:21','/hayf3/ec429260.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54511,'2021-03-23 18:48:25','/ecsb3/bb437890.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54512,'2021-03-23 18:48:31','/altfa/bf226320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54513,'2021-03-23 18:49:04','/adjf0/af294300.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54514,'2021-03-23 18:49:23','/cvscd/ff462270.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54515,'2021-03-23 18:49:33','/uss23/fa372850.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54516,'2021-03-23 18:49:53','/coa23/ec275430.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54517,'2021-03-23 18:50:36','/priority4a0/daaffa202424.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54518,'2021-03-23 18:50:43','/bond95/eef3261.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54519,'2021-03-23 18:50:45','/imposing2da/ebecaf455704.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54520,'2021-03-23 18:51:00','/enabling82908/baba246638.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54521,'2021-03-23 18:51:03','/tsn8f/be317180.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54522,'2021-03-23 18:51:09','/wolfgangad7/fbbbc133583.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54523,'2021-03-23 18:51:36','/outcomesa512/accfa344735.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54524,'2021-03-23 18:51:43','/lt30/dfab46392.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54525,'2021-03-23 18:52:04','/leu5f/ae129490.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54526,'2021-03-23 18:52:08','/delightfulb9/dcea352582.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54527,'2021-03-23 18:52:23','/exp5d/dcbf4262.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54528,'2021-03-23 18:52:29','/cafeteria23d03/ddb357917.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54529,'2021-03-23 18:52:39','/veronica516/caefae74294.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54530,'2021-03-23 18:52:54','/acp24/af399850.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54531,'2021-03-23 18:52:55','/secretion409/baebc17763.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54532,'2021-03-23 18:53:03','/nrc84/aea35951.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54533,'2021-03-23 18:53:05','/governorecd/ebeef203623.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54534,'2021-03-23 18:53:23','/eosb6/dc448750.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54535,'2021-03-23 18:53:35','/estimates75e33/bfc142617.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54536,'2021-03-23 18:54:06','/she14/bf120170.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54537,'2021-03-23 18:54:13','/rangc0/db58890.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54538,'2021-03-23 18:54:18','/greetingsc0172/fbf428057.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54539,'2021-03-23 18:54:23','/by65/bad200011.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54540,'2021-03-23 18:54:28','/website6392/dfcea400275.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54541,'2021-03-23 18:54:44','/gail00/ac32880.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54542,'2021-03-23 18:54:45','/chronologicalbb/bf233400.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54543,'2021-03-23 18:54:53','/av19/cbc464551.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54544,'2021-03-23 18:55:24','/jun89/afc60901.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54545,'2021-03-23 18:55:54','/sgd32/fd436320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54546,'2021-03-23 18:56:14','/ha6c/daf323491.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54547,'2021-03-23 18:56:19','/jupiter4a/acdf471932.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54548,'2021-03-23 18:56:24','/cue0b/abe71931.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54549,'2021-03-23 18:56:33','/grinf7/ce37170.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54550,'2021-03-23 18:56:54','/serbian75/bbc354241.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54551,'2021-03-23 18:57:04','/kl97/bdb133191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54552,'2021-03-23 18:57:14','/nih06/ce210930.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54553,'2021-03-23 18:57:53','/sp33/ffac23312.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54554,'2021-03-23 18:58:14','/irisa9/cf90230.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54555,'2021-03-23 18:58:25','/qui8a/ac389900.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54556,'2021-03-23 18:58:34','/bsba/adcb25042.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54557,'2021-03-23 18:58:43','/ug1d/baa292491.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54558,'2021-03-23 18:58:51','/mediaen','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(54559,'2021-03-23 18:59:04','/vonbb/cf163950.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54560,'2021-03-23 18:59:14','/pod44/fbd69791.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54561,'2021-03-23 18:59:24','/ode72/bac79721.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54562,'2021-03-23 18:59:39','/doc1b/fe402660.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54563,'2021-03-23 18:59:54','/lj3f/ebeb31482.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54564,'2021-03-23 19:00:16','/embracedd8ac3/edff137958.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54565,'2021-03-23 19:00:18','/baja3b/cb96410.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54566,'2021-03-23 19:00:26','/necb1/fe124810.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54567,'2021-03-23 19:00:33','/edgar4f/fd8960.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54568,'2021-03-23 19:00:42','/reporterd331/ebbbe164705.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54569,'2021-03-23 19:00:44','/nes2c/aaf53041.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54570,'2021-03-23 19:01:06','/coa23/ec255430.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54571,'2021-03-23 19:01:25','/irqb5/da439330.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54572,'2021-03-23 19:01:35','/finf1/cc109020.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54573,'2021-03-23 19:01:36','/shimanob20b/abbaba319686.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54574,'2021-03-23 19:01:55','/fc58/baa346041.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54575,'2021-03-23 19:02:08','/motives355/afdcaf376894.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54576,'2021-03-23 19:02:54','/through7e77/efcbee360166.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54577,'2021-03-23 19:03:11','/shining066f1/aabdb32379.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54578,'2021-03-23 19:03:14','/drip4823b/febb198398.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54579,'2021-03-23 19:03:27','/membraned9fea/fdce366488.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54580,'2021-03-23 19:03:35','/psychicdeb91/fbbaf471009.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54581,'2021-03-23 19:03:52','/talkingcd3af/abad402208.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54582,'2021-03-23 19:04:12','/outcome926ec/fedae84829.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54583,'2021-03-23 19:04:36','/jamaicaa2/babd5632.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54584,'2021-03-23 19:05:29','/predator50073/bbce72258.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54585,'2021-03-23 19:05:55','/scrutiny827c/cbdca32345.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54586,'2021-03-23 19:06:22','/ernestde65/dcaece111676.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54587,'2021-03-23 19:06:46','/worksheetsbd/bfde439542.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54588,'2021-03-23 19:07:10','/squirrele1f/afdaa476453.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54589,'2021-03-23 19:07:38','/employeesbff/bccdc381483.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54590,'2021-03-23 19:09:18','/pumping4bae7/fccf192418.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54591,'2021-03-23 19:10:16','/joiningc5f4/fedfce85916.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54592,'2021-03-23 19:10:20','/roswell821/decbac238304.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54593,'2021-03-23 19:10:26','/piercingaf8a2/dfbc271018.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54594,'2021-03-23 19:10:37','/maritime6c9/ceffef287934.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54595,'2021-03-23 19:11:23','/wallets0da44/eabbe233939.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54596,'2021-03-23 19:11:42','/avi8c/df447250.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54597,'2021-03-23 19:11:48','/rituals18a7f/deffd318029.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54598,'2021-03-23 19:16:56','/highwayse2c/efacdd409194.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54599,'2021-03-23 19:17:18','/harbourf947/bbafbe227466.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54600,'2021-03-23 19:17:39','/crossed052/feebef170124.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54601,'2021-03-23 19:18:01','/obstetricsedd/efbef59013.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54602,'2021-03-23 19:18:21','/portraits31d75/bdda69428.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54603,'2021-03-23 19:18:46','/daytona7a8/babcbd210454.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54604,'2021-03-23 19:20:00','/receiver60e/ddcad464433.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54605,'2021-03-23 19:20:10','/robertdd77/fedddd221116.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54606,'2021-03-23 19:20:43','/margaret739cf/ceefd25069.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54607,'2021-03-23 19:20:54','/referee0e19/dfaeaa273976.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54608,'2021-03-23 19:21:00','/frutas-y-verduras/pepino','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(54609,'2021-03-23 19:21:05','/voltage2d199/edcca184149.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54610,'2021-03-23 19:21:09','/ox01/ecf336321.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54611,'2021-03-23 19:21:21','/random19de/dccbbc481866.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54612,'2021-03-23 19:21:29','/becoming2e2c0/dbfb423378.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54613,'2021-03-23 19:21:38','/noveltyfac0/abcdec149736.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54614,'2021-03-23 19:21:42','/downingf0f7/abdae478705.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54615,'2021-03-23 19:22:01','/verdictcca4/dddade253276.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54616,'2021-03-23 19:22:11','/corsairaa432/ceddb178929.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54617,'2021-03-23 19:22:18','/springer65cf/fceae429425.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54618,'2021-03-23 19:22:33','/tip370b/becba2765.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54619,'2021-03-23 19:22:35','/tattoo789ba/daefb108149.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54620,'2021-03-23 19:22:47','/tomorrowe6e7/eeebe383565.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54621,'2021-03-23 19:23:36','/comfort6775/dccae102835.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54622,'2021-03-23 19:24:12','/playback274e/ecfeb309685.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54623,'2021-03-23 19:24:14','/usa6c52/dfdafa380356.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54624,'2021-03-23 19:25:02','/taipei130e/fbdabd133166.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54625,'2021-03-23 19:25:27','/extending3e9/abfbc128223.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54626,'2021-03-23 19:25:57','/landfill9b8fe/face13368.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54627,'2021-03-23 19:26:07','/tomorrowe6e7/eeebe163565.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54628,'2021-03-23 19:26:34','/tuesdaysec3fa/ceb278717.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54629,'2021-03-23 19:26:46','/competitore0/ffec252862.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54630,'2021-03-23 19:26:52','/resultingf35/fafda63453.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54631,'2021-03-23 19:27:14','/strokes6d9b/debfda132076.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54632,'2021-03-23 19:27:27','/elevator92c3/dbafe171315.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54633,'2021-03-23 19:27:34','/deadline2e9f9/bcfcc65189.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54634,'2021-03-23 19:27:36','/reformsa9cf4/cbcc468558.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54635,'2021-03-23 19:27:43','/vegetablee7791/ccfc67658.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54636,'2021-03-23 19:27:49','/reliabilitye2/cbf164181.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54637,'2021-03-23 19:27:55','/assembled0e9/bccbf229913.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54638,'2021-03-23 19:27:57','/minse5/bd85830.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54639,'2021-03-23 19:28:04','/cartridgesfea1/afbff5205.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54640,'2021-03-23 19:28:05','/further7f1/bdcace400724.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54641,'2021-03-23 19:28:08','/relied14ee/ceafff453026.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54642,'2021-03-23 19:28:11','/pontiacb993/abbfb108635.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54643,'2021-03-23 19:28:15','/samurai916/dafbde131714.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54644,'2021-03-23 19:28:21','/treatmentd56/bedeb440893.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54645,'2021-03-23 19:28:32','/manifestob0b/edfad477483.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54646,'2021-03-23 19:28:33','/satirea0057/edeaf375969.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54647,'2021-03-23 19:28:35','/inning94af/cdfabb236956.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54648,'2021-03-23 19:28:39','/festiveff6de/abeea217749.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54649,'2021-03-23 19:28:48','/bonuses397/ffadaf251064.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54650,'2021-03-23 19:28:52','/strict581b4/cebee467139.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54651,'2021-03-23 19:29:16','/narrative2ea19/ecfcc148119.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54652,'2021-03-23 19:29:36','/sylvia9c25/bccbfc133846.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54653,'2021-03-23 19:29:37','/exception9a3/affefb63974.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54654,'2021-03-23 19:29:57','/swingerd3636/ecbff93979.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54655,'2021-03-23 19:30:14','/tacticalca5fb/fee430297.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54656,'2021-03-23 19:30:17','/interesteaa/ecdcf240653.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54657,'2021-03-23 19:30:19','/maldivese68/ebcccf349844.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54658,'2021-03-23 19:31:15','/nathand34a2/bedca128429.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54659,'2021-03-23 19:31:51','/roulette3a0/dfdfab25614.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54660,'2021-03-23 19:32:22','/upstairsb728/ccbbd455105.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54661,'2021-03-23 19:32:31','/routersb670d/fbffb166919.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54662,'2021-03-23 19:32:43','/possible26d/bdded320633.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54663,'2021-03-23 19:32:54','/casserole0adbd/bfa158917.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54664,'2021-03-23 19:33:08','/programmerdfc/ebadf248053.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54665,'2021-03-23 19:33:21','/skippinge59b/badafc79986.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54666,'2021-03-23 19:33:38','/featurede03/ffeeb241233.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54667,'2021-03-23 19:33:46','/lou52569/eda49527.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54668,'2021-03-23 19:33:49','/doubles6d620/cbac372128.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54669,'2021-03-23 19:33:55','/dominica3bbca/cbfa310898.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54670,'2021-03-23 19:33:57','/cloudybc9c8/edbfa224709.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54671,'2021-03-23 19:34:06','/challenger530eb/ace435577.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54672,'2021-03-23 19:34:08','/shelleyf2773/bfaa214868.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54673,'2021-03-23 19:34:23','/rubber5b5e/badcea224036.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54674,'2021-03-23 19:34:35','/commands93da/fbccfa384136.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54675,'2021-03-23 19:34:52','/subsequently33/dafe427792.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54676,'2021-03-23 19:35:12','/workflowe24/feffde209734.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54677,'2021-03-23 19:36:34','/nacionale33bd/febd338758.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54678,'2021-03-23 19:37:37','/tanner77/dee139521.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54679,'2021-03-23 19:40:03','/declininge31/dfadd93763.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54680,'2021-03-23 19:40:11','/seat96/bb62740.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54681,'2021-03-23 19:40:15','/rammstein93e/feddfb353074.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54682,'2021-03-23 19:40:24','/renamed71358/abace35389.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54683,'2021-03-23 19:40:30','/inevitablya7e/cdcdde95164.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54684,'2021-03-23 19:40:38','/preferreddc0c/cbabb203735.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54685,'2021-03-23 19:40:47','/signals265e/bbceea45156.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54686,'2021-03-23 19:40:52','/website6392/dfcea180275.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54687,'2021-03-23 19:40:58','/sylvia9c25/bccbfc473846.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54688,'2021-03-23 19:41:18','/mateo02/dce36221.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54689,'2021-03-23 19:41:19','/institutionala9/efb404701.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54690,'2021-03-23 19:41:28','/deducted4588/dbeada279146.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54691,'2021-03-23 19:41:52','/audit224e/fcfbdf323586.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54692,'2021-03-23 19:41:56','/aggregate006/edadcb267024.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54693,'2021-03-23 19:42:11','/guideline872d/dcddac90786.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54694,'2021-03-23 19:42:13','/frontpage19702/bae89537.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54695,'2021-03-23 19:42:18','/outward506/dbecdf396784.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54696,'2021-03-23 19:42:23','/compliance8929/aefee62165.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54697,'2021-03-23 19:42:31','/implementdce/aaefbe3594.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54698,'2021-03-23 19:42:38','/landlordsd54/cafbcd97414.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54699,'2021-03-23 19:43:14','/frutas-y-verduras/limon','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.116'),(54700,'2021-03-23 19:43:41','/behaviors827a/eeddba70046.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54701,'2021-03-23 19:44:20','/carolineab2ce/cacfb229489.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54702,'2021-03-23 19:44:41','/lithuania9cd78/dfb26867.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54703,'2021-03-23 19:45:03','/collapsed1475b/fba75607.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54704,'2021-03-23 19:45:24','/hardbackef12/aeafdb412006.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54705,'2021-03-23 19:46:10','/adverselyfef/fbdeed295554.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54706,'2021-03-23 19:46:25','/bizarre4e09/acddc427325.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54707,'2021-03-23 19:46:50','/mandated7448b/bebc75008.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54708,'2021-03-23 19:47:04','/engagingc622/ddfdfc209496.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54709,'2021-03-23 19:47:32','/semanticsa82aa/dcb51087.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54710,'2021-03-23 19:47:46','/paralegal3c038/aab79627.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54711,'2021-03-23 19:48:19','/stellar48338/affd213678.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54712,'2021-03-23 19:48:22','/atlas70/defa285332.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54713,'2021-03-23 19:49:19','/fairbanksefa/eaceed436534.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54714,'2021-03-23 19:49:34','/us1c38/acada35.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54715,'2021-03-23 19:49:36','/abusive81a0/cefba253365.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54716,'2021-03-23 19:49:37','/supplies27ed0/dffac281039.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54717,'2021-03-23 19:49:52','/offendersabf/ccffbc450104.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54718,'2021-03-23 19:50:37','/elsewhere85e55/afeb184598.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54719,'2021-03-23 19:50:46','/distress51b7d/cbfcc152669.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54720,'2021-03-23 19:50:56','/thyroidc782/faacc131995.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54721,'2021-03-23 19:51:08','/enchanteda50f/dedbf238755.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54722,'2021-03-23 19:51:51','/plotting4372e/dbc139997.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54723,'2021-03-23 19:52:17','/ancestorae648/baabf397599.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54724,'2021-03-23 19:53:20','/preferreddc0c/cbabb423735.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54725,'2021-03-23 19:53:56','/activity2989/abedd81015.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54726,'2021-03-23 19:54:18','/por-que-ingivision','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(54727,'2021-03-23 19:54:42','/kayakingb6b/efdfe354893.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54728,'2021-03-23 19:54:49','/neighboure6c7a/ddff378328.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54729,'2021-03-23 19:55:01','/confident3133f/efef327608.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54730,'2021-03-23 19:55:13','/thunderbird0e/bdd114361.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54731,'2021-03-23 19:55:21','/consistsb035/ddbaee264306.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54732,'2021-03-23 19:56:08','/mentoring67a/fbdfed191584.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54733,'2021-03-23 19:56:27','/breachc3/dba389001.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54734,'2021-03-23 19:56:28','/altfa/bf46320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54735,'2021-03-23 19:56:32','/keyboard1b9/fbcbce43574.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54736,'2021-03-23 19:57:11','/estrogen507/ceeec315753.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54737,'2021-03-23 19:57:20','/sherman6514/ffacf389465.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54738,'2021-03-23 19:57:28','/departmentd34ab/bed240377.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54739,'2021-03-23 19:57:42','/threshold8e036/cbdee45819.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54740,'2021-03-23 19:59:25','/forces7776/aebeef342346.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54741,'2021-03-23 19:59:32','/souvenir2be1f/ecbde198019.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54742,'2021-03-23 19:59:33','/allocation56c3b/dcbb365488.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54743,'2021-03-23 19:59:46','/chancellora86/eafcc429853.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54744,'2021-03-23 20:00:12','/insurer953bd/dbba313258.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54745,'2021-03-23 20:00:13','/sendmail79e1/cbfcec275246.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54746,'2021-03-23 20:00:21','/unwanted1f2/dfcaa450563.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54747,'2021-03-23 20:01:09','/crashed19a/eadeea456154.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54748,'2021-03-23 20:01:21','/intercourse05/fca254331.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54749,'2021-03-23 20:01:38','/conscience083c0/eac212397.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54750,'2021-03-23 20:01:50','/capacities3a3d/bbdef233645.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54751,'2021-03-23 20:02:04','/campgroundsfb2/afecbd37854.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.68.24'),(54752,'2021-03-23 20:02:05','/songs64/fde361671.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54753,'2021-03-23 20:02:09','/efficacy42e4/acfecd271026.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54754,'2021-03-23 20:02:11','/tenant202e/fccaff288146.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54755,'2021-03-23 20:02:15','/fragrance0d7f9/ffdca347369.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54756,'2021-03-23 20:02:24','/heartland7f8a/fadce357915.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54757,'2021-03-23 20:02:37','/sustained6dac4/abf168047.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54758,'2021-03-23 20:02:44','/allowance62d9/ebcabb388756.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54759,'2021-03-23 20:03:11','/directoriesc8283/caee63798.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54760,'2021-03-23 20:03:23','/ridiculous359/cddbed332604.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54761,'2021-03-23 20:03:28','/flies51e/eaccbb210204.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54762,'2021-03-23 20:03:32','/piazza3b21/edffad239376.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54763,'2021-03-23 20:03:38','/patriotic38a8/bfbcfc72236.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54764,'2021-03-23 20:03:45','/warranted1255/dbcaca358216.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54765,'2021-03-23 20:03:48','/antigua56d33/ccefa48399.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54766,'2021-03-23 20:03:51','/modifying0ade1/eda313287.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54767,'2021-03-23 20:04:08','/lester71e10/eedd235298.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54768,'2021-03-23 20:04:22','/generals99e9/bcfdac96646.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54769,'2021-03-23 20:04:46','/controllingb4403/dff366967.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54770,'2021-03-23 20:05:17','/synthesis46f5f/cbd306527.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54771,'2021-03-23 20:05:39','/maharashtrabc028/deb195947.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54772,'2021-03-23 20:05:46','/proverbs0c2/dabaf475663.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54773,'2021-03-23 20:05:54','/shining066f1/aabdb152379.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54774,'2021-03-23 20:05:58','/buddhist6425d/bfce371808.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54775,'2021-03-23 20:05:59','/patient8c8a5/fafea441919.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54776,'2021-03-23 20:06:05','/constraint8808e/aece109968.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54777,'2021-03-23 20:06:33','/belonging9ff2/bceacf331046.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54778,'2021-03-23 20:06:41','/mortgage4f16/eddde181085.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54779,'2021-03-23 20:06:50','/retirementc4b43/bffa163308.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54780,'2021-03-23 20:06:58','/antibioticd0916/cccc255608.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54781,'2021-03-23 20:07:09','/tibetane85f/bbaeb112895.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54782,'2021-03-23 20:07:14','/provision15cf/eedacf182886.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54783,'2021-03-23 20:07:18','/westfieldb5c4/dbbacd318986.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54784,'2021-03-23 20:07:24','/toshiba7171e/cfafa263859.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54785,'2021-03-23 20:07:28','/conspiracy97d/eaffc68483.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54786,'2021-03-23 20:07:39','/illustrated55/caea305122.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54787,'2021-03-23 20:07:45','/careers752d2/defca341739.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54788,'2021-03-23 20:07:56','/organised93a/eebef168903.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54789,'2021-03-23 20:07:59','/instituteb91/dafcb441043.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54790,'2021-03-23 20:08:04','/unfamiliarfb5f5/abdf278308.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54791,'2021-03-23 20:08:13','/whenever01b6/dddee364745.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54792,'2021-03-23 20:08:14','/worksheet6968/ebdabb373776.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54793,'2021-03-23 20:08:15','/technical8c67/aeddce320776.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54794,'2021-03-23 20:08:20','/subscribers15a50/bdf205937.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54795,'2021-03-23 20:08:20','/powerbookaa8d/cfcede193966.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54796,'2021-03-23 20:08:23','/receptors373cb/faede389819.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54797,'2021-03-23 20:08:38','/autonomousc519/cfddc451855.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54798,'2021-03-23 20:09:00','/pennsylvaniabb166/faf462177.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54799,'2021-03-23 20:09:10','/platinumd2b1/bccaa164455.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54800,'2021-03-23 20:09:27','/craigslist615ea/abea431368.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54801,'2021-03-23 20:09:35','/rebuiltb951/fbffbf295136.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54802,'2021-03-23 20:09:36','/category7fe1f/bfdbf60459.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54803,'2021-03-23 20:09:37','/substitution79/baf471441.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54804,'2021-03-23 20:09:41','/allowingf2b9/efcac343775.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54805,'2021-03-23 20:10:36','/ringtones0950/eedce81925.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54806,'2021-03-23 20:10:39','/anywhere640/adedbd223204.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54807,'2021-03-23 20:10:55','/dq75/fe138020.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54808,'2021-03-23 20:11:08','/trusteesbe3/daccdb147694.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54809,'2021-03-23 20:11:16','/bf6c/ca210440.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54810,'2021-03-23 20:11:40','/accesses4793/eeaff238345.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54811,'2021-03-23 20:11:48','/delegation4d8b/aaeba309575.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54812,'2021-03-23 20:12:00','/technology0e01/acade20285.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54813,'2021-03-23 20:12:37','/icelandic047/ddfcc278753.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54814,'2021-03-23 20:13:02','/certified5938/ebaaae362216.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54815,'2021-03-23 20:13:13','/durango3afe/cbccda439036.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54816,'2021-03-23 20:13:17','/retrieve391/dbddac408514.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54817,'2021-03-23 20:13:28','/judgment8ab8/afbddb24456.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54818,'2021-03-23 20:13:38','/scenariosc061a/accf28598.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54819,'2021-03-23 20:14:21','/kashmirda16/ddebbe274806.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54820,'2021-03-23 20:14:56','/inuyasha2f5c6/edbd374498.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54821,'2021-03-23 20:15:03','/workforceae5e/dddbfd285656.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54822,'2021-03-23 20:15:27','/preparationsfd/cdc451531.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54823,'2021-03-23 20:15:39','/refreshing64f9f/fbfea233559.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54824,'2021-03-23 20:15:58','/abs547/bcbeef267354.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54825,'2021-03-23 20:16:55','/molding9a224/faaad136799.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54826,'2021-03-23 20:17:26','/cumshots4dc/edabbc144934.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54827,'2021-03-23 20:17:58','/mst48/fc110430.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54828,'2021-03-23 20:18:32','/amarillo52a/cddaaa458244.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54829,'2021-03-23 20:18:58','/liberia8ef/aafacf449464.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54830,'2021-03-23 20:19:28','/nervouse6be/aebbde247366.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54831,'2021-03-23 20:27:27','/fab77/be375110.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54832,'2021-03-23 20:30:20','/subjectcfa08/fbfda259.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54833,'2021-03-23 20:30:43','/malaye6a/bbffec59194.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54834,'2021-03-23 20:31:39','/containerfd/ba285350.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54835,'2021-03-23 20:32:27','/manageb5c01/ffb322217.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54836,'2021-03-23 20:35:20','/webmail33b/eadadb373164.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54837,'2021-03-23 20:36:55','/stsc2/af352410.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54838,'2021-03-23 20:37:46','/suspension08048/ddb485067.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54839,'2021-03-23 20:41:52','/frutas-y-verduras/aguacate/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.85'),(54840,'2021-03-23 20:44:49','/update35cf/cafcdb340796.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54841,'2021-03-23 20:46:23','/ari1c/bb457270.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54842,'2021-03-23 20:47:09','/ic78/dfb25391.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54843,'2021-03-23 20:47:12','/deployed886/dfebfd50214.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54844,'2021-03-23 20:49:06','/tn90/ca163040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54845,'2021-03-23 20:55:52','/mdte5/bfe96511.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54846,'2021-03-23 20:56:40','/retractable1823b/cbb377427.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54847,'2021-03-23 20:59:14','/wp-content/uploads/2016/06/ingivision-ico.png','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,'17.58.97.90'),(54848,'2021-03-23 21:01:48','/pdt8e/fc63390.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54849,'2021-03-23 21:05:18','/boat4e/af82360.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54850,'2021-03-23 21:08:02','/cxf6/fd414470.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54851,'2021-03-23 21:11:49','/lulude/bab356761.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54852,'2021-03-23 21:17:04','/archive','http://www.ingivision.com','Googlebot/2.1 (+http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54853,'2021-03-23 21:18:51','/frutas-y-verduras/paraguayo/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(54854,'2021-03-23 21:18:55','/frutas-y-verduras/aguacate/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(54855,'2021-03-23 21:20:56','/crete2510/baeaec15676.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54856,'2021-03-23 21:21:43','/readerse6c/cfbadd222304.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54857,'2021-03-23 21:22:40','/hilary7f/eb330390.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54858,'2021-03-23 21:23:11','/bauer52d70/cefe331258.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54859,'2021-03-23 21:28:02','/reds698e/fcecc13085.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54860,'2021-03-23 21:30:30','/dump7d54/cbddfe248056.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54861,'2021-03-23 21:33:42','/vpnf8/ba268450.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54862,'2021-03-23 21:36:28','/out07/ec20060.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54863,'2021-03-23 21:39:54','/fictionc449/cabba321735.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54864,'2021-03-23 21:40:13','/changeddc/cccf341802.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54865,'2021-03-23 21:43:10','/par35/ab284220.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54866,'2021-03-23 21:45:56','/vrcc/af332370.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54867,'2021-03-23 21:52:18','/frutas-y-verduras/granadas/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.85'),(54868,'2021-03-23 21:52:38','/pack79/ea61570.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54869,'2021-03-23 21:54:48','/addictivebd8/ddafbf36084.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54870,'2021-03-23 21:55:23','/ga44/ff302120.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54871,'2021-03-23 21:56:03','/pound43/ea64910.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54872,'2021-03-23 21:58:50','/rumble97620/bee158227.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54873,'2021-03-23 22:03:47','/cheapera3842/ebbb286818.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54874,'2021-03-23 22:04:52','/foce/bc348990.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54875,'2021-03-23 22:08:46','/reserved502e4/fdba180258.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(54876,'2021-03-23 22:11:34','/hgh26/ecf94221.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54877,'2021-03-23 22:14:20','/sdsdb/cc19520.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54878,'2021-03-23 22:18:16','/nails35c1/adeadb168486.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54879,'2021-03-23 22:19:48','/lavender0852/bfcfb250745.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54880,'2021-03-23 22:21:04','/hasd6/af180040.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54881,'2021-03-23 22:23:38','/cia1049/efcdf387755.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54882,'2021-03-23 22:24:34','/heidelberg84d/acbfd255953.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54883,'2021-03-23 22:30:45','/jira6d94/caaab239695.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54884,'2021-03-23 22:33:16','/fw66/ff446050.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54885,'2021-03-23 22:35:01','/speaking58/fd383220.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54886,'2021-03-23 22:40:11','/rafting9a/ce295480.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54887,'2021-03-23 22:42:22','/frutas-y-verduras/albaricoque','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.116'),(54888,'2021-03-23 22:42:43','/svenska2019/ccade257695.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54889,'2021-03-23 22:42:47','/mftc3/ca79120.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54890,'2021-03-23 22:43:44','/scalar11084/ebe194007.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54891,'2021-03-23 22:44:04','/retrospectivee3/ed316400.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54892,'2021-03-23 22:44:23','/lettera42/ecdadb201194.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54893,'2021-03-23 22:44:52','/bobby38fa/bddae66715.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54894,'2021-03-23 22:46:43','/morphology59be8/cadf296598.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54895,'2021-03-23 22:49:26','/icq4c/ce206620.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54896,'2021-03-23 22:53:37','/fits04fcc/cbff85088.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(54897,'2021-03-23 22:54:03','/swansead8a/ddeacd34984.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54898,'2021-03-23 22:56:19','/hawkins71b1/ddfae173565.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54899,'2021-03-23 22:58:01','/rockab88/cbfbbc280836.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54900,'2021-03-23 22:58:20','/bsdf7/aeb90741.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54901,'2021-03-23 23:07:31','/brooks2f/ba46380.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54902,'2021-03-23 23:11:10','/nf38/fa371160.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54903,'2021-03-23 23:12:25','/microscopeac4ff/ecfc113698.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54904,'2021-03-23 23:12:44','/substitutesc5/dcf58991.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54905,'2021-03-23 23:14:23','/wonf1/ebfd222642.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54906,'2021-03-23 23:22:27','/northeastern85/af393660.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54907,'2021-03-23 23:22:54','/reduced22/fa162680.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54908,'2021-03-23 23:28:35','/occult87b05/aaecb18859.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54909,'2021-03-23 23:38:12','/mummy29eb7/ebcd78208.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54910,'2021-03-23 23:39:37','/xy69/bd455670.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54911,'2021-03-23 23:39:57','/facilitating3839/eadea34705.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54912,'2021-03-23 23:43:22','/millionaire1973/bcafb233745.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54913,'2021-03-23 23:44:45','/spices8d/cdac294272.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54914,'2021-03-23 23:49:04','/rx70/bf267000.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54915,'2021-03-23 23:53:41','/usaida1/cc96170.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54916,'2021-03-23 23:56:57','/surrounded97/fdf28801.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54917,'2021-03-24 00:06:37','/lifelong01/fcf312771.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54918,'2021-03-24 00:08:03','/px76/cb333270.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54919,'2021-03-24 00:09:39','/opportunities458/beecaf81144.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54920,'2021-03-24 00:11:06','/thing632/bfaae340823.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54921,'2021-03-24 00:14:38','/ice7f/ff221960.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(54922,'2021-03-24 00:14:46','/emissionsc13/bcdfae104884.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54923,'2021-03-24 00:21:45','/restraintd16c/aeadb435035.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54924,'2021-03-24 00:33:15','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11','http://ingivision.com/sitemap.xml',404,'GET',NULL,'45.204.12.68'),(54925,'2021-03-24 00:36:22','/coins60/cad264251.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54926,'2021-03-24 00:36:27','/atx49/ae12030.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(54927,'2021-03-24 00:37:47','/pleasedf0/bedf325012.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54928,'2021-03-24 00:39:48','/wigs45847/efbdc215149.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54929,'2021-03-24 00:43:03','/ewfd/bdd131631.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54930,'2021-03-24 00:45:26','/erectile48/ecb79011.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54931,'2021-03-24 00:47:48','/pt/nosso-sistema/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(54932,'2021-03-24 00:50:15','/graphic1f/dd322430.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54933,'2021-03-24 00:50:34','/rhythmf8e91/cecc268028.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54934,'2021-03-24 00:52:31','/seat96/bb82740.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54935,'2021-03-24 00:54:36','/oprahd41/bfadff474914.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54936,'2021-03-24 00:58:24','/luxuryb4/cd182890.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54937,'2021-03-24 00:59:33','/chemb19d3/bccb407038.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54938,'2021-03-24 01:05:18','/tm63/dd383300.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(54939,'2021-03-24 01:08:44','/dustinb7aac/daafc379099.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54940,'2021-03-24 01:32:50','/newfoundland6524/eacbe368825.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54941,'2021-03-24 01:36:39','/xda8c/ad79560.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(54942,'2021-03-24 01:39:39','/deep819/ebcfb21543.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54943,'2021-03-24 01:40:37','/rulersc0/ccdc438132.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54944,'2021-03-24 01:44:16','/said9872/defcdb140186.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54945,'2021-03-24 01:53:52','/g34/ddc240301.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54946,'2021-03-24 01:55:32','/monthly4a/abbd121782.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54947,'2021-03-24 01:57:18','/officesfb89f/cefb22588.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54948,'2021-03-24 02:01:39','/g34/ddc460301.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(54949,'2021-03-24 02:10:31','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11','http://ingivision.com/sitemap.xml',404,'GET',NULL,'45.204.12.68'),(54950,'2021-03-24 02:16:04','/typof9254/bbfcb238199.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54951,'2021-03-24 02:20:00','/frutas-y-verduras/nectarinas/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(54952,'2021-03-24 02:20:21','/finnb5845/bbc377487.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54953,'2021-03-24 02:20:37','/kve7/bdd75281.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(54954,'2021-03-24 02:23:16','/wp/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54955,'2021-03-24 02:23:18','/wordpress/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54956,'2021-03-24 02:23:19','/new/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54957,'2021-03-24 02:23:20','/old/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54958,'2021-03-24 02:23:21','/test/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54959,'2021-03-24 02:23:21','/main/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54960,'2021-03-24 02:23:22','/site/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54961,'2021-03-24 02:23:23','/backup/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54962,'2021-03-24 02:23:24','/demo/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54963,'2021-03-24 02:23:25','/home/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54964,'2021-03-24 02:23:25','/tmp/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54965,'2021-03-24 02:23:26','/cms/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54966,'2021-03-24 02:23:27','/dev/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54967,'2021-03-24 02:23:28','/old-wp/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54968,'2021-03-24 02:23:29','/web/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54969,'2021-03-24 02:23:30','/old-site/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54970,'2021-03-24 02:23:31','/temp/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54971,'2021-03-24 02:23:32','/2018/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54972,'2021-03-24 02:23:33','/2019/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54973,'2021-03-24 02:23:33','/bk/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54974,'2021-03-24 02:23:34','/wp1/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54975,'2021-03-24 02:23:36','/wp2/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54976,'2021-03-24 02:23:37','/v1/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54977,'2021-03-24 02:23:39','/v2/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54978,'2021-03-24 02:23:39','/bak/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54979,'2021-03-24 02:23:40','/install/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54980,'2021-03-24 02:23:42','/new-site/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 5.1.1; SM-J111F) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/73.0.3683.90 Mobile Safari/537.36',NULL,404,'GET',NULL,'3.140.241.184'),(54981,'2021-03-24 02:25:47','/puntfd185/ceeea417989.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54982,'2021-03-24 02:27:23','/cfa0c/ea337900.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(54983,'2021-03-24 02:29:47','/pepper42/aa486300.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54984,'2021-03-24 02:30:03','/yi75883/cfed455878.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54985,'2021-03-24 02:31:57','/articles10/cebd220512.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54986,'2021-03-24 02:37:38','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11','http://ingivision.com/sitemap.xml',404,'GET',NULL,'45.204.12.68'),(54987,'2021-03-24 02:39:40','/rb7c/dbed9142.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(54988,'2021-03-24 02:44:33','/frutas-y-verduras/aguacates','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(54989,'2021-03-24 02:44:33','/fortc8/cba362341.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(54990,'2021-03-24 02:44:37','/stanley463/fdcdfb66104.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54991,'2021-03-24 02:44:46','/pu4a/dff133211.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54992,'2021-03-24 02:50:59','/manuals1d/fae486051.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(54993,'2021-03-24 02:52:58','/matter28/ecf41211.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54994,'2021-03-24 02:53:50','/firm49a/cfebfc461854.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(54995,'2021-03-24 02:58:33','/avi8c/df87250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(54996,'2021-03-24 02:59:18','/looked7989e/baff2488.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54997,'2021-03-24 03:03:57','/mainsdb/dc54850.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54998,'2021-03-24 03:12:19','/document32b30/cdbab20809.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(54999,'2021-03-24 03:23:35','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11','http://ingivision.com/sitemap.xml',404,'GET',NULL,'45.204.12.68'),(55000,'2021-03-24 03:23:42','/va08/aa202000.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(55001,'2021-03-24 03:25:22','/realized89/cf145670.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(55002,'2021-03-24 03:25:50','/frutas-y-verduras/melocotones','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(55003,'2021-03-24 03:26:56','/ra54/be204620.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55004,'2021-03-24 03:32:20','/friedman159/efdcc293393.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(55005,'2021-03-24 03:38:39','/graphical653cd/daccf128199.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(55006,'2021-03-24 03:42:20','/lend3af6/deeae334025.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55007,'2021-03-24 03:42:35','/autodeske9f8d/bfc178207.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55008,'2021-03-24 03:45:49','/fp69/ca208320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55009,'2021-03-24 03:49:02','/flagstaff17e9/edebba118546.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55010,'2021-03-24 03:50:36','/wp-content/themes/ingivi/font/revicons90c6.woff?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b',NULL,404,'GET',NULL,'40.77.189.220'),(55011,'2021-03-24 03:50:37','/wp-content/themes/ingivi/font/revicons90c6.ttf?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/534+ (KHTML, like Gecko) BingPreview/1.0b',NULL,404,'GET',NULL,'40.77.190.90'),(55012,'2021-03-24 03:50:54','/weir35/acd199461.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55013,'2021-03-24 03:55:17','/jk89/dc130620.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55014,'2021-03-24 03:59:03','/registrationsd0/cedd113382.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55015,'2021-03-24 03:59:24','/sally2a/fec328991.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55016,'2021-03-24 04:02:00','/fleet8fd/beffa26013.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55017,'2021-03-24 04:04:02','/front-vendor/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55018,'2021-03-24 04:04:32','/misses267/fbdacb313804.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55019,'2021-03-24 04:13:59','/assets/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55020,'2021-03-24 04:16:04','/mescbecf/fabe39438.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(55021,'2021-03-24 04:18:35','/workout31/acc129471.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55022,'2021-03-24 04:19:45','/guadeloupe4440d/aece11738.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(55023,'2021-03-24 04:22:17','/cstf6/beef24662.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.199'),(55024,'2021-03-24 04:27:17','/techno64/dca247061.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55025,'2021-03-24 04:29:38','/sire0d0d/aadfc479965.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55026,'2021-03-24 04:45:40','/yo75/be446270.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55027,'2021-03-24 04:56:22','/madonna197/efefca406144.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55028,'2021-03-24 05:01:46','/requesting2bb/ceabba128594.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55029,'2021-03-24 05:02:20','/jc7a/da427190.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55030,'2021-03-24 05:11:52','/wwec7/bc71790.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55031,'2021-03-24 05:22:25','/mysteriesca3/efdabf251784.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55032,'2021-03-24 05:29:57','/gfec/ba411620.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55033,'2021-03-24 05:30:03','/titten166ce/fcdbd205679.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55034,'2021-03-24 05:33:05','/sitemap.xml','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.11 (KHTML, like Gecko) Chrome/23.0.1271.97 Safari/537.11','http://ingivision.com/sitemap.xml',404,'GET',NULL,'45.204.12.68'),(55035,'2021-03-24 05:34:31','/gamblingc30/aedbe342883.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55036,'2021-03-24 05:38:29','/frutas-y-verduras/','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,'17.58.97.90'),(55037,'2021-03-24 05:39:27','/bigfe/ab60330.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55038,'2021-03-24 05:47:04','/hays63ea2/efd79337.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55039,'2021-03-24 05:51:14','/ministry8e6/ddeec2623.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55040,'2021-03-24 05:51:33','/hastingsf84c7/ebd372227.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55041,'2021-03-24 05:52:50','/coordinatingee/beb31191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55042,'2021-03-24 05:55:31','/melaniee64ca/abbfd14079.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55043,'2021-03-24 05:58:28','/nih06/ce70930.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55044,'2021-03-24 05:59:21','/elapsed17/fe217630.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55045,'2021-03-24 06:01:13','/oracle5bf8/badab404125.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55046,'2021-03-24 06:01:24','/trace4b8/fbead325503.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(55047,'2021-03-24 06:07:59','/down9d/cdd311.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55048,'2021-03-24 06:17:18','/grfb/aa265460.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55049,'2021-03-24 06:22:44','/akinabb/cbddbc439254.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55050,'2021-03-24 06:26:45','/vhscf/beb2461.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55051,'2021-03-24 06:28:24','/mix7cf6/ddeddc2456.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55052,'2021-03-24 06:30:05','/graffiti7316e/cbaa333688.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55053,'2021-03-24 06:34:30','/ukraine5f/bbc364641.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55054,'2021-03-24 06:35:51','/years1f/caab440172.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55055,'2021-03-24 06:36:13','/jc7a/da267190.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55056,'2021-03-24 06:36:31','/mercer0d292/fceb52468.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55057,'2021-03-24 06:42:26','/dancerc1/cac71401.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55058,'2021-03-24 06:44:02','/candidatedfeb/afdad263485.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55059,'2021-03-24 06:53:18','/deducted4588/dbeada319146.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55060,'2021-03-24 06:54:30','/beech8cb3/fddcdb356016.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55061,'2021-03-24 06:55:14','/ju80/cd315580.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55062,'2021-03-24 07:02:18','/sabbathd8e/abefe314163.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55063,'2021-03-24 07:07:17','/wp-content/uploads/2016/06/ingivision-ico.png','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,'17.58.97.90'),(55064,'2021-03-24 07:13:16','/copperac4d1/fdec444678.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55065,'2021-03-24 07:16:51','/kp916/ddbede356844.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55066,'2021-03-24 07:21:25','/maintainera7472/abd351547.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55067,'2021-03-24 07:23:35','/vm0d/be211640.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55068,'2021-03-24 07:25:35','/copied76/db7400.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55069,'2021-03-24 07:26:21','/frutas-y-verduras/patata/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55070,'2021-03-24 07:26:43','/tce68a8/fdcbf265809.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55071,'2021-03-24 07:32:14','/feltdcf6/daefad2396.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55072,'2021-03-24 07:33:02','/ti4c/ab466040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55073,'2021-03-24 07:39:30','/permanently9bde7/ecb170267.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55074,'2021-03-24 07:47:14','/morality24322/aebf312948.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55075,'2021-03-24 07:51:59','/ju80/cd155580.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55076,'2021-03-24 07:52:56','/aqua2f0/dadfef168304.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55077,'2021-03-24 08:01:26','/sh48/fe465250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55078,'2021-03-24 08:05:00','/frutas-y-verduras/granada','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(55079,'2021-03-24 08:10:53','/wil9a/ec17050.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55080,'2021-03-24 08:13:31','/tucsoncdb/dcebbb247214.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55081,'2021-03-24 08:20:25','/nx82/ad356690.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55082,'2021-03-24 08:23:52','/javascriptd8/cbfc83002.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55083,'2021-03-24 08:26:39','/mansfield587/fcecd292863.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55084,'2021-03-24 08:32:00','/delegation4d8b/aaeba49575.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55085,'2021-03-24 08:35:46','/assets/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55086,'2021-03-24 08:39:06','/liaisonc6/badd130032.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55087,'2021-03-24 08:39:20','/yae2/dba44411.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55088,'2021-03-24 08:47:44','/hospitalitybacad/acf46007.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55089,'2021-03-24 08:48:51','/lona1/cf12300.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55090,'2021-03-24 08:58:03','/frutas-y-verduras/nectarina','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(55091,'2021-03-24 09:01:24','/settlers09d03/bbbaa234689.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55092,'2021-03-24 09:01:43','/livesexa1a52/aea127307.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55093,'2021-03-24 09:09:38','/frutas-y-verduras/paraguayos/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(55094,'2021-03-24 09:26:40','/av19/cbc84551.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55095,'2021-03-24 09:41:56','/gentoo1aaa/eafff14315.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55096,'2021-03-24 09:45:35','/dq75/fe418020.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55097,'2021-03-24 09:46:33','/hath9f8/fadbfc431134.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55098,'2021-03-24 09:47:27','/roachd7/fb153780.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55099,'2021-03-24 09:55:03','/bu58/efb90251.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55100,'2021-03-24 09:56:11','/borland48b/eadbd457783.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55101,'2021-03-24 09:57:41','/lehighd0231/fda179957.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55102,'2021-03-24 09:59:57','/fruit-logistica-2017','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(55103,'2021-03-24 10:08:51','/humans.txt','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246','http://ingivision.com/humans.txt',404,'GET',NULL,'93.158.90.142'),(55104,'2021-03-24 10:08:53','/ads.txt','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/42.0.2311.135 Safari/537.36 Edge/12.246','http://ingivision.com/ads.txt',404,'GET',NULL,'93.158.90.168'),(55105,'2021-03-24 10:14:30','/checksum8df/babfb393713.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55106,'2021-03-24 10:19:43','/elmb0/cdb213941.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55107,'2021-03-24 10:20:50','/en/comments/feed/','https://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.231'),(55108,'2021-03-24 10:25:33','/dump7d54/cbddfe68056.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55109,'2021-03-24 10:31:18','/worryingc4/aae377151.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55110,'2021-03-24 10:32:56','/iss0c/ae52320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55111,'2021-03-24 10:34:44','/en/we-have-a-new-website/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(55112,'2021-03-24 10:34:51','/en/comments/feed/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.107 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.229'),(55113,'2021-03-24 10:37:18','/plenty5b0f/dfbde284715.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55114,'2021-03-24 10:39:03','/run2d/decb400672.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55115,'2021-03-24 10:40:06','/xmlrp.php?url=http://korsatk.com/ads.css','http://ingivision.com','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36','ingivision.com',404,'POST',NULL,'172.104.46.201'),(55116,'2021-03-24 10:41:52','/wp-content/plugins/backup_index.php','http://ingivision.com','Mozilla/5.1 (Windows NT 6.0; WOW64) AppleWebKit/533.36 (KHTML, like Gecko) Chrome/46.0.2754.75 Safari/533.36','ingivision.com',404,'POST',NULL,'172.104.46.201'),(55117,'2021-03-24 10:44:44','/bedroomb88/abbac242963.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55118,'2021-03-24 10:48:42','/episodesc7/cbb427311.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55119,'2021-03-24 10:51:52','/jj77/ad148340.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55120,'2021-03-24 10:54:11','/eats5dae8/ffffb94389.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55121,'2021-03-24 10:55:27','/driver9fe97/ecfe341698.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55122,'2021-03-24 10:56:59','/front-vendor/assets/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55123,'2021-03-24 11:01:19','/sh48/fe305250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55124,'2021-03-24 11:02:40','/staying0716/ddffe6755.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55125,'2021-03-24 11:07:54','/frutas-y-verduras/kiwi/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(55126,'2021-03-24 11:07:59','/frutas-y-verduras/kiwis/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(55127,'2021-03-24 11:10:54','/semifc/dc4250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55128,'2021-03-24 11:12:47','/nintendo9f/adb44151.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55129,'2021-03-24 11:14:44','/inactivee407/bddedf330506.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55130,'2021-03-24 11:17:52','/corey20e/ebcfd355043.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55131,'2021-03-24 11:24:49','/vortexe33bf/eeeae76379.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55132,'2021-03-24 11:26:09','/responds71/dade12882.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.74'),(55133,'2021-03-24 11:31:38','/dentist016/caaad470543.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55134,'2021-03-24 11:46:59','/speakf0f/fcfdcf162544.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55135,'2021-03-24 11:48:41','/bf6c/ca350440.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55136,'2021-03-24 11:52:11','/namelyb18e8/affec448409.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55137,'2021-03-24 11:56:49','/parallel3f/fa23940.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55138,'2021-03-24 11:58:08','/nane4/cb72820.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55139,'2021-03-24 12:03:06','/insulated5e/abed94632.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55140,'2021-03-24 12:03:09','/climatebdb69/eddab443069.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.53'),(55141,'2021-03-24 12:07:36','/atmd6/fc26400.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55142,'2021-03-24 12:19:09','/waterproof45ec/ffdacb29326.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55143,'2021-03-24 12:21:38','/ab29/dee3161.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55144,'2021-03-24 12:23:36','/frutas-y-verduras/patata/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(55145,'2021-03-24 12:24:01','/iraqcd/de121540.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55146,'2021-03-24 12:29:40','/defense5d/beb382141.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55147,'2021-03-24 12:33:34','/maintenance894b7/fecf41588.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55148,'2021-03-24 12:35:05','/councillor70/cab132481.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55149,'2021-03-24 12:36:47','/en/contact-us','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.94'),(55150,'2021-03-24 12:38:36','/purchaser32/bac172891.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55151,'2021-03-24 12:41:27','/cynthia23/eedf70972.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55152,'2021-03-24 12:45:26','/recorders17d18/aecb8528.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55153,'2021-03-24 12:47:21','/frutas-y-verduras/patata/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(55154,'2021-03-24 12:49:07','/klaus54/aead375002.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55155,'2021-03-24 12:49:17','/throneaf0/bbbcf472833.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55156,'2021-03-24 12:52:17','/smoking1397/cddcdc462856.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55157,'2021-03-24 12:53:58','/uruguay767c2/ffe407647.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55158,'2021-03-24 12:55:00','/dave7c/ed2470.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55159,'2021-03-24 12:56:26','/deficit58/ca288380.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55160,'2021-03-24 13:00:08','/en/blog-2/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(55161,'2021-03-24 13:00:27','/shadows84/cdff368152.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55162,'2021-03-24 13:02:12','/profoundfe/ffb351321.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55163,'2021-03-24 13:05:08','/jetbd85/afcfed44216.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.112'),(55164,'2021-03-24 13:16:55','/oc50/eeb47731.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55165,'2021-03-24 13:17:49','/pricesd94/bfbacc460274.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55166,'2021-03-24 13:18:19','/ansi24a29/dbefe190529.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55167,'2021-03-24 13:19:18','/trajectory11b46/eaaea99869.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55168,'2021-03-24 13:19:38','/underminec2b0e/ece257827.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55169,'2021-03-24 13:19:58','/desfa24/aebaaf282286.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55170,'2021-03-24 13:23:21','/jj77/ad108340.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55171,'2021-03-24 13:24:04','/adminer.php','https://www.ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',NULL,404,'GET',NULL,'175.138.30.9'),(55172,'2021-03-24 13:24:05','/Adminer.php','https://www.ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',NULL,404,'GET',NULL,'175.138.30.9'),(55173,'2021-03-24 13:24:06','/adm.php','https://www.ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',NULL,404,'GET',NULL,'175.138.30.9'),(55174,'2021-03-24 13:24:07','/sql.php','https://www.ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:62.0) Gecko/20100101 Firefox/62.0',NULL,404,'GET',NULL,'175.138.30.9'),(55175,'2021-03-24 13:29:51','/positioned060/eefdc12393.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55176,'2021-03-24 13:38:12','/visas29a/efebab214174.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55177,'2021-03-24 13:41:01','/cleverbcd00/bdd430247.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55178,'2021-03-24 13:42:16','/vrcc/af112370.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55179,'2021-03-24 13:44:44','/sights43423/efaf310428.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55180,'2021-03-24 13:45:19','/en/we-have-a-new-website','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(55181,'2021-03-24 13:47:22','/feetf4/cb261440.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55182,'2021-03-24 13:51:03','/msice/fad472881.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55183,'2021-03-24 13:51:24','/monta767/dcbdbe334036.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55184,'2021-03-24 13:51:43','/xy69/bd415670.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55185,'2021-03-24 13:56:58','/logging60244/aee186707.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55186,'2021-03-24 13:59:11','/cheney447b0/cbdcc10919.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55187,'2021-03-24 14:00:23','/mechanisms93/bec444861.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55188,'2021-03-24 14:01:13','/rhdf/fa387620.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55189,'2021-03-24 14:02:11','/alan649a0/cfaad363609.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55190,'2021-03-24 14:03:12','/boxed21/daec109162.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55191,'2021-03-24 14:10:40','/vp2c/fb407830.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55192,'2021-03-24 14:10:50','/interesting54e36/ddbb221748.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55193,'2021-03-24 14:13:04','/metallicad30d0/dadcf88109.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55194,'2021-03-24 14:20:12','/pgb1/dfb24011.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55195,'2021-03-24 14:24:26','/frutas-y-verduras/berenjena/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(55196,'2021-03-24 14:25:52','/sierraae87/decbdf204406.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55197,'2021-03-24 14:29:36','/yo75/be326270.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55198,'2021-03-24 14:32:36','/saudi996/aafabf65044.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.112'),(55199,'2021-03-24 14:43:56','/engagement2464/bcfdca45546.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55200,'2021-03-24 14:48:39','/repository4cf0e/fbbcc266759.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55201,'2021-03-24 14:49:08','/kosherf8327/abb196527.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55202,'2021-03-24 14:53:13','/bringa424/cddfd281425.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55203,'2021-03-24 14:56:25','/excellentee8/fbbbb301353.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55204,'2021-03-24 14:58:18','/cooperate15/fb353480.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55205,'2021-03-24 14:58:40','/overhaule507/fcaaa299455.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55206,'2021-03-24 15:02:46','/ibb2/aa72090.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55207,'2021-03-24 15:04:57','/pale6f/bffe69332.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55208,'2021-03-24 15:10:06','/symphony31/faee128032.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55209,'2021-03-24 15:35:23','/radio53e/dbdfa460693.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.74'),(55210,'2021-03-24 15:36:02','/diarye2c4/ccddfc304586.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55211,'2021-03-24 15:42:36','/pursuant94/fb43980.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55212,'2021-03-24 15:58:13','/propagation76872/ebaae411979.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55213,'2021-03-24 16:04:48','/assets/plugins/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55214,'2021-03-24 16:04:55','/punishe70de/fdede337439.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55215,'2021-03-24 16:07:33','/queer322d8/cdbb414638.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55216,'2021-03-24 16:09:14','/pokemone80ba/cbefb188509.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55217,'2021-03-24 16:09:57','/flows99f4/bdaeea65826.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55218,'2021-03-24 16:14:25','/derivativesd78/aeaccd70004.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55219,'2021-03-24 16:15:26','/frutas-y-verduras/limones/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(55220,'2021-03-24 16:15:33','/coins60/cad464251.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55221,'2021-03-24 16:15:59','/badminton4e/de16990.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55222,'2021-03-24 16:19:48','/encore57ed/accdb333345.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55223,'2021-03-24 16:21:17','/room019/adfbd60433.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55224,'2021-03-24 16:21:53','/npr174a/bdadad50756.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55225,'2021-03-24 16:27:56','/winery6e/dce394431.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55226,'2021-03-24 16:29:23','/immunity85/cfc232321.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55227,'2021-03-24 16:40:08','/gfec/ba191620.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55228,'2021-03-24 16:40:20','/volt162/afafa407173.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55229,'2021-03-24 16:46:00','/mandatory40/ac66240.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55230,'2021-03-24 16:46:20','/alma4049f/bdc133267.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55231,'2021-03-24 16:47:04','/ansi24a29/dbefe30529.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55232,'2021-03-24 16:49:10','/filesize36/ab153370.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55233,'2021-03-24 16:51:21','/manner765d5/dff382807.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55234,'2021-03-24 16:54:48','/intrinsic79/bc14490.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55235,'2021-03-24 16:55:30','/stretchede7/cccc272912.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55236,'2021-03-24 17:04:18','/msds302/bedddc137454.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(55237,'2021-03-24 17:07:17','/therapistsed7/fcaaee452614.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55238,'2021-03-24 17:09:01','/pu4a/dff293211.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55239,'2021-03-24 17:20:03','/restriction68/bf447800.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55240,'2021-03-24 17:23:12','/halfd045c/eacf340928.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55241,'2021-03-24 17:26:43','/lisp58/ebe331581.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55242,'2021-03-24 17:29:34','/oec4bfb/ecf67057.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55243,'2021-03-24 17:29:40','/amarillo52a/cddaaa458244.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55244,'2021-03-24 17:30:24','/owlseb/bbbe76542.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55245,'2021-03-24 17:30:43','/binderdb/af214730.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55246,'2021-03-24 17:34:37','/paymentsd1/fabb362432.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55247,'2021-03-24 17:35:20','/condition31857/efc461067.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55248,'2021-03-24 17:36:54','/debugger81a2/fdcac158265.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55249,'2021-03-24 17:42:14','/warm82b06/fdbcd83359.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55250,'2021-03-24 17:43:03','/crydb051/bdcbc305529.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55251,'2021-03-24 17:46:53','/magistratecd/bbae299812.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55252,'2021-03-24 17:54:07','/informing4c/dad197001.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55253,'2021-03-24 17:55:37','/profitdb9/adfbec202314.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55254,'2021-03-24 17:55:54','/wp-content/plugins/backup_index.php','http://ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'40.76.2.80'),(55255,'2021-03-24 17:58:05','/wp-content/plugins/backup_index.php','https://ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'POST',NULL,'40.76.2.80'),(55256,'2021-03-24 18:04:36','/tired674f3/abde385678.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55257,'2021-03-24 18:05:57','/involvee531e/facdb365419.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55258,'2021-03-24 18:11:11','/echo641/ecacfc463764.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55259,'2021-03-24 18:12:33','/lean4f52/aafab228525.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55260,'2021-03-24 18:12:48','/samanthaa3/ed333160.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.74'),(55261,'2021-03-24 18:15:19','/hierarchybc/fce68571.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55262,'2021-03-24 18:18:19','/citrus67e44/aaab311668.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55263,'2021-03-24 18:19:28','/emp34be/bcebce39726.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55264,'2021-03-24 18:20:47','/samoabf1b/bbecb126825.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55265,'2021-03-24 18:22:25','/extractsf2/db111780.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55266,'2021-03-24 18:27:45','/smp1ddff/dcb377757.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55267,'2021-03-24 18:33:33','/por-que-ingivision','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(55268,'2021-03-24 18:45:31','/charter335d3/debce3789.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55269,'2021-03-24 18:47:19','/breakout38b/ecbfaf118494.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55270,'2021-03-24 18:48:52','/ample55298/cae233357.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55271,'2021-03-24 18:50:19','/diecast37c/aaaea115123.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55272,'2021-03-24 18:52:27','/holding2e0/cfdeb43123.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55273,'2021-03-24 18:54:39','/highlighteddf/de449010.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55274,'2021-03-24 18:54:58','/brooke85/fc411900.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55275,'2021-03-24 18:58:42','/annapolisfc/ad274130.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55276,'2021-03-24 18:59:02','/sheetsd74cb/dcd343767.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(55277,'2021-03-24 19:07:01','/eleanor1f8/fdbcb35523.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55278,'2021-03-24 19:08:54','/organizedabec1/cdd363997.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55279,'2021-03-24 19:10:54','/deale70/bfcebc401274.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55280,'2021-03-24 19:13:12','/glad85/dbec404672.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55281,'2021-03-24 19:14:06','/frutas-y-verduras/albaricoque','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(55282,'2021-03-24 19:17:55','/sought82f29/ebae185278.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55283,'2021-03-24 19:20:34','/solitary56/af319800.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55284,'2021-03-24 19:25:03','/winamp30f/efeac315173.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55285,'2021-03-24 19:27:15','/healthcarefb3f/ecdfec82786.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55286,'2021-03-24 19:36:17','/skirt22ed/dfddd306185.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55287,'2021-03-24 19:37:14','/differencesa9/de43080.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55288,'2021-03-24 19:37:26','/essays0bfce/dbca224758.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55289,'2021-03-24 19:42:14','/lame9d0f/bfacd153785.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(55290,'2021-03-24 19:42:33','/init1f3a9/ebae191958.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.113'),(55291,'2021-03-24 19:43:13','/unless7e1d8/cbc81577.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55292,'2021-03-24 19:43:54','/beirutbb/adb417221.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55293,'2021-03-24 19:53:40','/revenuef5/eafc382482.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55294,'2021-03-24 19:55:43','/supported07/efad402072.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55295,'2021-03-24 20:04:59','/estrenamos-nueva-web/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.112'),(55296,'2021-03-24 20:10:29','/heating77/cacf324092.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55297,'2021-03-24 20:10:48','/addictedae3b1/aedbd115769.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55298,'2021-03-24 20:11:55','/wp-content/plugins/wp-engine-module/wp-engine.php?wrapfe/bafb5452.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55299,'2021-03-24 20:12:16','/leafca172/edefd145029.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55300,'2021-03-24 20:14:02','/billiards08c3f/fcebf75429.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55301,'2021-03-24 20:16:21','/supernaturala4e56/bec175827.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55302,'2021-03-24 20:17:01','/peer4e4/dacad444023.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55303,'2021-03-24 20:20:20','/agreed1cd/abcafe182774.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55304,'2021-03-24 20:21:09','/followersccf47/caa114277.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55305,'2021-03-24 20:21:53','/assets/plugins/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55306,'2021-03-24 20:24:01','/erotik50/dbca290152.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55307,'2021-03-24 20:24:43','/urinarye66ae/fed53497.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55308,'2021-03-24 20:27:19','/lebaneseb750/eaebb155945.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55309,'2021-03-24 20:29:37','/scaled491/adfbb234433.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55310,'2021-03-24 20:43:44','/powderf4/fa305200.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55311,'2021-03-24 20:44:42','/happyda/ab1280.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55312,'2021-03-24 20:45:03','/allowance62d9/ebcabb48756.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55313,'2021-03-24 20:46:09','/salariesdc/adbe368792.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55314,'2021-03-24 20:48:41','/ga44/ff102120.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55315,'2021-03-24 20:52:43','/pelicanf5b/fdacff176594.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55316,'2021-03-24 20:54:09','/plsc0/fa56980.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55317,'2021-03-24 20:55:36','/archive','http://www.ingivision.com','Googlebot/2.1 (+http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55318,'2021-03-24 21:08:54','/opennessc52/dddff458813.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55319,'2021-03-24 21:13:55','/everquest484e0/fdaa96748.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55320,'2021-03-24 21:18:38','/rat79/fb85910.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55321,'2021-03-24 21:22:56','/scattering254b/abeac72605.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55322,'2021-03-24 21:27:58','/additions1c/dbc325541.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55323,'2021-03-24 21:30:42','/trimb98a3/afee445998.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.74'),(55324,'2021-03-24 21:31:44','/andrecf3d/aaabcb410416.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55325,'2021-03-24 21:34:29','/cuba8cea/fdafed465046.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55326,'2021-03-24 21:37:07','/fibre42/aacf329892.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55327,'2021-03-24 21:37:38','/tone02/cbca44082.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55328,'2021-03-24 21:43:40','/barre907/efdcf216295.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55329,'2021-03-24 21:44:00','/coaxial8c688/bdf98727.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55330,'2021-03-24 21:46:40','/baccarat64/da93750.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55331,'2021-03-24 21:50:25','/multiply11/ee374330.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55332,'2021-03-24 21:55:46','/frutas-y-verduras/naranjas-y-mandarinas','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(55333,'2021-03-24 22:02:47','/programmes1cd/affdbb464014.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55334,'2021-03-24 22:11:39','/listenersb31/cafdee333364.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.107 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55335,'2021-03-24 22:11:42','/centroeff64/ead275557.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55336,'2021-03-24 22:11:50','/remarkeddc1c/dabfe119465.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55337,'2021-03-24 22:12:21','/commands93da/fbccfa24136.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55338,'2021-03-24 22:18:33','/ai3a/bb5320.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55339,'2021-03-24 22:18:50','/stuffing035d/efcaae218916.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55340,'2021-03-24 22:19:46','/wp-content/plugins/ioptimization/IOptimize.php?rchk','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'87.106.169.187'),(55341,'2021-03-24 22:27:23','/flows99f4/bdaeea405826.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55342,'2021-03-24 22:35:14','/automated0e79/dfdbbf365136.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55343,'2021-03-24 22:40:50','/wiend5e50/cfda378408.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55344,'2021-03-24 22:43:15','/publishesf74d/bbfade14696.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.74'),(55345,'2021-03-24 22:44:44','/handle1e0a/eeddd222465.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55346,'2021-03-24 22:47:35','/regency4ff/ccdcdf472424.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55347,'2021-03-24 22:47:55','/mib7c/bfd112081.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55348,'2021-03-24 22:50:23','/extractingeb/fd18610.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55349,'2021-03-24 22:50:39','/amazonf01/fccbca121394.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55350,'2021-03-24 22:53:12','/insiderccf81/cad64997.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55351,'2021-03-24 22:53:55','/thunderbird0e/bdd114361.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55352,'2021-03-24 23:07:24','/wp-content/themes/alternate-lite/inc/customizer.php','https://www.ingivision.com','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,404,'GET',NULL,'78.46.210.120'),(55353,'2021-03-24 23:07:49','/detox86/cedf176142.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55354,'2021-03-24 23:10:47','/men15/ddb280441.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55355,'2021-03-24 23:16:53','/achievesae93f/debef359049.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55356,'2021-03-24 23:19:19','/explosive20a/dbcfb391983.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55357,'2021-03-24 23:23:43','/soukirep.html','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.74'),(55358,'2021-03-24 23:24:08','/okaybf49/abece164485.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55359,'2021-03-24 23:24:25','/algaeaf/caec417192.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55360,'2021-03-24 23:36:41','/raymondb565/befba307575.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55361,'2021-03-24 23:39:45','/bonus6f1/ffbcea462844.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55362,'2021-03-24 23:56:45','/cookbooka57e/ddfef367045.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.114'),(55363,'2021-03-24 23:58:12','/called5f0f/defba360745.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55364,'2021-03-24 23:58:21','/stratforde2a95/cfa174077.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55365,'2021-03-24 23:58:31','/sou.csv','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.112'),(55366,'2021-03-25 00:06:53','/hemp9f/ccd476591.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55367,'2021-03-25 00:07:23','/dvrdc/aba251201.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55368,'2021-03-25 00:12:33','/koreabd70/deadfd202596.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55369,'2021-03-25 00:14:14','/usereecc/cfaed185.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55370,'2021-03-25 00:16:51','/gemstones0caa/feedf58115.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55371,'2021-03-25 00:28:54','/mdc91/aedbdf441464.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55372,'2021-03-25 00:29:57','/ethicaleeccc/cbda365898.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55373,'2021-03-25 00:38:15','/jonasfd1/acbbdb357834.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55374,'2021-03-25 00:40:51','/mfr7e/ffcf214152.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55375,'2021-03-25 00:41:57','/additions1c/dbc325541.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55376,'2021-03-25 00:43:38','/castingf77ad/bea207257.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55377,'2021-03-25 00:44:59','/denotes0d/bfad191362.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55378,'2021-03-25 00:46:37','/separate4ae67/efce462228.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55379,'2021-03-25 00:49:15','/domestic243fa/bddce482249.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55380,'2021-03-25 00:51:26','/prevention4a58/dcecd282775.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55381,'2021-03-25 00:52:16','/someonecd/feac141062.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55382,'2021-03-25 00:55:45','/jsp2602f/ffee453228.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55383,'2021-03-25 00:57:04','/morrison79/bcd89921.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55384,'2021-03-25 01:00:28','/acclaimed76240/acab414418.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55385,'2021-03-25 01:00:48','/dangerous15584/eaac204178.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55386,'2021-03-25 01:01:38','/retailers6107/dfdabd86316.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55387,'2021-03-25 01:10:27','/investor6b/adc3211.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55388,'2021-03-25 01:12:55','/frutas-y-verduras/calabacin/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.231'),(55389,'2021-03-25 01:16:50','/conversion5dc/feffca22934.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55390,'2021-03-25 01:19:57','/paperwork2b9/abcaed113754.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55391,'2021-03-25 01:20:17','/aka977/ebbfbf105544.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55392,'2021-03-25 01:24:49','/rum61/accf116342.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55393,'2021-03-25 01:27:09','/neighboure6c7a/ddff338328.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55394,'2021-03-25 01:32:45','/frutas-y-verduras/albaricoques/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.229'),(55395,'2021-03-25 01:33:54','/js/lib/ccard.js','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3770.100 Safari/537.36',NULL,404,'GET',NULL,'45.119.41.58'),(55396,'2021-03-25 01:38:39','/en/index.html','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55397,'2021-03-25 01:39:52','/cheapest8e19a/bbfbf246729.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55398,'2021-03-25 01:42:00','/aggression7c8ba/eaa215217.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55399,'2021-03-25 01:43:10','/guinness3ee/eafcde258434.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55400,'2021-03-25 01:54:21','/frutas-y-verduras/paraguayos/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.227'),(55401,'2021-03-25 01:57:09','/rbie9/cdec34432.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55402,'2021-03-25 01:59:40','/guidebook3cd/fbdaed155654.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55403,'2021-03-25 01:59:54','/topicsfa/cd440840.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55404,'2021-03-25 02:00:03','/wp-content/plugins/wp-engine-module/wp-engine.php?drivea5cdd/cae240737.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55405,'2021-03-25 02:06:54','/cv636/edebed406004.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55406,'2021-03-25 02:11:42','/comebackfb/fc238370.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55407,'2021-03-25 02:13:55','/en/contact-us/ingivision@ingivision.com','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(55408,'2021-03-25 02:22:18','/clinics9a/ad487130.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55409,'2021-03-25 02:22:54','/route98/fcbf182532.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55410,'2021-03-25 02:26:17','/reversible256/fecbca396004.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55411,'2021-03-25 02:33:36','/hypothesisec080/cde228627.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55412,'2021-03-25 02:40:06','/notwithstandingabb45/afdd251238.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55413,'2021-03-25 02:44:36','/obituary1c16/eafec396105.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55414,'2021-03-25 02:54:19','/newsroomf9b9f/abfea330729.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55415,'2021-03-25 02:57:40','/minor88f/fdcdb62673.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.74'),(55416,'2021-03-25 02:59:21','/teams43/bd162340.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55417,'2021-03-25 03:03:09','/sum62/cfd423601.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55418,'2021-03-25 03:06:59','/ua4cd/cadcfd470804.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55419,'2021-03-25 03:07:41','/surfaces61529/adf266917.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55420,'2021-03-25 03:08:33','/honda29/dbd403941.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55421,'2021-03-25 03:10:10','/owner7b5b2/adacb401409.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55422,'2021-03-25 03:11:19','/julianec682/ddac409368.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55423,'2021-03-25 03:13:38','/judgments2eac4/feba413928.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55424,'2021-03-25 03:16:02','/execute16188/bfcaa186859.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55425,'2021-03-25 03:19:59','/plotting4372e/dbc199997.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55426,'2021-03-25 03:28:23','/li47380/afed464388.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55427,'2021-03-25 03:39:45','/draftingcc40d/dcac291288.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55428,'2021-03-25 03:43:42','/figurine74/bddb96942.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55429,'2021-03-25 03:49:13','/scientific139f0/dcecf201929.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55430,'2021-03-25 03:53:27','/kirk3e18/faccfa249856.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55431,'2021-03-25 03:58:53','/tabsde3f7/caef324828.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55432,'2021-03-25 04:02:06','/cassetteba400/fdff5798.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55433,'2021-03-25 04:09:35','/solaracf/dfdbe343633.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55434,'2021-03-25 04:11:37','/diagonal70898/cfa354137.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55435,'2021-03-25 04:18:03','/optic77/fda430691.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55436,'2021-03-25 04:24:27','/equipd51c/dcbacb11506.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55437,'2021-03-25 04:30:16','/expenditure84e2d/fcd306117.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55438,'2021-03-25 04:31:53','/supreme71a/adbefe343424.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55439,'2021-03-25 04:33:59','/yours8d/ea3600.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55440,'2021-03-25 04:34:10','/edsc2/ec148460.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55441,'2021-03-25 04:36:09','/vpnf8/ba348450.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55442,'2021-03-25 04:37:25','/thatd3/bd20010.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55443,'2021-03-25 04:38:16','/ab29/dee263161.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55444,'2021-03-25 04:39:31','/mpls81/ed56970.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55445,'2021-03-25 04:39:48','/strictly2c/cfb26101.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55446,'2021-03-25 04:39:55','/sea2a/ba481320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55447,'2021-03-25 04:40:20','/jim54/db482080.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55448,'2021-03-25 04:40:49','/adv72/ae150770.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55449,'2021-03-25 04:41:37','/sum62/cfd63601.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55450,'2021-03-25 04:42:06','/competitiveness06/fbf113431.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55451,'2021-03-25 04:42:08','/contacto/index.html','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(55452,'2021-03-25 04:42:27','/hood9b/db45740.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55453,'2021-03-25 04:43:11','/prosecutors47aea/dfbf236698.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55454,'2021-03-25 04:43:30','/aggregatorf124/ccafca476826.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55455,'2021-03-25 04:44:04','/instructor44092/dfebe104139.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55456,'2021-03-25 04:44:40','/impressedd8287/ffdd88478.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55457,'2021-03-25 04:45:00','/hugc4/eaad213972.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55458,'2021-03-25 04:45:00','/par35/ab264220.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55459,'2021-03-25 04:45:24','/sgd32/fd376320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55460,'2021-03-25 04:45:51','/sir30/cfab3642.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55461,'2021-03-25 04:46:17','/sqrt39/ba38590.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55462,'2021-03-25 04:46:22','/skib4a72/eba222777.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55463,'2021-03-25 04:46:24','/fujifilm3c82/dfada394505.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55464,'2021-03-25 04:46:40','/cpm0a/fb259150.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55465,'2021-03-25 04:46:42','/buckinghamshire91/fbd318101.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55466,'2021-03-25 04:47:06','/cate2/fe161760.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55467,'2021-03-25 04:48:55','/residency285/cabdf371593.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55468,'2021-03-25 04:49:31','/electricb59/bbefa361693.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55469,'2021-03-25 04:49:50','/kl97/bdb413191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55470,'2021-03-25 04:50:05','/xy69/bd235670.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55471,'2021-03-25 04:51:00','/en/ingivision-en','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(55472,'2021-03-25 04:51:23','/incurredf6a6/fdfddb388396.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55473,'2021-03-25 04:55:09','/searchsearchffdc7/dadd314858.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55474,'2021-03-25 04:56:29','/tutorial843/dabccf144064.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55475,'2021-03-25 04:57:30','/lesions249/fbade54053.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55476,'2021-03-25 04:57:35','/fatiguee419/abcef450055.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55477,'2021-03-25 04:57:59','/mutations776/eebfce12874.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55478,'2021-03-25 04:58:47','/examinations7608d/eea209877.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55479,'2021-03-25 04:59:34','/underwater291d/dffecb130136.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55480,'2021-03-25 05:03:37','/departmentsa8aa/beabc442675.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55481,'2021-03-25 05:04:13','/peterborough12/bde135141.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55482,'2021-03-25 05:04:17','/pavilion656/baffee128664.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55483,'2021-03-25 05:04:22','/fortunately45ea3/ccbe451598.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55484,'2021-03-25 05:04:28','/beautifully06d/ebeeae109864.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55485,'2021-03-25 05:05:40','/specializede4e/ceaafb152726.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55486,'2021-03-25 05:07:17','/geophysicse7d18/dfa39837.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55487,'2021-03-25 05:07:34','/unstable79ec2/cebc190488.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55488,'2021-03-25 05:07:44','/graders56705/afadb319319.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55489,'2021-03-25 05:08:18','/abstraction0ca/abecff195864.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55490,'2021-03-25 05:09:31','/printers73b81/eedd442908.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55491,'2021-03-25 05:09:47','/salomona4315/adbff237189.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55492,'2021-03-25 05:10:05','/granada8003c/ecdcc435469.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55493,'2021-03-25 05:10:13','/developer90a/effce362243.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55494,'2021-03-25 05:10:31','/collaboration4b04b/dae424057.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55495,'2021-03-25 05:11:37','/fluctuations9125/eedeb133095.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55496,'2021-03-25 05:11:50','/focuses510f/cecebf286646.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55497,'2021-03-25 05:12:17','/comparativee7df/dfcfcd226096.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55498,'2021-03-25 05:12:58','/profession4127/fdacbe186576.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55499,'2021-03-25 05:13:25','/wp-content/uploads/2016/06/Logo-color-ingivision.png','https://www.ingivision.com','Googlebot-Image/1.0',NULL,404,'GET',NULL,'66.249.69.231'),(55500,'2021-03-25 05:13:57','/assets/global/plugins/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55501,'2021-03-25 05:15:24','/chestnut0d8b/dbebca73956.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55502,'2021-03-25 05:15:43','/classmates787/fbdac34593.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55503,'2021-03-25 05:16:07','/getaways3ec/beeacf256704.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55504,'2021-03-25 05:16:52','/motionsaaac/dbecfa252796.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55505,'2021-03-25 05:17:16','/dolls84/dce123431.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55506,'2021-03-25 05:19:56','/believefc2c7/babdf341069.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55507,'2021-03-25 05:20:04','/technologies6d9c5/dfbc241408.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55508,'2021-03-25 05:20:12','/berta1/dec15691.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(55509,'2021-03-25 05:21:02','/sourcing15d/cfcebc151424.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55510,'2021-03-25 05:21:24','/ultraviolet7c5fe/baffe397369.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55511,'2021-03-25 05:22:59','/proactive918/effaa173843.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55512,'2021-03-25 05:23:02','/headquartersab81/bfcafc5596.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55513,'2021-03-25 05:23:45','/null9457f/bcfd262578.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55514,'2021-03-25 05:24:01','/eta5f1d/babac54895.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55515,'2021-03-25 05:24:20','/knowledge5705e/bab100897.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55516,'2021-03-25 05:24:31','/simulated987/cacab331083.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55517,'2021-03-25 05:25:00','/pavilion656/baffee248664.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55518,'2021-03-25 05:26:16','/governed1a09/dbebf110215.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55519,'2021-03-25 05:27:02','/entertainment500e7/aae440707.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55520,'2021-03-25 05:28:37','/arrangementb0c7/dffddf265566.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55521,'2021-03-25 05:29:31','/mandated7448b/bebc335008.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55522,'2021-03-25 05:30:01','/thiscategory59a6c/fcec357468.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55523,'2021-03-25 05:30:25','/opportunities458/beecaf301144.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55524,'2021-03-25 05:31:02','/pricerunner54bca/baceb315359.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55525,'2021-03-25 05:31:26','/squirtingc9049/bdf286997.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55526,'2021-03-25 05:32:42','/subroutinebe18/eeceaf218966.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55527,'2021-03-25 05:32:45','/consequences54fe9/abdbd84999.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55528,'2021-03-25 05:32:47','/converters5646/abefc52515.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55529,'2021-03-25 05:34:52','/depreciationd871/bfcfbc371906.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55530,'2021-03-25 05:36:07','/massacree77d/afccaa274956.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55531,'2021-03-25 05:37:06','/continueda00e5/aca382007.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55532,'2021-03-25 05:37:11','/wet2ef24/bdef323208.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55533,'2021-03-25 05:38:15','/bobby38fa/bddae286715.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55534,'2021-03-25 05:38:35','/bouvetf89/cbeef437613.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55535,'2021-03-25 05:38:39','/illustratorac86/cdaefd211646.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55536,'2021-03-25 05:39:32','/diplomatic3c0de/cccc12178.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55537,'2021-03-25 05:39:39','/presenter823/bdebfc374674.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55538,'2021-03-25 05:40:42','/reconciliatione13/aecadb231834.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55539,'2021-03-25 05:41:49','/lola8f7d4/aed359257.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55540,'2021-03-25 05:43:34','/christinee6d80/cda408027.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55541,'2021-03-25 05:43:51','/concentrating4c72c/aafcd219339.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55542,'2021-03-25 05:44:56','/profileprofileb7/fcff237092.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55543,'2021-03-25 05:46:21','/deliberatelyf4/efa134211.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55544,'2021-03-25 05:46:23','/was34/df380030.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55545,'2021-03-25 05:46:46','/conservatives49ad9/cadb31328.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55546,'2021-03-25 05:47:09','/frutas-y-verduras/aguacates/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.229'),(55547,'2021-03-25 05:48:35','/notwithstandingabb45/afdd31238.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55548,'2021-03-25 05:49:32','/multinationalcab8/bdfeaa276106.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55549,'2021-03-25 05:50:11','/ff67/aef43581.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55550,'2021-03-25 05:50:13','/societal4d0b4/ffdeb438709.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55551,'2021-03-25 05:50:18','/instrumentationc62/cdcddf389964.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55552,'2021-03-25 05:51:16','/vp2c/fb467830.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55553,'2021-03-25 05:52:16','/armc1/cb323230.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55554,'2021-03-25 05:53:29','/shreveport242/dfecac98824.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55555,'2021-03-25 05:54:20','/frutas-y-verduras/paraguayo','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(55556,'2021-03-25 05:55:43','/proteins094bb/ceefb264259.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55557,'2021-03-25 05:55:51','/y4f/dfed400382.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55558,'2021-03-25 05:56:00','/gaelicaa8f7/edcef199929.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55559,'2021-03-25 05:58:50','/mechanicsb174/eafae147215.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55560,'2021-03-25 05:59:29','/k00/fee220381.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55561,'2021-03-25 06:00:40','/preparesbd8d/deefec52896.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55562,'2021-03-25 06:05:19','/cald3/be125080.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55563,'2021-03-25 06:05:36','/supported07/efad442072.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55564,'2021-03-25 06:08:21','/essbe/ace259681.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.249'),(55565,'2021-03-25 06:08:28','/assorted786/cebba230173.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55566,'2021-03-25 06:13:58','/agilityc05/fbefae198634.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55567,'2021-03-25 06:14:00','/details705f2/daa100227.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55568,'2021-03-25 06:14:48','/ari1c/bb417270.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55569,'2021-03-25 06:14:49','/phantomedd/afada29683.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55570,'2021-03-25 06:17:47','/due88/dda200761.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55571,'2021-03-25 06:21:32','/irsa7/ac68520.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.251'),(55572,'2021-03-25 06:27:18','/inactivee407/bddedf430506.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.69.247'),(55573,'2021-03-25 06:29:09','/scoutsc7153/ceeb472088.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55574,'2021-03-25 06:36:24','/smilesb79da/faca133018.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55575,'2021-03-25 06:41:05','/ethnicityd8/caf130001.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55576,'2021-03-25 06:43:11','/tsn8f/be457180.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55577,'2021-03-25 06:44:52','/subsections49/bdc399131.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55578,'2021-03-25 06:49:16','/recent8d342/fbfe480548.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55579,'2021-03-25 06:52:51','/warp3917/cdabbf35716.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55580,'2021-03-25 06:56:03','/brit85/eab96161.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55581,'2021-03-25 06:59:22','/hal16/cbce410232.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55582,'2021-03-25 07:00:08','/temporary774b/daaeac23606.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55583,'2021-03-25 07:01:39','/rhetoricf1ba/feaded53286.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55584,'2021-03-25 07:02:08','/sysab/faeb6602.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55585,'2021-03-25 07:08:01','/brother20c9f/cbdd42348.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55586,'2021-03-25 07:09:45','/mossbd/bfb269451.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55587,'2021-03-25 07:11:26','/luxembourgeeea/accdc26255.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55588,'2021-03-25 07:13:04','/enum57a33/aefe137828.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55589,'2021-03-25 07:14:48','/consoles51f4e/dfefb428259.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55590,'2021-03-25 07:15:14','/ac02/bbe82121.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55591,'2021-03-25 07:16:16','/noodles1be7/adcaa379785.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55592,'2021-03-25 07:21:03','/y4f/dfed480382.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55593,'2021-03-25 07:22:29','/nsw50/febe24592.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55594,'2021-03-25 07:24:08','/analyzer3a6c/bebbfe391726.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55595,'2021-03-25 07:24:39','/prospectiveed/debe385912.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55596,'2021-03-25 07:29:06','/cdn002c/aeeba11205.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55597,'2021-03-25 07:33:34','/carefully1d54/bcebf204215.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55598,'2021-03-25 07:36:23','/release2335/bdecb320625.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55599,'2021-03-25 07:37:41','/afff300f/cefc218458.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55600,'2021-03-25 07:39:59','/sea2a/ba401320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55601,'2021-03-25 07:43:02','/inspirationalef/edb390661.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55602,'2021-03-25 07:43:48','/disconnected64/ebc258891.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55603,'2021-03-25 07:46:07','/helicopter22/dbe189441.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55604,'2021-03-25 07:49:28','/ecsb3/bb217890.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55605,'2021-03-25 07:52:29','/resignff/cda19661.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55606,'2021-03-25 07:53:06','/dkbf/dab28831.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55607,'2021-03-25 07:56:36','/frutas-y-verduras/manzana','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(55608,'2021-03-25 07:59:32','/preparationsfd/cdc371531.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55609,'2021-03-25 08:02:01','/ucd5e70/faff67418.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55610,'2021-03-25 08:02:34','/nx82/ad276690.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55611,'2021-03-25 08:11:27','/oa03e17/bbd155127.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55612,'2021-03-25 08:12:02','/hamb0/da68250.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55613,'2021-03-25 08:17:34','/eudc/fb422280.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55614,'2021-03-25 08:17:51','/ab29/dee283161.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55615,'2021-03-25 08:20:53','/discusses0e080/efbc227898.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55616,'2021-03-25 08:21:10','/notebookd5d7/befef263295.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55617,'2021-03-25 08:23:21','/avoidingc33/eaecd449863.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55618,'2021-03-25 08:30:21','/messageslog851/dedcf56733.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55619,'2021-03-25 08:31:02','/cpf0/ff244860.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55620,'2021-03-25 08:36:47','/kiwi6a/aa96870.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55621,'2021-03-25 08:38:02','/diocese8f5/bbbfc276103.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55622,'2021-03-25 08:39:57','/concludedaef/afdbda266494.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55623,'2021-03-25 08:40:30','/fyfa/af425660.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55624,'2021-03-25 08:41:24','/govern7a/facd112982.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55625,'2021-03-25 08:41:45','/bubbles7d5/fcdca33923.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55626,'2021-03-25 08:43:21','/shooting4ef14/cacbb424589.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55627,'2021-03-25 08:43:46','/shiftab/cdd203711.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55628,'2021-03-25 08:45:07','/damien24/cbbf339602.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55629,'2021-03-25 08:47:07','/forefront4dda1/ede338597.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55630,'2021-03-25 08:47:55','/photographs1b32/bbeeec403716.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55631,'2021-03-25 08:48:26','/pt/category/sin-categoria-pl','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(55632,'2021-03-25 08:49:19','/preferd8/fcc64351.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55633,'2021-03-25 08:49:54','/eudc/fb422280.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55634,'2021-03-25 08:53:02','/en/category/news','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(55635,'2021-03-25 08:55:44','/ivy8e/da171720.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55636,'2021-03-25 08:56:16','/tuning68a/dfdab347653.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55637,'2021-03-25 08:58:53','/batteries307/aaedef242854.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55638,'2021-03-25 08:59:24','/cxf6/fd234470.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55639,'2021-03-25 09:05:11','/cpm0a/fb199150.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55640,'2021-03-25 09:08:13','/maintains8b0/adafff128214.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55641,'2021-03-25 09:09:02','/frutas-y-verduras/paraguayos/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.75'),(55642,'2021-03-25 09:14:39','/gprsbc/eb51930.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55643,'2021-03-25 09:17:43','/canaryd4/ca454920.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55644,'2021-03-25 09:18:18','/ox01/ecf56321.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55645,'2021-03-25 09:24:08','/farfc/df260860.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55646,'2021-03-25 09:25:12','/abid0/ccb258231.htm','https://www.ingivision.com','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4_1 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1','https://www.google.co.jp/',404,'GET',NULL,'49.98.167.47'),(55647,'2021-03-25 09:27:18','/deadly41/bd249200.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55648,'2021-03-25 09:27:55','/cs27/ee143760.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55649,'2021-03-25 09:29:02','/assets/global/plugins/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55650,'2021-03-25 09:33:36','/rj59/afa228171.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55651,'2021-03-25 09:35:07','/wp-content/plugins/wp-engine-module/wp-engine.php?monkey4c/fecd406182.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55652,'2021-03-25 09:35:47','/presentation33/edd42161.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55653,'2021-03-25 09:36:38','/tokelau59/ff35120.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55654,'2021-03-25 09:37:17','/cwe3/ab109560.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55655,'2021-03-25 09:39:22','/frutas-y-verduras/nectarinas/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.84'),(55656,'2021-03-25 09:46:08','/collectible8f822/eeac9708.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55657,'2021-03-25 09:46:42','/pu4a/dff33211.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55658,'2021-03-25 09:48:32','/neurological9c/eac35861.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55659,'2021-03-25 09:49:20','/mib7c/bfd392081.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55660,'2021-03-25 09:53:01','/mayo65895/cdbed91559.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55661,'2021-03-25 09:53:06','/beaded2a/ddff53172.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55662,'2021-03-25 09:53:19','/keeper15/eebe31802.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.107'),(55663,'2021-03-25 09:54:10','/wiltonc7/fcb458921.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55664,'2021-03-25 09:55:38','/wikipedia943aa/acea183698.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55665,'2021-03-25 09:56:10','/teee6/bb445550.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55666,'2021-03-25 09:57:03','/oc50/eeb7731.htm','http://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 11_2_3) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36','https://www.google.com.hk/',404,'GET',NULL,'18.163.73.84'),(55667,'2021-03-25 09:57:07','/signup.php','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36','ingivision.com',404,'GET',NULL,'208.94.242.93'),(55668,'2021-03-25 10:05:05','/brittanydb592/fcbcb393179.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55669,'2021-03-25 10:09:14','/argus3f8dc/fbe176717.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55670,'2021-03-25 10:09:47','/geekf30/fadfd307223.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55671,'2021-03-25 10:11:28','/bsba/adcb85042.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55672,'2021-03-25 10:11:52','/movablee06db/bee192127.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55673,'2021-03-25 10:12:13','/style96/ecbb420792.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55674,'2021-03-25 10:12:33','/goodness6c015/adee111778.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55675,'2021-03-25 10:12:55','/vulnerable6a3/cdcbbe107474.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55676,'2021-03-25 10:14:41','/ghettof6/aee72461.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55677,'2021-03-25 10:15:01','/freshmen15341/cdb358587.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55678,'2021-03-25 10:17:41','/cosmeticsad1f/cdfebe6756.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55679,'2021-03-25 10:21:22','/pension64a7/affdbc304936.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55680,'2021-03-25 10:22:26','/rid64/eea87381.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55681,'2021-03-25 10:23:58','/transformse53fc/cff457387.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55682,'2021-03-25 10:24:25','/doi94/dbc412111.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55683,'2021-03-25 10:24:26','/wp-content/themes/ingivi/font/revicons90c6.woff?5510888','https://www.ingivision.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36','https://www.ingivision.com/',404,'GET',NULL,'95.210.249.33'),(55684,'2021-03-25 10:24:27','/wp-content/themes/ingivi/font/revicons90c6.ttf?5510888','https://www.ingivision.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36','https://www.ingivision.com/',404,'GET',NULL,'95.210.249.33'),(55685,'2021-03-25 10:24:29','/wp-content/themes/ingivi/font/revicons90c6.svg?5510888','https://www.ingivision.com','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/35.0.1916.114 Safari/537.36','https://www.ingivision.com/',404,'GET',NULL,'95.210.249.33'),(55686,'2021-03-25 10:25:41','/classification88/bbea163692.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55687,'2021-03-25 10:26:01','/integerf885/aaeca325295.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55688,'2021-03-25 10:26:11','/pdt8e/fc83390.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55689,'2021-03-25 10:33:26','/microscopeac4ff/ecfc93698.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55690,'2021-03-25 10:34:09','/mac90/cf241420.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55691,'2021-03-25 10:38:23','/blocker7ba5/dccffc373396.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55692,'2021-03-25 10:40:27','/warnings204/abcfc467003.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55693,'2021-03-25 10:42:54','/regarded040ca/dafed348099.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55694,'2021-03-25 10:43:30','/rf8c/fce484931.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55695,'2021-03-25 10:47:24','/subwoofer0e/ecbb14232.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55696,'2021-03-25 10:49:22','/by65/bad460011.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55697,'2021-03-25 10:51:56','/ufoc3f7/cadeea50776.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55698,'2021-03-25 10:52:22','/positioned060/eefdc472393.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55699,'2021-03-25 10:52:59','/intlfa/bda9901.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55700,'2021-03-25 10:55:56','/tournamentsae3f4/facbf407849.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55701,'2021-03-25 10:58:19','/spill2bcb8/afa91777.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55702,'2021-03-25 11:01:38','/containerfd/ba285350.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55703,'2021-03-25 11:01:49','/owners86/bf121350.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55704,'2021-03-25 11:02:26','/cppfe/cf198240.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55705,'2021-03-25 11:05:39','/skateboard22b8/fefea236145.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55706,'2021-03-25 11:07:48','/en/we-have-a-new-website/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.130.99'),(55707,'2021-03-25 11:08:07','/translates0196/fbcdc37425.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55708,'2021-03-25 11:08:15','/wipefa/da34260.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55709,'2021-03-25 11:09:58','/santad83/bbadea302044.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55710,'2021-03-25 11:10:48','/woody2da/bcfbb411003.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55711,'2021-03-25 11:11:23','/pane1fc9/ede83457.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55712,'2021-03-25 11:11:45','/kpx178/afaaaa96764.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55713,'2021-03-25 11:11:54','/useda0/aeab122.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55714,'2021-03-25 11:12:04','/games85/ebcf260202.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55715,'2021-03-25 11:20:49','/guidebook3cd/fbdaed115654.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55716,'2021-03-25 11:21:27','/ddr35/be167020.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55717,'2021-03-25 11:21:39','/equation5a954/bbc405097.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55718,'2021-03-25 11:26:58','/agendaf0/fbe203191.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55719,'2021-03-25 11:27:11','/dove82/ac13180.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55720,'2021-03-25 11:27:59','/darren8e/dadf432402.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55721,'2021-03-25 11:29:08','/customizable8860b/fbb254747.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.35'),(55722,'2021-03-25 11:30:13','/defendants4c9/dcdce210213.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55723,'2021-03-25 11:30:52','/sha06/ed433650.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55724,'2021-03-25 11:36:41','/snake20/ad7560.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55725,'2021-03-25 11:39:42','/possessedc13/ceaffa335104.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55726,'2021-03-25 11:40:51','/en/projects','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.116'),(55727,'2021-03-25 11:46:07','/uk9c/afc340291.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55728,'2021-03-25 11:48:36','/missilesda4/abecd174473.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55729,'2021-03-25 11:49:10','/triviac5/ba107290.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55730,'2021-03-25 11:49:47','/yard0f/cb44540.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55731,'2021-03-25 11:57:20','/constructs43/ec175840.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55732,'2021-03-25 11:58:37','/edwin14/ada372161.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55733,'2021-03-25 11:59:16','/texa4/ffe67751.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55734,'2021-03-25 11:59:41','/freshwaterb13b7/cbb171027.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55735,'2021-03-25 12:00:01','/farms56f0b/ceb286227.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55736,'2021-03-25 12:01:10','/frutas-y-verduras/higos/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.85'),(55737,'2021-03-25 12:05:03','/bedf4/fd141260.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55738,'2021-03-25 12:05:32','/alien95c8/fcbbfd165966.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55739,'2021-03-25 12:08:05','/repeatedlya5c7b/cbed10158.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55740,'2021-03-25 12:08:49','/ssc5/fec162991.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55741,'2021-03-25 12:10:37','/mcdonaldad/cf407370.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55742,'2021-03-25 12:15:42','/heathrowcf/fe454420.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55743,'2021-03-25 12:17:39','/performerf744/baade129445.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55744,'2021-03-25 12:20:30','/storey476/bebad157023.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55745,'2021-03-25 12:22:20','/practicesbd5af/cded142128.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55746,'2021-03-25 12:23:00','/pt/2016/05/','https://www.ingivision.com','Mozilla/5.0',NULL,404,'GET',NULL,'114.119.166.166'),(55747,'2021-03-25 12:24:09','/gis9c/be387820.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55748,'2021-03-25 12:27:02','/nolance/aab196701.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55749,'2021-03-25 12:27:39','/cobb33/af35390.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55750,'2021-03-25 12:28:10','/defaults16/fb312060.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55751,'2021-03-25 12:30:32','/mistress15/fbbb487692.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55752,'2021-03-25 12:31:09','/insufficient61/acab390242.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55753,'2021-03-25 12:34:02','/aspects952c3/befa422798.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55754,'2021-03-25 12:34:47','/ornaments1b/afd432241.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55755,'2021-03-25 12:35:09','/teee6/bb85550.htm','http://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.9; rv:78.0) Gecko/20100101 Firefox/78.0','https://www.google.com/',404,'GET',NULL,'116.220.168.86'),(55756,'2021-03-25 12:35:43','/marc03/cfb5011.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55757,'2021-03-25 12:36:29','/acknowledged3b/cffe188942.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55758,'2021-03-25 12:41:15','/sniperfb6/dbcefa237124.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55759,'2021-03-25 12:42:55','/cate2/fe461760.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55760,'2021-03-25 12:43:04','/ams700fe/fef394507.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55761,'2021-03-25 12:45:45','/wash2e6/cdfffb45204.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55762,'2021-03-25 12:45:50','/piecesb1b/afdfa122983.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55763,'2021-03-25 12:45:57','/condos58/ffb89511.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55764,'2021-03-25 12:49:00','/frutas-y-verduras/higo/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.85'),(55765,'2021-03-25 12:52:21','/sciences944/bcbfd261903.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55766,'2021-03-25 12:53:57','/administrators04/ba465610.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55767,'2021-03-25 12:55:39','/entersa4/eb169790.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55768,'2021-03-25 13:01:56','/micc0/eb249310.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55769,'2021-03-25 13:04:56','/avante0/bfb294661.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55770,'2021-03-25 13:05:32','/gucciae/cdeb90912.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55771,'2021-03-25 13:08:57','/wp-content/themes/ingivi/font/revicons90c6.woff?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','https://www.ingivision.com/',404,'GET',NULL,'167.114.124.133'),(55772,'2021-03-25 13:08:58','/wp-content/themes/ingivi/font/revicons90c6.ttf?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','https://www.ingivision.com/',404,'GET',NULL,'167.114.124.133'),(55773,'2021-03-25 13:09:00','/wp-content/themes/ingivi/font/revicons90c6.svg?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','https://www.ingivision.com/',404,'GET',NULL,'167.114.124.133'),(55774,'2021-03-25 13:10:02','/wp-content/themes/ingivi/font/revicons90c6.woff?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','https://www.ingivision.com/',404,'GET',NULL,'167.114.124.133'),(55775,'2021-03-25 13:10:04','/wp-content/themes/ingivi/font/revicons90c6.ttf?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','https://www.ingivision.com/',404,'GET',NULL,'167.114.124.133'),(55776,'2021-03-25 13:10:05','/wp-content/themes/ingivi/font/revicons90c6.svg?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:63.0) Gecko/20100101 Firefox/63.0','https://www.ingivision.com/',404,'GET',NULL,'167.114.124.133'),(55777,'2021-03-25 13:10:14','/wp-content/themes/ingivi/font/revicons90c6.woff?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','https://www.ingivision.com/en/',404,'GET',NULL,'167.114.124.133'),(55778,'2021-03-25 13:10:15','/wp-content/themes/ingivi/font/revicons90c6.ttf?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','https://www.ingivision.com/en/',404,'GET',NULL,'167.114.124.133'),(55779,'2021-03-25 13:10:17','/wp-content/themes/ingivi/font/revicons90c6.svg?5510888','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/64.0.3282.140 Safari/537.36 Edge/17.17134','https://www.ingivision.com/en/',404,'GET',NULL,'167.114.124.133'),(55780,'2021-03-25 13:14:21','/jar6e2/edede28393.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55781,'2021-03-25 13:14:59','/rigbf/efb54311.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55782,'2021-03-25 13:20:11','/containerfd/ba285350.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55783,'2021-03-25 13:20:47','/kev61/aa418500.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55784,'2021-03-25 13:23:51','/studee/ccaa266422.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55785,'2021-03-25 13:24:30','/cmdb9/ecc11301.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55786,'2021-03-25 13:33:19','/jr6734f/bba424137.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55787,'2021-03-25 13:34:14','/dumba3b/dabdae429564.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55788,'2021-03-25 13:34:39','/fairiesc7f7f/daab257528.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55789,'2021-03-25 13:37:08','/prevail49/feec457822.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(55790,'2021-03-25 13:40:01','/weblog8ce5/cccbee23316.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55791,'2021-03-25 13:40:55','/truths3be1e/cafd35318.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55792,'2021-03-25 13:42:49','/chang23/feee11312.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55793,'2021-03-25 13:43:26','/uss23/fa352850.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55794,'2021-03-25 13:46:09','/trinidad40/ace487341.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55795,'2021-03-25 13:51:27','/secured60/ad325260.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55796,'2021-03-25 13:52:15','/voted80/daae25852.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55797,'2021-03-25 13:52:52','/gis9c/be127820.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55798,'2021-03-25 13:56:11','/warsaw75e0d/eaabd232089.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55799,'2021-03-25 14:01:42','/bowel87/ffc174791.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55800,'2021-03-25 14:02:18','/boxed21/daec409162.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55801,'2021-03-25 14:05:22','/suggestion76/baf306151.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55802,'2021-03-25 14:07:06','/marinere8e7b/fdfcb99239.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55803,'2021-03-25 14:07:26','/ecology80/dd186520.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55804,'2021-03-25 14:11:11','/tortf7/bade436662.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55805,'2021-03-25 14:11:50','/rayb0/fb242480.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55806,'2021-03-25 14:12:44','/snapshotc15/ecdced467824.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55807,'2021-03-25 14:14:28','/fit15/deb261931.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55808,'2021-03-25 14:14:52','/biloxi7b900/eba159157.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55809,'2021-03-25 14:18:45','/readerse6c/cfbadd82304.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55810,'2021-03-25 14:19:56','/similarities07/ca255280.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55811,'2021-03-25 14:20:38','/churcha3/bc320950.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55812,'2021-03-25 14:21:18','/jim54/db202080.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55813,'2021-03-25 14:22:50','/tales297/cadefe485654.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55814,'2021-03-25 14:23:25','/rods68/aaa251211.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55815,'2021-03-25 14:28:29','/woc1/cbfd392972.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55816,'2021-03-25 14:30:08','/malawida/caba48722.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55817,'2021-03-25 14:30:10','/offender50c2/acaccc331096.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55818,'2021-03-25 14:30:45','/ire39/aed78711.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55819,'2021-03-25 14:31:10','/cocos06/aaef95912.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55820,'2021-03-25 14:34:20','/cemeteries3c/fda75761.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55821,'2021-03-25 14:39:35','/massachusettsd9/dbd302471.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55822,'2021-03-25 14:45:13','/palaceccc36/abacd204669.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55823,'2021-03-25 14:45:32','/chanelc2718/dbd14217.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55824,'2021-03-25 14:46:08','/peieb/acf38481.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55825,'2021-03-25 14:49:02','/laurieb3/ae352730.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55826,'2021-03-25 14:49:36','/dnfa/dadc71882.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55827,'2021-03-25 14:49:42','/y4f/dfed380382.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55828,'2021-03-25 14:53:07','/panea9c1/faffed256196.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(55829,'2021-03-25 14:56:35','/medications781/ddcfbc46624.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55830,'2021-03-25 14:58:35','/signaturesb4631/edbc29058.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55831,'2021-03-25 14:59:33','/frutas-y-verduras/mango/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.45.207.134'),(55832,'2021-03-25 14:59:37','/frutas-y-verduras/mangos/','https://www.ingivision.com','Mozilla/5.0 (compatible; YandexBot/3.0; +http://yandex.com/bots)',NULL,404,'GET',NULL,'5.255.253.95'),(55833,'2021-03-25 15:04:43','/walmart31/fd36260.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55834,'2021-03-25 15:08:00','/raiseab/dbb403551.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55835,'2021-03-25 15:14:18','/wp/wp-includes/css/css.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'51.81.111.187'),(55836,'2021-03-25 15:14:19','/wp/wp-includes/fonts/css.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'51.81.111.187'),(55837,'2021-03-25 15:14:27','/cpt55/de379110.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55838,'2021-03-25 15:14:33','/blog/wp-includes/css/css.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'51.81.111.187'),(55839,'2021-03-25 15:14:37','/blog/wp-includes/fonts/css.php','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'51.81.111.187'),(55840,'2021-03-25 15:17:28','/physicallybc6d7/adf328327.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55841,'2021-03-25 15:17:48','/measurements1f5/ceebda224674.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55842,'2021-03-25 15:18:17','/over5f/ee20110.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55843,'2021-03-25 15:19:00','/public/assets/plugins/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55844,'2021-03-25 15:23:52','/phpbbef/cd6340.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55845,'2021-03-25 15:24:25','/boulevard48c34/febda87989.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55846,'2021-03-25 15:25:52','/inspiration97/cdd487011.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55847,'2021-03-25 15:26:57','/knit4e/dcba169932.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55848,'2021-03-25 15:27:35','/micc0/eb369310.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55849,'2021-03-25 15:28:29','/parameterc6b/afefcb383404.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55850,'2021-03-25 15:29:47','/suites257/ceaec42933.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55851,'2021-03-25 15:36:47','/concentrationd9/dfe104321.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55852,'2021-03-25 15:40:47','/screen58c54/abeab61049.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55853,'2021-03-25 15:42:48','/ic78/dfb205391.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55854,'2021-03-25 15:43:32','/seeker6f8/caceb65173.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55855,'2021-03-25 15:45:57','/authenticated91/bfc397961.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55856,'2021-03-25 15:50:50','/learners54/afaf449272.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55857,'2021-03-25 15:51:43','/frutas-y-verduras/melon','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.94'),(55858,'2021-03-25 15:55:19','/mohammed0c13d/bffaa396229.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55859,'2021-03-25 15:56:30','/supportive1773/dcfbd470155.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55860,'2021-03-25 15:58:15','/compliance8929/aefee182165.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55861,'2021-03-25 16:00:40','/godfatherdf/cf299900.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55862,'2021-03-25 16:02:55','/oral03/cb1950.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55863,'2021-03-25 16:03:34','/odbc5b6/bcbfbf455754.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55864,'2021-03-25 16:04:50','/inspiringb53d/dfffa372725.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55865,'2021-03-25 16:05:28','/mst48/fc350430.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55866,'2021-03-25 16:10:10','/hasd6/af200040.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55867,'2021-03-25 16:10:24','/anchor9c/eb26900.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55868,'2021-03-25 16:12:22','/handjobs17/bdcd48782.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55869,'2021-03-25 16:14:18','/edt5e4/afcaa23983.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55870,'2021-03-25 16:16:09','/boulder86/ffc428381.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55871,'2021-03-25 16:20:40','/riobe/ffe85291.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55872,'2021-03-25 16:23:44','/debt52/eeeb441612.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55873,'2021-03-25 16:25:57','/locee07/cccbca47826.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55874,'2021-03-25 16:28:24','/mature6a/bddc181092.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55875,'2021-03-25 16:28:28','/medley7a/bea399211.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55876,'2021-03-25 16:33:18','/smooth0d/cc223880.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55877,'2021-03-25 16:34:43','/gpec/edfb105862.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55878,'2021-03-25 16:39:08','/motivate690/bdcac38233.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55879,'2021-03-25 16:42:41','/jolla9c/cbd317841.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55880,'2021-03-25 16:43:04','/dressinge9b82/cbd48977.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55881,'2021-03-25 16:44:40','/carmen04/de209760.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55882,'2021-03-25 16:46:23','/smellse1/ca76140.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55883,'2021-03-25 16:48:38','/frutas-y-verduras/tomate','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(55884,'2021-03-25 16:49:03','/possiblyd3/dafa423872.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55885,'2021-03-25 16:49:04','/irisa9/cf30230.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55886,'2021-03-25 16:50:28','/crimed7/ec402010.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55887,'2021-03-25 16:52:09','/observed06132/fcbbe163249.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55888,'2021-03-25 16:52:47','/ric5a/ae278360.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55889,'2021-03-25 17:01:37','/righteousness33/daad77802.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55890,'2021-03-25 17:02:14','/consist15c/efaca448123.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55891,'2021-03-25 17:07:27','/shack2c70b/acda374558.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55892,'2021-03-25 17:07:51','/modernafe/eefaee1444.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55893,'2021-03-25 17:08:00','/icq4c/ce166620.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55894,'2021-03-25 17:11:07','/westerns8185/aecadc416606.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55895,'2021-03-25 17:11:54','/denote652/efcdb432883.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55896,'2021-03-25 17:17:28','/sgd32/fd216320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55897,'2021-03-25 17:20:32','/bathroom71a8/edddec123946.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55898,'2021-03-25 17:22:35','/xvid1f/fbf259741.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55899,'2021-03-25 17:23:57','/nx82/ad216690.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55900,'2021-03-25 17:30:00','/makes8b5/fabeb913.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55901,'2021-03-25 17:36:24','/su13/bfc204261.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55902,'2021-03-25 17:39:29','/fewer22/ecd345831.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55903,'2021-03-25 17:40:10','/wwec7/bc191790.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55904,'2021-03-25 17:40:27','/injection05/cfe185791.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55905,'2021-03-25 17:41:59','/boo751/bcafd394153.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55906,'2021-03-25 17:44:08','/monsters69b4f/cfef29988.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55907,'2021-03-25 17:45:10','/xmlrp.php?url=https://textbin.net/raw/feemcpvmob','http://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'104.131.163.221'),(55908,'2021-03-25 17:45:47','/polkca/fcd474141.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55909,'2021-03-25 17:45:53','/nane4/cb412820.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55910,'2021-03-25 17:46:00','/xmlrp.php?url=https://textbin.net/raw/feemcpvmob','https://www.ingivision.com','Mozlila/5.0 (Linux; Android 7.0; SM-G892A Bulid/NRD90M; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/60.0.3112.107 Moblie Safari/537.36','www.google.com',404,'GET',NULL,'104.131.163.221'),(55911,'2021-03-25 17:46:41','/activex157f7/bbd234127.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55912,'2021-03-25 17:48:55','/uploadingb9e/afbacf434344.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55913,'2021-03-25 17:51:57','/micc0/eb369310.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55914,'2021-03-25 17:58:27','/displayb1/cf60750.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55915,'2021-03-25 17:59:01','/attorney4d6b3/ccc222087.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55916,'2021-03-25 17:59:05','/jung46/de37280.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55917,'2021-03-25 18:04:56','/ab29/dee483161.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55918,'2021-03-25 18:07:51','/conditioned31b/bbbfe152793.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55919,'2021-03-25 18:08:35','/crmab/cd204930.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55920,'2021-03-25 18:17:22','/supervisoryc3b7c/ebb233187.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55921,'2021-03-25 18:19:21','/philosophy868b7/faf82747.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55922,'2021-03-25 18:21:55','/malaysian4d/bad293851.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55923,'2021-03-25 18:23:43','/wina9/dc361240.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55924,'2021-03-25 18:26:49','/petersburg021e1/cbdde67779.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55925,'2021-03-25 18:27:29','/ada54/dc468040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55926,'2021-03-25 18:30:37','/imp1a820/cef53207.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55927,'2021-03-25 18:33:52','/lambdaefdde/caecd466539.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55928,'2021-03-25 18:35:30','/maybebc/ed61590.htm','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.151.233'),(55929,'2021-03-25 18:36:22','/resonance109f0/afdad291419.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55930,'2021-03-25 18:36:30','/income07/eff481021.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55931,'2021-03-25 18:36:51','/expediaa36/aeadfb8804.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55932,'2021-03-25 18:37:01','/aft53/fff99481.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55933,'2021-03-25 18:37:15','/workaroundc7/bd278510.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55934,'2021-03-25 18:41:59','/compaq80/aa265070.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55935,'2021-03-25 18:42:19','/aac578/cdbbb475353.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55936,'2021-03-25 18:42:39','/rebounds55a/daffeb253154.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55937,'2021-03-25 18:42:39','/asib3/ba419140.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55938,'2021-03-25 18:43:13','/souki.csv','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.0'),(55939,'2021-03-25 18:45:37','/proto674b1/bdc316397.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55940,'2021-03-25 18:45:50','/schedules173f/bebdac205106.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55941,'2021-03-25 18:46:30','/spc76/efb57601.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55942,'2021-03-25 18:48:05','/thorntoncc/aab313671.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55943,'2021-03-25 18:52:56','/warriors60bb/cadeb468715.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55944,'2021-03-25 18:55:13','/surrounds32f57/aceec199809.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55945,'2021-03-25 19:02:50','/jr6734f/bba344137.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55946,'2021-03-25 19:04:41','/directorate0bb/dfdca433463.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55947,'2021-03-25 19:05:23','/crib97/af211850.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55948,'2021-03-25 19:05:23','/lqe7/dff176491.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55949,'2021-03-25 19:08:04','/pt/contacto-pt/','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.152.246'),(55950,'2021-03-25 19:10:08','/decisive84/afca358032.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55951,'2021-03-25 19:13:56','/bidc3e0c/eddc361138.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55952,'2021-03-25 19:14:12','/workstation5a44/bcfaf89215.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55953,'2021-03-25 19:14:51','/irqb5/da239330.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55954,'2021-03-25 19:15:55','/en/ingivision-en','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(55955,'2021-03-25 19:17:36','/filee3/dbd440281.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55956,'2021-03-25 19:20:14','/sheetsd74cb/dcd343767.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55957,'2021-03-25 19:20:32','/uda7/caac16682.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55958,'2021-03-25 19:23:37','/metallicad30d0/dadcf228109.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55959,'2021-03-25 19:24:17','/altfa/bf206320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55960,'2021-03-25 19:25:38','/buddyac450/cfb243247.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55961,'2021-03-25 19:27:19','/frutas-y-verduras/kiwi/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(55962,'2021-03-25 19:28:51','/noahff/bbbd12592.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55963,'2021-03-25 19:29:59','/sgtb5/cad31511.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55964,'2021-03-25 19:33:06','/porcelaindf551/daabe127249.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55965,'2021-03-25 19:34:54','/public/assets/plugins/jquery-file-upload/server/php/?file=tf2rghf.jpg','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/56.0.2896.3 Safari/537.36','http://www.google.com/',404,'GET',NULL,'23.228.109.147'),(55966,'2021-03-25 19:39:29','/ff67/aef463581.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55967,'2021-03-25 19:39:57','/remote3c1e4/fbfcd21639.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55968,'2021-03-25 19:42:10','/projectedaecad/cfa467427.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55969,'2021-03-25 19:42:33','/fulfillment44544/fafb54048.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55970,'2021-03-25 19:43:13','/rome0a/ea63560.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55971,'2021-03-25 19:44:47','/archive','http://www.ingivision.com','Googlebot/2.1 (+http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55972,'2021-03-25 19:45:32','/gt6dff2/fedac405249.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55973,'2021-03-25 19:47:46','/winchester21/ece71161.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55974,'2021-03-25 19:50:08','/tty62a/dadbc354643.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55975,'2021-03-25 19:52:01','/trademarks9c19a/dbca121598.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55976,'2021-03-25 19:57:41','/hypothesese9/ac217980.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55977,'2021-03-25 19:59:18','/validatione2/beca346902.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55978,'2021-03-25 20:01:41','/patagonia7da59/eafee178189.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55979,'2021-03-25 20:02:09','/rj59/afa368171.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55980,'2021-03-25 20:05:45','/murakami0f417/fad479717.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55981,'2021-03-25 20:07:53','/avea7/de302320.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55982,'2021-03-25 20:11:01','/predictingb1f/dabbed216044.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55983,'2021-03-25 20:13:48','/quarter6cd93/ecdbf422229.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55984,'2021-03-25 20:14:40','/analyzing99f/aaafe31013.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55985,'2021-03-25 20:15:31','/incorporated887a1/fcadc264239.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(55986,'2021-03-25 20:20:29','/similarity5d4a1/bfcf230168.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55987,'2021-03-25 20:21:05','/toea5/efc24741.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55988,'2021-03-25 20:26:49','/mso01/eaf56901.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55989,'2021-03-25 20:29:53','/possessionf1398/cadd426648.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55990,'2021-03-25 20:39:24','/portability020/febdf337003.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55991,'2021-03-25 20:40:01','/butler1d/fd447040.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(55992,'2021-03-25 20:44:52','/by65/bad11.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55993,'2021-03-25 20:45:43','/dj76/efb382321.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55994,'2021-03-25 20:47:50','/stemsb1/da32970.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(55995,'2021-03-25 20:48:49','/listmaniacc255/effff112759.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55996,'2021-03-25 20:55:12','/scm23/ec255980.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(55997,'2021-03-25 20:56:30','/jeux94/dc58920.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(55998,'2021-03-25 20:58:18','/hereinafter675e6/feac58608.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(55999,'2021-03-25 20:59:00','/vel77/ae398810.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56000,'2021-03-25 20:59:43','/wp-content/plugins/quadmenu/readme.txt','https://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36',NULL,404,'GET',NULL,'138.94.216.70'),(56001,'2021-03-25 21:01:00','/wp-content/uploads/2016/06/ingivision-ico.png','https://www.ingivision.com','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_5) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/13.1.1 Safari/605.1.15 (Applebot/0.1; +http://www.apple.com/go/applebot)',NULL,404,'GET',NULL,'17.58.97.90'),(56002,'2021-03-25 21:07:44','/expertisef04c/dcafdf204016.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56003,'2021-03-25 21:08:53','/delights08/cea399111.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56004,'2021-03-25 21:11:48','/suppliedbc7f6/cffda382399.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56005,'2021-03-25 21:11:58','/rainfall30e/eceaac32004.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56006,'2021-03-25 21:14:08','/plane66/ee4010.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56007,'2021-03-25 21:17:13','/shropshire88ba8/cafec36409.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56008,'2021-03-25 21:17:18','/pongafe70/ecffc318969.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56009,'2021-03-25 21:22:22','/pagesf9/dc340290.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56010,'2021-03-25 21:23:39','/vpnf8/ba108450.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56011,'2021-03-25 21:24:19','/marketsc91/aafaec301904.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56012,'2021-03-25 21:25:52','/identifyingd476/afcbbe125496.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56013,'2021-03-25 21:26:41','/lithuanian15bc/bbbeef94946.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56014,'2021-03-25 21:27:26','/highs22/cf7660.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56015,'2021-03-25 21:36:11','/peripheral356/ebeaed409494.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56016,'2021-03-25 21:36:39','/en/home','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.151.233'),(56017,'2021-03-25 21:36:51','/tele13/bf15170.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56018,'2021-03-25 21:39:22','/negotiable7578c/ecbce458629.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56019,'2021-03-25 21:40:09','/damagesf6/ac424950.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56020,'2021-03-25 21:42:31','/dmb3/eed187101.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56021,'2021-03-25 21:43:48','/zurd346c/babed36019.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56022,'2021-03-25 21:45:37','/categorizeda75/ccafe235703.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56023,'2021-03-25 21:46:18','/ille0/ff304320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56024,'2021-03-25 21:47:28','/stallbe0cd/cbdaf376979.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56025,'2021-03-25 21:49:49','/chlorinea3991/fffcf476959.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56026,'2021-03-25 21:52:02','/butt3a/bc44580.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56027,'2021-03-25 21:55:05','/georgetown75c/cfbcdd210604.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56028,'2021-03-25 21:56:21','/shots20885/acfad283739.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56029,'2021-03-25 22:10:43','/sakai9c99/bdfcb476805.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56030,'2021-03-25 22:12:02','/continuing03bf/acfea183035.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56031,'2021-03-25 22:12:52','/ttl05/cfb57521.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56032,'2021-03-25 22:14:48','/fyi26/ab194450.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56033,'2021-03-25 22:15:33','/christy86e/dedfe417063.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56034,'2021-03-25 22:17:01','/ticker004a6/bffc252558.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56035,'2021-03-25 22:19:25','/collateralb32a2/ddfd111878.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56036,'2021-03-25 22:22:11','/lavender0852/bfcfb430745.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56037,'2021-03-25 22:23:16','/pt/ingivision-pt','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.150.49'),(56038,'2021-03-25 22:24:27','/allocationsf07bd/bdc335157.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56039,'2021-03-25 22:24:43','/courtneycbd/cbfefa473444.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56040,'2021-03-25 22:25:12','/hzdf7e1/adccc207649.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56041,'2021-03-25 22:25:33','/soak44/ec319340.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56042,'2021-03-25 22:27:43','/frutas-y-verduras/higos','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.149.254'),(56043,'2021-03-25 22:27:55','/locks51122/aba368407.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56044,'2021-03-25 22:29:51','/bedf4/fd281260.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56045,'2021-03-25 22:31:57','/iis0a/cbbf173182.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.123'),(56046,'2021-03-25 22:33:03','/formattingd62/baccff348154.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56047,'2021-03-25 22:33:25','/fictional43/aaff98142.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56048,'2021-03-25 22:40:23','/wp-content/plugins/ioptimizations/IOptimizes.php?hamlorszd','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'149.202.15.202'),(56049,'2021-03-25 22:40:25','/wp-content/plugins/ioptimizations/class.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'149.202.15.202'),(56050,'2021-03-25 22:40:26','/wp-content/plugins/ioptimization/IOptimize.php?rchk','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'149.202.15.202'),(56051,'2021-03-25 22:40:27','/wp-content/plugins/ioptimization/class.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'149.202.15.202'),(56052,'2021-03-25 22:42:27','/architectf8b7a/bdccc306719.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56053,'2021-03-25 22:42:49','/ent9a/cc405450.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56054,'2021-03-25 22:44:57','/produce074/ecfff462273.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56055,'2021-03-25 22:45:16','/quark3bcda/ebe136187.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56056,'2021-03-25 22:46:00','/amplification89/fbdd99092.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56057,'2021-03-25 22:50:45','/reporters054/dfdcac89304.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56058,'2021-03-25 22:51:54','/leveraging22811/ddcd416898.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56059,'2021-03-25 22:52:09','/widely747c/cdecb285015.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56060,'2021-03-25 22:52:33','/making9c/cb630.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56061,'2021-03-25 22:58:49','/ink272/dfadd463033.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56062,'2021-03-25 23:01:28','/collectorac27/ebfdfe325326.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56063,'2021-03-25 23:10:50','/manufacturer7a6/fbcefc61414.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56064,'2021-03-25 23:16:50','/demonstrating61cb/fdbfd72955.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56065,'2021-03-25 23:17:11','/hutb6/ed392640.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56066,'2021-03-25 23:20:18','/underwater291d/dffecb410136.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56067,'2021-03-25 23:20:57','/fab77/be395110.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56068,'2021-03-25 23:29:47','/constructivec74/bbbfe452703.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56069,'2021-03-25 23:34:02','/giftedc5/bacb352072.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56070,'2021-03-25 23:34:19','/weaver6f/dfc372651.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56071,'2021-03-25 23:39:23','/tele13/bf255170.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56072,'2021-03-25 23:39:25','/independenceac4/bbffe164703.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56073,'2021-03-25 23:39:53','/avea7/de102320.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56074,'2021-03-25 23:39:59','/carpets14e67/dcfb14478.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56075,'2021-03-25 23:40:03','/arrangementscc58f/ffaac203879.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56076,'2021-03-25 23:48:43','/circulating7ce4/abaac258815.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56077,'2021-03-25 23:49:21','/wsopd1/af19100.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56078,'2021-03-25 23:54:05','/physicsdc/efd122681.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56079,'2021-03-25 23:56:14','/draws97/daa69521.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56080,'2021-03-25 23:58:11','/orthopedicee42b/dfbab378899.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56081,'2021-03-26 00:04:24','/jblfda/cdaadc198804.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56082,'2021-03-26 00:07:29','/endeavoureb7/bdddc198303.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56083,'2021-03-26 00:07:42','/surprisingly7ca5e/daf150977.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56084,'2021-03-26 00:09:08','/dealersd87c6/ccff483148.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56085,'2021-03-26 00:13:59','/infob7/be20160.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56086,'2021-03-26 00:16:31','/informationalf9fd5/efb485897.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56087,'2021-03-26 00:17:06','/ingredient85dca/fafae370289.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56088,'2021-03-26 00:25:22','/gavedb116/ffebf422209.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56089,'2021-03-26 00:26:34','/pharmacists394/cfbaef317164.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56090,'2021-03-26 00:29:09','/enrolment96fb9/faac176038.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56091,'2021-03-26 00:29:28','/estrenamos-nueva-web/','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'13.66.139.41'),(56092,'2021-03-26 00:30:17','/yrb5/afe145351.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56093,'2021-03-26 00:32:55','/ivy8e/da431720.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56094,'2021-03-26 00:33:12','/ssa44/ff95740.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56095,'2021-03-26 00:36:04','/disposition671/cccadd409224.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56096,'2021-03-26 00:41:54','/subparagraph2da1c/bdef99498.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56097,'2021-03-26 00:45:30','/commissioning6627a/bee38297.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56098,'2021-03-26 00:46:09','/dj76/efb262321.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.70'),(56099,'2021-03-26 00:50:38','/cos11/baef68432.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56100,'2021-03-26 00:51:52','/kev61/aa438500.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56101,'2021-03-26 00:53:53','/dairyc0/ae46820.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56102,'2021-03-26 00:55:37','/deie2/cba92581.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56103,'2021-03-26 01:05:07','/ipbff/bbd37171.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56104,'2021-03-26 01:05:33','/days274/ccceee80204.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56105,'2021-03-26 01:06:18','/windowse44/abcfba480454.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56106,'2021-03-26 01:10:22','/longer5cce8/eaf61527.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56107,'2021-03-26 01:10:50','/dmacff8/dcdeed456836.htm','http://www.ingivision.com','Mozilla/5.0 (iPhone; CPU iPhone OS 14_4 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/14.0.3 Mobile/15E148 Safari/604.1',NULL,404,'GET',NULL,'1.75.245.156'),(56108,'2021-03-26 01:12:31','/howevere836/cffddd260466.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56109,'2021-03-26 01:20:15','/rtfaf/ad418420.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.72'),(56110,'2021-03-26 01:22:00','/stands98ca/aaaed83805.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56111,'2021-03-26 01:23:49','/finishingec/aa327970.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56112,'2021-03-26 01:24:01','/elmb0/cdb93941.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56113,'2021-03-26 01:29:25','/reactionac/aa223960.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56114,'2021-03-26 01:30:46','/fifa80/ad372890.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56115,'2021-03-26 01:35:54','/goddess01/ce210330.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56116,'2021-03-26 01:36:13','/lunch565/fbbafc23584.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56117,'2021-03-26 01:37:30','/driving553/cdfdb302023.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56118,'2021-03-26 01:42:43','/mutant068/ebefdd350944.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56119,'2021-03-26 01:42:45','/striped49/cac255151.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56120,'2021-03-26 01:42:55','/frutas-y-verduras/granadas','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.146.117'),(56121,'2021-03-26 01:50:50','/diver236/acfddc435534.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56122,'2021-03-26 01:54:32','/secure6f/eb101300.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56123,'2021-03-26 02:01:48','/candidatesf3/febe43672.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56124,'2021-03-26 02:08:11','/conn0199/edbfc316715.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56125,'2021-03-26 02:12:01','/horoscopesf1/bdcb431872.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56126,'2021-03-26 02:37:41','/annotated5a/cd168930.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56127,'2021-03-26 02:39:35','/mansfield587/fcecd32863.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56128,'2021-03-26 02:46:00','/moona3/ffe182801.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56129,'2021-03-26 02:47:24','/clocka36b0/ddefe222929.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56130,'2021-03-26 02:50:14','/audible20eec/bfe378447.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56131,'2021-03-26 02:54:44','/foreclosure25/dce252061.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56132,'2021-03-26 03:04:18','/closeout09/baf94891.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56133,'2021-03-26 03:09:15','/retrieval35ec2/dead229128.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56134,'2021-03-26 03:10:50','/enamel37007/abbf315328.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56135,'2021-03-26 03:14:23','/consequence3016a/bbeae108419.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56136,'2021-03-26 03:15:14','/craftsman77/ae78130.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56137,'2021-03-26 03:23:16','/loch37/cea158361.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56138,'2021-03-26 03:27:53','/shiftab/cdd163711.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56139,'2021-03-26 03:40:54','/martineza03fe/bee131787.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56140,'2021-03-26 03:46:08','/titusfade9/cef116617.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56141,'2021-03-26 03:51:33','/humans.txt','http://www.ingivision.com','Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1','http://ingivision.com/humans.txt',404,'GET',NULL,'93.158.90.136'),(56142,'2021-03-26 03:51:34','/ads.txt','http://www.ingivision.com','Mozilla/5.0 (iPhone; CPU iPhone OS 12_0 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Version/12.0 Mobile/15E148 Safari/604.1','http://ingivision.com/ads.txt',404,'GET',NULL,'93.158.90.143'),(56143,'2021-03-26 03:53:58','/rhapsodyd3c57/cfe432517.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56144,'2021-03-26 03:58:04','/tropical52/caba44362.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56145,'2021-03-26 04:08:41','/plastercc0f7/fdb398627.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56146,'2021-03-26 04:09:39','/frutas-y-verduras/patatas','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.132.112'),(56147,'2021-03-26 04:10:23','/insightsf18e/aacddc387576.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56148,'2021-03-26 04:13:36','/calculatedc0/dc64230.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56149,'2021-03-26 04:25:51','/marcel2851/fccbdc116986.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56150,'2021-03-26 04:28:35','/attractionscf/aaaa83292.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56151,'2021-03-26 04:39:12','/vitro530ad/ebfdd210069.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56152,'2021-03-26 04:39:29','/cancellationsbd/cdf178331.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56153,'2021-03-26 04:44:42','/mandatec9/babe269882.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56154,'2021-03-26 04:54:08','/sutherland57/cfa455941.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56155,'2021-03-26 04:55:35','/last0690/deefde126.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56156,'2021-03-26 04:56:56','/radio53e/dbdfa460693.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56157,'2021-03-26 04:59:08','/en/author/admin','https://www.ingivision.com','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,404,'GET',NULL,'114.119.145.116'),(56158,'2021-03-26 05:09:52','/snapc2/bcc227321.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56159,'2021-03-26 05:09:57','/glue1e/bbbb290882.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56160,'2021-03-26 05:13:08','/ecards684fa/ffcd391318.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56161,'2021-03-26 05:16:56','/coral1f/ccd486801.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56162,'2021-03-26 05:21:27','/ckfinder/ckfinder.html','http://www.ingivision.com','Mozilla/5.0 (Windows NT 5.1; rv:22.0) Gecko/20100101 Firefox/22.0 Paros/3.2.13',NULL,404,'GET',NULL,'45.76.85.137'),(56163,'2021-03-26 05:24:34','/marketed908b/cafebc136536.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56164,'2021-03-26 05:28:54','/listed192fc/cbbb360668.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56165,'2021-03-26 05:30:53','/environments785c/feecf484985.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56166,'2021-03-26 05:34:28','/meatda/aeb484041.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56167,'2021-03-26 05:38:42','/naturalfa14d/dcdee20759.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56168,'2021-03-26 05:39:02','/econo44c/aebcfb178024.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56169,'2021-03-26 05:39:57','/hvacb497/cedffc194686.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56170,'2021-03-26 05:50:28','/ckfinder/ckfinder.html','http://www.ingivision.com','Mozilla/5.0 (Windows NT 5.1; rv:22.0) Gecko/20100101 Firefox/22.0 Paros/3.2.13',NULL,404,'GET',NULL,'45.76.85.137'),(56171,'2021-03-26 05:52:09','/temptation17/fd435230.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56172,'2021-03-26 05:55:06','/quotae0de/dadf134818.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56173,'2021-03-26 05:56:14','/breachc3/dba429001.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56174,'2021-03-26 05:57:59','/activist28/abe71541.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56175,'2021-03-26 05:59:06','/wigs45847/efbdc355149.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56176,'2021-03-26 06:09:16','/wp-content/themes/alternate-lite/inc/customizer.php','https://www.ingivision.com','Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Firefox/52.0',NULL,404,'GET',NULL,'95.217.185.189'),(56177,'2021-03-26 06:18:41','/ietf8a9e/caadf212035.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56178,'2021-03-26 06:21:07','/err0ba/deaeb351353.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56179,'2021-03-26 06:21:26','/prototypee3/de189140.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56180,'2021-03-26 06:24:09','/bergen9e4/ffafd33903.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56181,'2021-03-26 06:39:13','/jsp2602f/ffee133228.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56182,'2021-03-26 06:44:46','/dunlop533/dfcfcd398884.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56183,'2021-03-26 06:45:58','/msge5ae7/dcfc25978.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56184,'2021-03-26 06:49:13','/example9ad/cebac320583.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56185,'2021-03-26 06:56:51','/dominanceada9e/adedd75799.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56186,'2021-03-26 07:15:38','/useful0e/ecbe341412.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56187,'2021-03-26 07:17:48','/notice07a96/ccdbc200689.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56188,'2021-03-26 07:20:18','/intra1bb2c/ebeae193629.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56189,'2021-03-26 07:21:57','/corpus96bea/fdcb229888.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56190,'2021-03-26 07:30:09','/new02e74/bce480027.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56191,'2021-03-26 07:32:20','/reggae5f/ce68480.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56192,'2021-03-26 07:32:58','/phenotype6e/de119470.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56193,'2021-03-26 07:35:34','/caucasian613c/abceaf417586.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56194,'2021-03-26 07:43:05','/rival3f/ff111080.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56195,'2021-03-26 07:49:01','/dietary67/abd388031.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56196,'2021-03-26 07:50:50','/wp/wp-admin/','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.97 Safari/537.36','http://ingivision.com/',404,'GET',NULL,'192.185.4.175'),(56197,'2021-03-26 07:51:27','/developingab/ae41910.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56198,'2021-03-26 07:52:15','/economy8c01a/bacaa41779.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56199,'2021-03-26 07:58:12','/goodwin9bd/aaeeda219344.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56200,'2021-03-26 08:00:09','/transgender4d/afaf178962.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56201,'2021-03-26 08:20:00','/nmreb/baa276891.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56202,'2021-03-26 08:22:09','/webmin1ac39/aef439267.htm','http://www.ingivision.com','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,404,'GET',NULL,'66.249.64.68'),(56203,'2021-03-26 08:23:54','/funeral0e/aeaa485132.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56204,'2021-03-26 08:24:27','/jenkins197/fcdcf451613.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56205,'2021-03-26 08:26:59','/workshops7e0/debec204203.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56206,'2021-03-26 08:27:42','/literal5e4df/fffd252048.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56207,'2021-03-26 08:30:24','/svn0eb6/edfcc171965.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56208,'2021-03-26 08:31:13','/aloud723e/fedfd52055.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56209,'2021-03-26 08:35:10','/malone918d5/dbdce57249.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56210,'2021-03-26 08:42:28','/forthb67/eecefc303664.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56211,'2021-03-26 08:50:13','/tongaf0e/bceef90313.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56212,'2021-03-26 08:52:11','/wages28ce/fdfffe146846.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56213,'2021-03-26 08:55:59','/thousandca/cc84040.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56214,'2021-03-26 09:06:55','/wp-content/db-cache.php','http://www.ingivision.com','python-requests/2.25.1',NULL,404,'GET',NULL,'40.88.216.53'),(56215,'2021-03-26 09:35:52','/glacier65/da173770.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56216,'2021-03-26 09:36:33','/fragmentsac6/cbfcdc131194.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56217,'2021-03-26 09:36:51','/car918/ddbafd240244.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56218,'2021-03-26 09:37:20','/judaism2d/dcbc313832.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56219,'2021-03-26 09:39:19','/newsletter4b0/ecaebc360894.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56220,'2021-03-26 09:43:22','/exportere2d/eadeea93654.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56221,'2021-03-26 09:43:42','/examination2a271/bbc3467.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56222,'2021-03-26 09:52:51','/facilities47a6/aecccc321136.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56223,'2021-03-26 10:02:26','/sportsd296/cccdce140296.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56224,'2021-03-26 10:03:16','/medicinalb9/caee195752.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56225,'2021-03-26 10:40:59','/register/','http://www.ingivision.com','Mozilla/5.0 (Windows NT 6.3; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/38.0.2125.111 Safari/537.36','http://ingivision.com/register/',404,'GET',NULL,'46.161.14.104'),(56226,'2021-03-26 10:43:36','/expenditures57/baec206232.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56227,'2021-03-26 10:46:18','/solidaritye81/ddbfae413264.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56228,'2021-03-26 10:48:44','/renamed71358/abace15389.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56229,'2021-03-26 10:52:00','/indians263f/bffca46485.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56230,'2021-03-26 11:01:09','/pl956/cccea64913.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56231,'2021-03-26 11:02:45','/aftermarketa3e14/bdc315407.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56232,'2021-03-26 11:03:13','/xre8c6b/efdbf450569.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56233,'2021-03-26 11:03:45','/unseen2fbd/bfbff399195.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56234,'2021-03-26 11:13:08','/nerdb5/ecda19892.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56235,'2021-03-26 11:20:26','/ultimately9ba1/acfbf225915.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56236,'2021-03-26 11:22:08','/inconvenienceb04f/faadc254785.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56237,'2021-03-26 11:28:33','/maize6c/fcbb396482.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56238,'2021-03-26 11:33:38','/pollen4c4/abbcb137263.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.169'),(56239,'2021-03-26 11:33:57','/leipzigaab/ffaaa178733.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56240,'2021-03-26 11:37:02','/old-index.php?daksldlkdsadas=1&WordPress=lf4.txt&Database=hfwindex.php','http://www.ingivision.com','Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:84.0) Gecko/20100101 Firefox/84.0',NULL,404,'GET',NULL,'217.12.221.24'),(56241,'2021-03-26 11:44:45','/un7c4ed/dbfdf301689.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56242,'2021-03-26 11:46:57','/nw3e77a/cff103577.htm','http://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56243,'2021-03-26 11:57:15','/walt81baa/eef68707.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56244,'2021-03-26 12:01:36','/aftermarketa3e14/bdc75407.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56245,'2021-03-26 12:01:56','/providersa08/afdfca22084.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'207.46.13.72'),(56246,'2021-03-26 12:07:17','/lqe7/dff376491.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56247,'2021-03-26 12:11:16','/stargate12/cde157871.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.76'),(56248,'2021-03-26 12:12:06','/hawkins71b1/ddfae213565.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56249,'2021-03-26 12:19:08','/provider1e4/aaaac461983.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56250,'2021-03-26 12:19:46','/empowerba/eab377811.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.194'),(56251,'2021-03-26 12:26:29','/capability31/baed464942.htm','https://www.ingivision.com','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,404,'GET',NULL,'157.55.39.198'),(56252,'2021-03-26 12:29:51','/wp-signups.php?tomb74/ceec151772.htm','http://www.ingivision.com','Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.88 Safari/537.36','http://ingivision.com/wp-signups.php?tomb74/ceec151772.htm',404,'GET',NULL,'126.4.101.89');
/*!40000 ALTER TABLE `ingi_redirection_404` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_redirection_groups`
--

DROP TABLE IF EXISTS `ingi_redirection_groups`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_redirection_groups` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL,
  `tracking` int(11) NOT NULL DEFAULT '1',
  `module_id` int(11) unsigned NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`id`),
  KEY `module_id` (`module_id`),
  KEY `status` (`status`)
) ENGINE=InnoDB AUTO_INCREMENT=3 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_redirection_groups`
--

LOCK TABLES `ingi_redirection_groups` WRITE;
/*!40000 ALTER TABLE `ingi_redirection_groups` DISABLE KEYS */;
INSERT INTO `ingi_redirection_groups` (`id`, `name`, `tracking`, `module_id`, `status`, `position`) VALUES (1,'Redirecciones',1,1,'enabled',0),(2,'Entradas modificadas',1,1,'enabled',1);
/*!40000 ALTER TABLE `ingi_redirection_groups` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_redirection_items`
--

DROP TABLE IF EXISTS `ingi_redirection_items`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_redirection_items` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `match_url` varchar(2000) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `match_data` text COLLATE utf8mb4_unicode_ci,
  `regex` int(11) unsigned NOT NULL DEFAULT '0',
  `position` int(11) unsigned NOT NULL DEFAULT '0',
  `last_count` int(10) unsigned NOT NULL DEFAULT '0',
  `last_access` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `group_id` int(11) NOT NULL DEFAULT '0',
  `status` enum('enabled','disabled') COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'enabled',
  `action_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `action_code` int(11) unsigned NOT NULL,
  `action_data` mediumtext COLLATE utf8mb4_unicode_ci,
  `match_type` varchar(20) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` text COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`id`),
  KEY `url` (`url`(191)),
  KEY `status` (`status`),
  KEY `regex` (`regex`),
  KEY `group_idpos` (`group_id`,`position`),
  KEY `group` (`group_id`),
  KEY `match_url` (`match_url`(191))
) ENGINE=InnoDB AUTO_INCREMENT=27 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_redirection_items`
--

LOCK TABLES `ingi_redirection_items` WRITE;
/*!40000 ALTER TABLE `ingi_redirection_items` DISABLE KEYS */;
INSERT INTO `ingi_redirection_items` (`id`, `url`, `match_url`, `match_data`, `regex`, `position`, `last_count`, `last_access`, `group_id`, `status`, `action_type`, `action_code`, `action_data`, `match_type`, `title`) VALUES (1,'/nuestro-sistema/','/nuestro-sistema',NULL,0,0,146,'2021-03-25 10:16:37',1,'enabled','url',301,'https://www.ingivision.com/','url',''),(2,'/proyectos/','/proyectos',NULL,0,1,132,'2021-03-23 06:46:14',1,'enabled','url',301,'https://www.ingivision.com/','url',''),(3,'/ingivision/','/ingivision',NULL,0,2,95,'2021-03-21 13:40:21',1,'enabled','url',301,'https://www.ingivision.com/porque-ingivision/','url',''),(4,'/noticias/','/noticias',NULL,0,3,56,'2021-03-24 12:48:42',1,'enabled','url',301,'https://www.ingivision.com/blog/','url',''),(5,'/2017/01/','/2017/01',NULL,0,4,37,'2021-03-17 14:04:51',1,'enabled','url',301,'https://www.ingivision.com/blog/','url',''),(6,'/2016/05/','/2016/05',NULL,0,5,29,'2021-03-22 16:43:33',1,'enabled','url',301,'https://www.ingivision.com/blog/','url',''),(7,'/index.html','/index.html',NULL,0,6,23,'2021-03-18 20:58:42',1,'enabled','url',301,'https://www.ingivision.com/','url',''),(8,'/en/home/','/en/home',NULL,0,7,210,'2021-03-26 06:34:08',1,'enabled','url',301,'https://www.ingivision.com/en/','url',''),(9,'/pt/pt/','/pt/pt',NULL,0,8,26,'2021-03-12 09:28:40',1,'enabled','url',301,'https://www.ingivision.com/en/','url',''),(10,'/pt/','/pt',NULL,0,9,76,'2021-03-20 14:14:26',1,'enabled','url',301,'https://www.ingivision.com/en/','url',''),(11,'/826-2/','/826-2','{\"source\":{\"flag_regex\":false}}',0,10,0,'0000-00-00 00:00:00',1,'enabled','url',301,'/en/826-2/','url',NULL),(12,'/en/826-2/','/en/826-2','{\"source\":{\"flag_regex\":false}}',0,11,2,'2020-10-28 20:21:45',1,'enabled','url',301,'/en/computer-electronic-engineer/','url',NULL),(13,'/wp-content/themes/ingivi/stylesheets/bootstrap.css.map','/wp-content/themes/ingivi/stylesheets/bootstrap.css.map',NULL,0,12,11,'2021-03-14 05:58:23',1,'enabled','url',301,'https://www.ingivision.com','url',NULL),(14,'/.env','/.env',NULL,0,13,150,'2021-03-25 21:31:02',1,'enabled','url',301,'https://www.ingivision.com/','url',NULL),(15,'/wp-includes/css/css.php','/wp-includes/css/css.php',NULL,0,14,24,'2021-03-20 15:13:46',1,'enabled','url',301,'https://www.ingivision.com/','url',NULL),(16,'/gen204?invalidResponse=q=https://translate.googleapis.com/translate_a/single?client=gtx&s,ql=181,r=,rl=0','/gen204',NULL,0,15,0,'0000-00-00 00:00:00',1,'enabled','url',301,'https://www.ingivision.com/','url',NULL),(17,'/wp-includes/fonts/css.php','/wp-includes/fonts/css.php',NULL,0,16,21,'2021-03-20 15:14:43',1,'enabled','url',301,'https://www.ingivision.com/','url',NULL),(18,'/gen204?invalidResponse=q=https://translate.googleapis.com/translate_a/single?client=gtx&s,ql=141,r=,rl=0','/gen204',NULL,0,17,0,'0000-00-00 00:00:00',1,'enabled','url',301,'https://www.ingivision.com/','url',NULL),(19,'/por-que-ingivision/','/por-que-ingivision',NULL,0,18,14,'2021-03-25 05:55:14',1,'enabled','url',301,'https://www.ingivision.com/porque-ingivision/','url',NULL),(20,'/pt/nossos-proyectos/','/pt/nossos-proyectos',NULL,0,19,24,'2021-03-25 15:02:37',1,'enabled','url',301,'https://www.ingivision.com/servicios/','url',NULL),(21,'/en/contact-us/','/en/contact-us',NULL,0,20,38,'2021-03-24 20:22:53',1,'enabled','url',301,'https://www.ingivision.com/en/contact/','url',NULL),(22,'/en/ingivision-en/','/en/ingivision-en',NULL,0,21,23,'2021-03-01 19:29:01',1,'enabled','url',301,'https://www.ingivision.com/en/','url',NULL),(23,'/work-whith-us/','/work-whith-us','{\"source\":{\"flag_regex\":false}}',0,22,0,'0000-00-00 00:00:00',1,'enabled','url',301,'/en/work-whith-us/','url',NULL),(24,'^/.*$','regex','{\"source\":{\"flag_regex\":true}}',1,23,0,'0000-00-00 00:00:00',1,'enabled','error',403,'a:1:{s:2:\"ip\";a:1:{i:0;s:13:\"66.249.66.216\";}}','ip',NULL),(25,'/fruit-logistica-2017/','/fruit-logistica-2017',NULL,0,24,10,'2021-03-23 07:49:41',1,'enabled','url',301,'https://www.ingivision.com/blog/','url',NULL),(26,'/2021/03/23/todo-lo-que-debes-saber-sobre-inteligencia-artificial-y-su-aplicacion-en-la-industria-hortofruticola/','/2021/03/23/todo-lo-que-debes-saber-sobre-inteligencia-artificial-y-su-aplicacion-en-la-industria-hortofruticola','{\"source\":{\"flag_regex\":false}}',0,25,0,'0000-00-00 00:00:00',1,'enabled','url',301,'/2021/03/23/inteligencia-artificial-aplicacion-sector-hortofruticola/','url',NULL);
/*!40000 ALTER TABLE `ingi_redirection_items` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_redirection_logs`
--

DROP TABLE IF EXISTS `ingi_redirection_logs`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_redirection_logs` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `created` datetime NOT NULL,
  `url` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `domain` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `sent_to` mediumtext COLLATE utf8mb4_unicode_ci,
  `agent` mediumtext COLLATE utf8mb4_unicode_ci,
  `referrer` mediumtext COLLATE utf8mb4_unicode_ci,
  `http_code` int(11) unsigned NOT NULL DEFAULT '0',
  `request_method` varchar(10) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `request_data` mediumtext COLLATE utf8mb4_unicode_ci,
  `redirect_by` varchar(50) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `redirection_id` int(11) unsigned DEFAULT NULL,
  `ip` varchar(45) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `created` (`created`),
  KEY `redirection_id` (`redirection_id`),
  KEY `ip` (`ip`)
) ENGINE=InnoDB AUTO_INCREMENT=1148 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_redirection_logs`
--

LOCK TABLES `ingi_redirection_logs` WRITE;
/*!40000 ALTER TABLE `ingi_redirection_logs` DISABLE KEYS */;
INSERT INTO `ingi_redirection_logs` (`id`, `created`, `url`, `domain`, `sent_to`, `agent`, `referrer`, `http_code`, `request_method`, `request_data`, `redirect_by`, `redirection_id`, `ip`) VALUES (1094,'2021-03-18 19:58:42','/index.html','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',7,'114.119.130.99'),(1095,'2021-03-18 23:05:20','/proyectos/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/40.0.2214.115 Safari/537.36',NULL,301,'GET',NULL,'redirection',2,'143.244.47.192'),(1096,'2021-03-19 04:26:57','/.env','https://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'46.101.109.137'),(1097,'2021-03-19 06:58:35','/en/home/','https://www.ingivision.com','https://www.ingivision.com/en/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',8,'114.119.149.254'),(1098,'2021-03-19 08:17:11','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_2) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'185.195.232.246'),(1099,'2021-03-19 09:15:34','/wp-includes/css/css.php','http://bessbrooksurgewww.ingivision.com','https://www.ingivision.com/','python-requests/2.25.1',NULL,301,'GET',NULL,'redirection',15,'217.160.45.39'),(1100,'2021-03-19 09:16:17','/wp-includes/fonts/css.php','http://bessbrooksurgewww.ingivision.com','https://www.ingivision.com/','python-requests/2.25.1',NULL,301,'GET',NULL,'redirection',17,'217.160.45.39'),(1101,'2021-03-19 15:39:08','/wp-includes/css/css.php','http://www.ingivision.com','https://www.ingivision.com/','python-requests/2.25.1',NULL,301,'GET',NULL,'redirection',15,'104.131.40.203'),(1102,'2021-03-19 15:39:46','/wp-includes/fonts/css.php','http://www.ingivision.com','https://www.ingivision.com/','python-requests/2.25.1',NULL,301,'GET',NULL,'redirection',17,'104.131.40.203'),(1103,'2021-03-19 22:07:02','/en/home/','https://www.ingivision.com','https://www.ingivision.com/en/','Mozilla/5.0 (iPad; U; CPU OS 3_2_1 like Mac OS X; en-us) AppleWebKit/531.21.10 (KHTML, like Gecko) Mobile/7B405',NULL,301,'GET',NULL,'redirection',8,'54.38.137.21'),(1104,'2021-03-19 23:01:58','/fruit-logistica-2017/','https://www.ingivision.com','https://www.ingivision.com/blog/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',25,'13.66.139.46'),(1105,'2021-03-20 13:14:26','/pt/','https://www.ingivision.com','https://www.ingivision.com/en/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',10,'114.119.151.233'),(1106,'2021-03-20 13:34:28','/proyectos/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',2,'114.119.149.254'),(1107,'2021-03-20 14:13:46','/wp-includes/css/css.php','http://www.ingivision.com','https://www.ingivision.com/','python-requests/2.25.1',NULL,301,'GET',NULL,'redirection',15,'104.131.40.203'),(1108,'2021-03-20 14:14:44','/wp-includes/fonts/css.php','http://www.ingivision.com','https://www.ingivision.com/','python-requests/2.25.1',NULL,301,'GET',NULL,'redirection',17,'104.131.40.203'),(1109,'2021-03-20 20:06:45','/nuestro-sistema/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',1,'66.249.66.198'),(1110,'2021-03-20 20:18:01','/proyectos/','http://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (compatible; MojeekBot/0.10; +https://www.mojeek.com/bot.html)',NULL,301,'GET',NULL,'redirection',2,'5.102.173.71'),(1111,'2021-03-21 00:31:36','/.env','http://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'3.142.185.121'),(1112,'2021-03-21 00:31:47','/.env','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'3.142.185.121'),(1113,'2021-03-21 01:10:15','/pt/nossos-proyectos/','https://www.ingivision.com','https://www.ingivision.com/servicios/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',20,'114.119.145.123'),(1114,'2021-03-21 03:12:49','/fruit-logistica-2017/','https://www.ingivision.com','https://www.ingivision.com/blog/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',25,'13.66.139.46'),(1115,'2021-03-21 09:42:43','/nuestro-sistema/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',1,'13.66.139.113'),(1116,'2021-03-21 12:40:21','/ingivision/','https://www.ingivision.com','https://www.ingivision.com/porque-ingivision/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',3,'114.119.152.246'),(1117,'2021-03-21 18:03:32','/nuestro-sistema/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.95 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',1,'66.249.64.85'),(1118,'2021-03-22 01:19:35','/proyectos/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',2,'13.66.139.113'),(1119,'2021-03-22 02:22:44','/fruit-logistica-2017/','https://www.ingivision.com','https://www.ingivision.com/blog/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',25,'13.66.139.16'),(1120,'2021-03-22 11:26:56','/en/contact-us/','http://ingivision.com','https://www.ingivision.com/en/contact/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',21,'114.119.151.233'),(1121,'2021-03-22 11:48:55','/.env','http://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'62.210.168.194'),(1122,'2021-03-22 14:12:44','/nuestro-sistema/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',1,'13.66.139.113'),(1123,'2021-03-22 15:43:33','/2016/05/','https://www.ingivision.com','https://www.ingivision.com/blog/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',6,'114.119.145.116'),(1124,'2021-03-23 00:22:48','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,301,'GET',NULL,'redirection',14,'13.72.107.111'),(1125,'2021-03-23 05:46:14','/proyectos/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',2,'13.66.139.113'),(1126,'2021-03-23 06:49:41','/fruit-logistica-2017/','https://www.ingivision.com','https://www.ingivision.com/blog/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',25,'13.66.139.16'),(1127,'2021-03-23 11:11:31','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'52.188.50.116'),(1128,'2021-03-23 15:21:26','/.env','http://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,301,'GET',NULL,'redirection',14,'45.41.132.177'),(1129,'2021-03-23 20:22:33','/en/contact-us/','https://www.ingivision.com','https://www.ingivision.com/en/contact/','AdsBot-Google (+http://www.google.com/adsbot.html)',NULL,301,'GET',NULL,'redirection',21,'66.249.89.150'),(1130,'2021-03-24 09:34:59','/pt/nossos-proyectos/','https://www.ingivision.com','https://www.ingivision.com/servicios/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',20,'13.66.139.74'),(1131,'2021-03-24 11:14:48','/nuestro-sistema/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',1,'114.119.146.117'),(1132,'2021-03-24 11:48:42','/noticias/','https://www.ingivision.com','https://www.ingivision.com/blog/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',4,'114.119.132.112'),(1133,'2021-03-24 12:09:19','/en/contact-us/','https://www.ingivision.com','https://www.ingivision.com/en/contact/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',21,'114.119.146.94'),(1134,'2021-03-24 14:22:33','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'13.84.186.129'),(1135,'2021-03-24 14:22:33','/.env','http://hostmaster.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'13.84.186.129'),(1136,'2021-03-24 14:22:33','/.env','http://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'13.84.186.129'),(1137,'2021-03-24 19:22:53','/en/contact-us/','https://www.ingivision.com','https://www.ingivision.com/en/contact/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',21,'114.119.152.246'),(1138,'2021-03-24 23:25:54','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:77.0) Gecko/20100101 Firefox/77.0',NULL,301,'GET',NULL,'redirection',14,'13.72.107.111'),(1139,'2021-03-25 01:11:08','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'144.168.222.254'),(1140,'2021-03-25 02:33:52','/.env','https://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'161.97.114.94'),(1141,'2021-03-25 04:55:14','/por-que-ingivision/','https://www.ingivision.com','https://www.ingivision.com/porque-ingivision/','Mozilla/5.0 (Linux; Android 7.0;) AppleWebKit/537.36 (KHTML, like Gecko) Mobile Safari/537.36 (compatible; PetalBot;+https://aspiegel.com/petalbot)',NULL,301,'GET',NULL,'redirection',19,'114.119.145.123'),(1142,'2021-03-25 09:16:37','/nuestro-sistema/','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (Linux; Android 6.0.1; Nexus 5X Build/MMB29P) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.102 Mobile Safari/537.36 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)',NULL,301,'GET',NULL,'redirection',1,'66.249.64.85'),(1143,'2021-03-25 09:53:37','/.env','https://www.ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'51.103.40.182'),(1144,'2021-03-25 14:02:37','/pt/nossos-proyectos/','https://www.ingivision.com','https://www.ingivision.com/servicios/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',20,'13.66.139.74'),(1145,'2021-03-25 20:31:01','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'GET',NULL,'redirection',14,'91.194.55.226'),(1146,'2021-03-25 20:31:02','/.env','http://ingivision.com','https://www.ingivision.com/','Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/81.0.4044.129 Safari/537.36',NULL,301,'POST',NULL,'redirection',14,'91.194.55.226'),(1147,'2021-03-26 05:34:08','/en/home/','http://www.ingivision.com','https://www.ingivision.com/en/','Mozilla/5.0 (compatible; bingbot/2.0; +http://www.bing.com/bingbot.htm)',NULL,301,'GET',NULL,'redirection',8,'157.55.39.198');
/*!40000 ALTER TABLE `ingi_redirection_logs` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_css`
--

DROP TABLE IF EXISTS `ingi_revslider_css`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_css` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `advanced` longtext,
  `params` longtext NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=110 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_css`
--

LOCK TABLES `ingi_revslider_css` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_css` DISABLE KEYS */;
INSERT INTO `ingi_revslider_css` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES (1,'.tp-caption.medium_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\"}'),(2,'.tp-caption.small_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(3,'.tp-caption.medium_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(4,'.tp-caption.large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(5,'.tp-caption.very_large_text','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(6,'.tp-caption.very_big_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\",\"padding-top\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"padding\":\"0px 4px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(9,'.tp-caption.modern_medium_fat_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(10,'.tp-caption.modern_medium_light','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(11,'.tp-caption.modern_big_bluebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\"}'),(12,'.tp-caption.modern_big_redbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"padding-top\":\"1px\",\"letter-spacing\":\"0\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\"}'),(13,'.tp-caption.modern_small_text_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"white-space\":\"nowrap\"},\"hover\":\"\"}','{\"color\":\"#555\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\"}'),(14,'.tp-caption.boxshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"},\"hover\":\"\"}','[]'),(15,'.tp-caption.black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000\"}'),(16,'.tp-caption.noshadow','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','[]'),(17,'.tp-caption.thinheadline_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"rgba(0,0,0,0.85)\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#000\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"position\":\"absolute\",\"text-shadow\":\"none\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"-1.5px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\"},\"hover\":\"\"}','{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px 4px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"width\":\"4000px\",\"height\":\"150px\"},\"hover\":\"\"}','{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":[],\"hover\":\"\"}','{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg','{\"translated\":5,\"type\":\"text\",\"version\":\"4\"}','null','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}'),(48,'.tp-caption.MarkerDisplay','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ff0000\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"font-style\":\"normal\",\"font-family\":\"Permanent Marker\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(49,'.tp-caption.Restaurant-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"120px\",\"line-height\":\"120px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(50,'.tp-caption.Restaurant-Cursive','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Nothing you could do\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(51,'.tp-caption.Restaurant-ScrollDownText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(52,'.tp-caption.Restaurant-Description','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(53,'.tp-caption.Restaurant-Price','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(54,'.tp-caption.Restaurant-Menuitem','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"power2.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(55,'.tp-caption.Furniture-LogoText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"160px\",\"line-height\":\"150px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(56,'.tp-caption.Furniture-Plus','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0.5\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"box-shadow\":\"rgba(0,0,0,0.1) 0 1px 3px\"},\"hover\":\"\"}','{\"color\":\"#e6cfa3\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"6px\",\"7px\",\"4px\",\"7px\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(57,'.tp-caption.Furniture-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\",\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(58,'.tp-caption.Furniture-Subtitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(59,'.tp-caption.Gym-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(60,'.tp-caption.Gym-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(61,'.tp-caption.Gym-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"22\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(62,'.tp-caption.Fashion-SmallText','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"20px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(63,'.tp-caption.Fashion-BigDisplay','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(64,'.tp-caption.Fashion-TextBlock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"40px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(65,'.tp-caption.Sports-Display','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"13px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(66,'.tp-caption.Sports-DisplayFat','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":[\"\"],\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"130px\",\"line-height\":\"130px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(67,'.tp-caption.Sports-Subline','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\"},\"hover\":\"\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"font-size\":\"32px\",\"line-height\":\"32px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Raleway\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(68,'.tp-caption.Instagram-Caption','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(69,'.tp-caption.News-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"60px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(70,'.tp-caption.News-Subtitle','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0px\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"300\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"24px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Roboto Slab\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(71,'.tp-caption.Photography-Display','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"5px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"80px\",\"line-height\":\"70px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(72,'.tp-caption.Photography-Subline','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#777777\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(73,'.tp-caption.Photography-ImageHover','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"1000\",\"easing\":\"power3.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(74,'.tp-caption.Photography-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#00ffde\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0.65\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(75,'.tp-caption.Photography-Textblock','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(76,'.tp-caption.Photography-Subline-2','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"20px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(77,'.tp-caption.Photography-ImageHover2','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"0.5\",\"scalex\":\"0.8\",\"scaley\":\"0.8\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"500\",\"easing\":\"back.out\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20\",\"line-height\":\"22\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Arial\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(78,'.tp-caption.WebProduct-Title','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(79,'.tp-caption.WebProduct-SubTitle','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(80,'.tp-caption.WebProduct-Content','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\"}'),(81,'.tp-caption.WebProduct-Menuitem','{\"hover\":\"true\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#999999\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(82,'.tp-caption.WebProduct-Title-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"90px\",\"line-height\":\"90px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(83,'.tp-caption.WebProduct-SubTitle-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.35\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(84,'.tp-caption.WebProduct-Content-Light','{\"hover\":\"false\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"0.65\",\"font-size\":\"16px\",\"line-height\":\"24px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"parallax\":\"-\"}'),(85,'.tp-caption.FatRounded','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"text-shadow\":\"none\"},\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"20px\",\"22px\",\"20px\",\"25px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.5\",\"border-color\":\"#d3d3d3\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0px\",\"border-radius\":[\"50px\",\"50px\",\"50px\",\"50px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(86,'.tp-caption.NotGeneric-Title','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"[object Object]\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"70px\",\"line-height\":\"70px\",\"font-weight\":\"800\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 0px 10px 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(87,'.tp-caption.NotGeneric-SubTitle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"4px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"20px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(88,'.tp-caption.NotGeneric-CallToAction','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"10px 30px 10px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(89,'.tp-caption.NotGeneric-Icon','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"default\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"0px 0px 0px 0px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(90,'.tp-caption.NotGeneric-Menuitem','{\"hover\":\"true\",\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":\"27px 30px 27px 30px\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":\"0px 0px 0px 0px\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(91,'.tp-caption.MarkerStyle','{\"translated\":5,\"type\":\"text\",\"version\":\"5.0\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"text-align\":\"left\",\"0\":\"\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"30px\",\"font-weight\":\"100\",\"font-style\":\"normal\",\"font-family\":\"\\\"Permanent Marker\\\"\",\"padding\":\"0 0 0 0\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":\"0 0 0 0\",\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(92,'.tp-caption.Gym-Menuitem','{\"hover\":\"true\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"200\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"300\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"3px\",\"5px\",\"3px\",\"8px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(93,'.tp-caption.Newspaper-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#FFFFFF\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"13px\",\"line-height\":\"17px\",\"font-weight\":\"700\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#ffffff\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(94,'.tp-caption.Newspaper-Subtitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#a8d8ee\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"20px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"0\",\"0\",\"0\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(95,'.tp-caption.Newspaper-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(96,'.tp-caption.Newspaper-Title-Centered','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"50px\",\"line-height\":\"55px\",\"font-weight\":\"400\",\"font-style\":\"normal\",\"font-family\":\"\\\"Roboto Slab\\\"\",\"padding\":[\"0\",\"0\",\"10px\",\"0\"],\"text-decoration\":\"none\",\"text-align\":\"center\",\"background-color\":\"transparent\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(97,'.tp-caption.Hero-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#000000\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(98,'.tp-caption.Video-Title','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#fff\",\"color-transparency\":\"1\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(99,'.tp-caption.Video-SubTitle','{\"hover\":\"false\",\"type\":\"text\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"0\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"12px\",\"line-height\":\"12px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"5px\",\"5px\",\"5px\",\"5px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0.35\",\"border-color\":\"transparent\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"0\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"-20%\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(100,'.tp-caption.NotGeneric-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\",\"text-align\":\"left\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"1\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(101,'.tp-caption.NotGeneric-BigButton','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"14px\",\"line-height\":\"14px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"27px\",\"30px\",\"27px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.15\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(102,'.tp-caption.WebProduct-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#333333\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#ffffff\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"16px\",\"line-height\":\"48px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"0px\",\"40px\",\"0px\",\"40px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#333333\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"none\",\"border-width\":\"2\",\"border-radius\":[\"0\",\"0\",\"0\",\"0\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(103,'.tp-caption.Restaurant-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffe081\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"3px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"500\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#0a0a0a\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(104,'.tp-caption.Gym-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power1.inOut\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#8bc027\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"0\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(105,'.tp-caption.Gym-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#72a800\",\"background-transparency\":\"0\",\"border-color\":\"#8bc027\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"power2.inOut\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"transparent\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(106,'.tp-caption.Sports-Button-Light','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(107,'.tp-caption.Sports-Button-Red','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"1\",\"border-color\":\"#000000\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"500\",\"easing\":\"none\"}','{\"idle\":{\"letter-spacing\":\"2px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"17px\",\"line-height\":\"17px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"12px\",\"35px\",\"12px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#db1c22\",\"background-transparency\":\"1\",\"border-color\":\"#db1c22\",\"border-transparency\":\"0\",\"border-style\":\"solid\",\"border-width\":\"2px\",\"border-radius\":[\"0px\",\"0px\",\"0px\",\"0px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(108,'.tp-caption.Photography-Button','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"auto\",\"speed\":\"300\",\"easing\":\"power3.out\"}','{\"idle\":{\"letter-spacing\":\"1px\"},\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"600\",\"font-style\":\"normal\",\"font-family\":\"Raleway\",\"padding\":[\"13px\",\"35px\",\"13px\",\"35px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.25\",\"border-style\":\"solid\",\"border-width\":\"1px\",\"border-radius\":[\"30px\",\"30px\",\"30px\",\"30px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}'),(109,'.tp-caption.Newspaper-Button-2','{\"hover\":\"true\",\"type\":\"button\",\"version\":\"5.0\",\"translated\":\"5\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"text-decoration\":\"none\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"1\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"opacity\":\"1\",\"scalex\":\"1\",\"scaley\":\"1\",\"skewx\":\"0\",\"skewy\":\"0\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"pointer_events\":\"auto\",\"css_cursor\":\"pointer\",\"speed\":\"300\",\"easing\":\"none\"}','{\"idle\":\"\",\"hover\":\"\"}','{\"color\":\"#ffffff\",\"color-transparency\":\"1\",\"font-size\":\"15px\",\"line-height\":\"15px\",\"font-weight\":\"900\",\"font-style\":\"normal\",\"font-family\":\"Roboto\",\"padding\":[\"10px\",\"30px\",\"10px\",\"30px\"],\"text-decoration\":\"none\",\"text-align\":\"left\",\"background-color\":\"#000000\",\"background-transparency\":\"0\",\"border-color\":\"#ffffff\",\"border-transparency\":\"0.5\",\"border-style\":\"solid\",\"border-width\":\"2\",\"border-radius\":[\"3px\",\"3px\",\"3px\",\"3px\"],\"z\":\"0\",\"skewx\":\"0\",\"skewy\":\"0\",\"scalex\":\"1\",\"scaley\":\"1\",\"opacity\":\"1\",\"xrotate\":\"0\",\"yrotate\":\"0\",\"2d_rotation\":\"0\",\"2d_origin_x\":\"50\",\"2d_origin_y\":\"50\",\"pers\":\"600\",\"corner_left\":\"nothing\",\"corner_right\":\"nothing\",\"parallax\":\"-\"}');
/*!40000 ALTER TABLE `ingi_revslider_css` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_css_bkp`
--

DROP TABLE IF EXISTS `ingi_revslider_css_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_css_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `settings` longtext,
  `hover` longtext,
  `advanced` longtext,
  `params` longtext NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=48 DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_css_bkp`
--

LOCK TABLES `ingi_revslider_css_bkp` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_css_bkp` DISABLE KEYS */;
INSERT INTO `ingi_revslider_css_bkp` (`id`, `handle`, `settings`, `hover`, `advanced`, `params`) VALUES (1,'.tp-caption.medium_grey',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"padding\":\"2px 4px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#888\",\"white-space\":\"nowrap\"}'),(2,'.tp-caption.small_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"14px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(3,'.tp-caption.medium_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(4,'.tp-caption.large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(5,'.tp-caption.very_large_text',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"0px 2px 5px rgba(0, 0, 0, 0.5)\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"letter-spacing\":\"-2px\"}'),(6,'.tp-caption.very_big_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#000\"}'),(7,'.tp-caption.very_big_black',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"700\",\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\",\"padding\":\"0px 4px\",\"padding-top\":\"1px\",\"background-color\":\"#fff\"}'),(8,'.tp-caption.modern_medium_fat',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(9,'.tp-caption.modern_medium_fat_white',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(10,'.tp-caption.modern_medium_light',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"24px\",\"line-height\":\"20px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(11,'.tp-caption.modern_big_bluebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"800\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#4e5b6c\",\"letter-spacing\":\"0\"}'),(12,'.tp-caption.modern_big_redbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-family\":\"\\\"Open Sans\\\", sans-serif\",\"padding\":\"3px 10px\",\"padding-top\":\"1px\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"background-color\":\"#de543e\",\"letter-spacing\":\"0\"}'),(13,'.tp-caption.modern_small_text_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#555\",\"text-shadow\":\"none\",\"font-size\":\"14px\",\"line-height\":\"22px\",\"font-family\":\"Arial\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-style\":\"none\",\"white-space\":\"nowrap\"}'),(14,'.tp-caption.boxshadow',NULL,NULL,NULL,'{\"-moz-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"-webkit-box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\",\"box-shadow\":\"0px 0px 20px rgba(0, 0, 0, 0.5)\"}'),(15,'.tp-caption.black',NULL,NULL,NULL,'{\"color\":\"#000\",\"text-shadow\":\"none\"}'),(16,'.tp-caption.noshadow',NULL,NULL,NULL,'{\"text-shadow\":\"none\"}'),(17,'.tp-caption.thinheadline_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(18,'.tp-caption.thintext_dark',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"rgba(0,0,0,0.85)\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"16px\",\"line-height\":\"26px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"transparent\"}'),(19,'.tp-caption.largeblackbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#000\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(20,'.tp-caption.largepinkbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#db4360\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(21,'.tp-caption.largewhitebg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#000\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#fff\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(22,'.tp-caption.largegreenbg',NULL,NULL,NULL,'{\"position\":\"absolute\",\"color\":\"#fff\",\"text-shadow\":\"none\",\"font-weight\":\"300\",\"font-size\":\"50px\",\"line-height\":\"70px\",\"font-family\":\"\\\"Open Sans\\\"\",\"background-color\":\"#67ae73\",\"padding\":\"0px 20px\",\"-webkit-border-radius\":\"0px\",\"-moz-border-radius\":\"0px\",\"border-radius\":\"0px\"}'),(23,'.tp-caption.excerpt',NULL,NULL,NULL,'{\"font-size\":\"36px\",\"line-height\":\"36px\",\"font-weight\":\"700\",\"font-family\":\"Arial\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"rgba(0, 0, 0, 1)\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"letter-spacing\":\"-1.5px\",\"padding\":\"1px 4px 0px 4px\",\"width\":\"150px\",\"white-space\":\"normal !important\",\"height\":\"auto\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 255, 255)\",\"border-style\":\"none\"}'),(24,'.tp-caption.large_bold_grey',NULL,NULL,NULL,'{\"font-size\":\"60px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"padding\":\"1px 4px 0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(25,'.tp-caption.medium_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(102, 102, 102)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(26,'.tp-caption.small_thin_grey',NULL,NULL,NULL,'{\"font-size\":\"18px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(117, 117, 117)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"1px 4px 0px\",\"text-shadow\":\"none\",\"margin\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(27,'.tp-caption.lightgrey_divider',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(235, 235, 235, 1)\",\"width\":\"370px\",\"height\":\"3px\",\"background-position\":\"initial initial\",\"background-repeat\":\"initial initial\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(28,'.tp-caption.large_bold_darkblue',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(29,'.tp-caption.medium_bg_darkblue',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(52, 73, 94)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(30,'.tp-caption.medium_bold_red',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(31,'.tp-caption.medium_light_red',NULL,NULL,NULL,'{\"font-size\":\"21px\",\"line-height\":\"26px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(227, 58, 12)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(32,'.tp-caption.medium_bg_red',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(227, 58, 12)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(33,'.tp-caption.medium_bold_orange',NULL,NULL,NULL,'{\"font-size\":\"24px\",\"line-height\":\"30px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(243, 156, 18)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(34,'.tp-caption.medium_bg_orange',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(243, 156, 18)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(35,'.tp-caption.grassfloor',NULL,NULL,NULL,'{\"text-decoration\":\"none\",\"background-color\":\"rgba(160, 179, 151, 1)\",\"width\":\"4000px\",\"height\":\"150px\",\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(36,'.tp-caption.large_bold_white',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(37,'.tp-caption.medium_light_white',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(38,'.tp-caption.mediumlarge_light_white',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(39,'.tp-caption.mediumlarge_light_white_center',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"#ffffff\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px 0px 0px 0px\",\"text-align\":\"center\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(40,'.tp-caption.medium_bg_asbestos',NULL,NULL,NULL,'{\"font-size\":\"20px\",\"line-height\":\"20px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(127, 140, 141)\",\"padding\":\"10px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(41,'.tp-caption.medium_light_black',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"36px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(42,'.tp-caption.large_bold_black',NULL,NULL,NULL,'{\"font-size\":\"58px\",\"line-height\":\"60px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(43,'.tp-caption.mediumlarge_light_darkblue',NULL,NULL,NULL,'{\"font-size\":\"34px\",\"line-height\":\"40px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(52, 73, 94)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(44,'.tp-caption.small_light_white',NULL,NULL,NULL,'{\"font-size\":\"17px\",\"line-height\":\"28px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"transparent\",\"padding\":\"0px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(45,'.tp-caption.roundedimage',NULL,NULL,NULL,'{\"border-width\":\"0px\",\"border-color\":\"rgb(34, 34, 34)\",\"border-style\":\"none\"}'),(46,'.tp-caption.large_bg_black',NULL,NULL,NULL,'{\"font-size\":\"40px\",\"line-height\":\"40px\",\"font-weight\":\"800\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(255, 255, 255)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(0, 0, 0)\",\"padding\":\"10px 20px 15px\",\"border-width\":\"0px\",\"border-color\":\"rgb(255, 214, 88)\",\"border-style\":\"none\"}'),(47,'.tp-caption.mediumwhitebg',NULL,NULL,NULL,'{\"font-size\":\"30px\",\"line-height\":\"30px\",\"font-weight\":\"300\",\"font-family\":\"\\\"Open Sans\\\"\",\"color\":\"rgb(0, 0, 0)\",\"text-decoration\":\"none\",\"background-color\":\"rgb(255, 255, 255)\",\"padding\":\"5px 15px 10px\",\"text-shadow\":\"none\",\"border-width\":\"0px\",\"border-color\":\"rgb(0, 0, 0)\",\"border-style\":\"none\"}');
/*!40000 ALTER TABLE `ingi_revslider_css_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_layer_animations`
--

DROP TABLE IF EXISTS `ingi_revslider_layer_animations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_layer_animations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_layer_animations`
--

LOCK TABLES `ingi_revslider_layer_animations` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_layer_animations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_layer_animations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_layer_animations_bkp`
--

DROP TABLE IF EXISTS `ingi_revslider_layer_animations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_layer_animations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `handle` text NOT NULL,
  `params` text NOT NULL,
  `settings` text,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_layer_animations_bkp`
--

LOCK TABLES `ingi_revslider_layer_animations_bkp` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_layer_animations_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_layer_animations_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_navigations`
--

DROP TABLE IF EXISTS `ingi_revslider_navigations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_navigations` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_navigations`
--

LOCK TABLES `ingi_revslider_navigations` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_navigations` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_navigations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_navigations_bkp`
--

DROP TABLE IF EXISTS `ingi_revslider_navigations_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_navigations_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `name` varchar(191) NOT NULL,
  `handle` varchar(191) NOT NULL,
  `type` varchar(191) NOT NULL,
  `css` longtext NOT NULL,
  `markup` longtext NOT NULL,
  `settings` longtext,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_navigations_bkp`
--

LOCK TABLES `ingi_revslider_navigations_bkp` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_navigations_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_navigations_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_sliders`
--

DROP TABLE IF EXISTS `ingi_revslider_sliders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_sliders` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_sliders`
--

LOCK TABLES `ingi_revslider_sliders` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_sliders` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_sliders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_sliders_bkp`
--

DROP TABLE IF EXISTS `ingi_revslider_sliders_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_sliders_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `title` tinytext NOT NULL,
  `alias` tinytext,
  `params` longtext NOT NULL,
  `settings` text,
  `type` varchar(191) NOT NULL DEFAULT '',
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_sliders_bkp`
--

LOCK TABLES `ingi_revslider_sliders_bkp` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_sliders_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_sliders_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_slides`
--

DROP TABLE IF EXISTS `ingi_revslider_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_slides`
--

LOCK TABLES `ingi_revslider_slides` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_slides` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_slides_bkp`
--

DROP TABLE IF EXISTS `ingi_revslider_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `slide_order` int(11) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_slides_bkp`
--

LOCK TABLES `ingi_revslider_slides_bkp` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_slides_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_slides_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_static_slides`
--

DROP TABLE IF EXISTS `ingi_revslider_static_slides`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_static_slides` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_static_slides`
--

LOCK TABLES `ingi_revslider_static_slides` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_static_slides` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_static_slides` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_revslider_static_slides_bkp`
--

DROP TABLE IF EXISTS `ingi_revslider_static_slides_bkp`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_revslider_static_slides_bkp` (
  `id` int(9) NOT NULL AUTO_INCREMENT,
  `slider_id` int(9) NOT NULL,
  `params` longtext NOT NULL,
  `layers` longtext NOT NULL,
  `settings` text NOT NULL,
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_revslider_static_slides_bkp`
--

LOCK TABLES `ingi_revslider_static_slides_bkp` WRITE;
/*!40000 ALTER TABLE `ingi_revslider_static_slides_bkp` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_revslider_static_slides_bkp` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_shortpixel_folders`
--

DROP TABLE IF EXISTS `ingi_shortpixel_folders`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_shortpixel_folders` (
  `id` mediumint(9) NOT NULL AUTO_INCREMENT,
  `path` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `path_md5` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `file_count` int(11) DEFAULT NULL,
  `status` smallint(6) NOT NULL DEFAULT '0',
  `ts_updated` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `ts_created` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `id` (`id`),
  UNIQUE KEY `spf_path_md5` (`path_md5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_shortpixel_folders`
--

LOCK TABLES `ingi_shortpixel_folders` WRITE;
/*!40000 ALTER TABLE `ingi_shortpixel_folders` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_shortpixel_folders` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_shortpixel_meta`
--

DROP TABLE IF EXISTS `ingi_shortpixel_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_shortpixel_meta` (
  `id` mediumint(10) NOT NULL AUTO_INCREMENT,
  `folder_id` mediumint(9) NOT NULL,
  `ext_meta_id` int(10) DEFAULT NULL,
  `path` varchar(512) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `name` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `path_md5` char(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `compressed_size` int(10) NOT NULL DEFAULT '0',
  `compression_type` tinyint(4) DEFAULT NULL,
  `keep_exif` tinyint(4) DEFAULT '0',
  `cmyk2rgb` tinyint(4) DEFAULT '0',
  `resize` tinyint(4) DEFAULT NULL,
  `resize_width` smallint(6) DEFAULT NULL,
  `resize_height` smallint(6) DEFAULT NULL,
  `backup` tinyint(4) DEFAULT '0',
  `status` smallint(6) NOT NULL DEFAULT '0',
  `retries` tinyint(4) NOT NULL DEFAULT '0',
  `message` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `ts_added` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `ts_optimized` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00',
  UNIQUE KEY `sp_id` (`id`),
  UNIQUE KEY `sp_path_md5` (`path_md5`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_shortpixel_meta`
--

LOCK TABLES `ingi_shortpixel_meta` WRITE;
/*!40000 ALTER TABLE `ingi_shortpixel_meta` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_shortpixel_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_term_relationships`
--

DROP TABLE IF EXISTS `ingi_term_relationships`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_term_relationships` (
  `object_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_taxonomy_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `term_order` int(11) NOT NULL DEFAULT '0',
  PRIMARY KEY (`object_id`,`term_taxonomy_id`),
  KEY `term_taxonomy_id` (`term_taxonomy_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_term_relationships`
--

LOCK TABLES `ingi_term_relationships` WRITE;
/*!40000 ALTER TABLE `ingi_term_relationships` DISABLE KEYS */;
INSERT INTO `ingi_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES (20,2,0),(23,2,0),(25,2,0),(35,2,0),(36,2,0),(47,2,0),(48,2,0),(49,2,0),(71,4,0),(71,5,0),(71,6,0),(71,7,0),(71,8,0),(71,9,0),(88,2,0),(97,1,0),(131,12,0),(148,4,0),(148,5,0),(148,6,0),(148,7,0),(148,8,0),(148,9,0),(178,12,0),(179,12,0),(180,12,0),(181,12,0),(182,12,0),(184,12,0),(185,12,0),(187,12,0),(203,1,0),(203,10,0),(562,14,0),(582,1,0),(878,14,0),(882,15,0),(884,15,0),(1103,1,0),(1110,15,0),(1112,15,0),(1113,14,0),(1114,14,0),(1123,9,0),(1123,11,0),(1123,16,0),(1123,17,0),(1123,18,0),(1135,14,0),(1145,11,0),(1145,16,0),(1145,19,0),(1145,20,0),(1145,21,0),(1145,22,0),(1165,11,0),(1165,16,0),(1165,19,0),(1165,20,0),(1165,21,0),(1165,22,0),(1193,9,0),(1208,9,0),(1224,14,0),(1229,14,0),(1239,23,0),(1242,11,0),(1246,1,0),(1255,14,0),(1256,14,0),(1257,14,0),(1260,14,0),(1261,14,0),(1262,14,0),(1263,14,0),(1264,14,0),(1265,14,0),(1266,14,0),(1267,14,0),(1268,14,0),(1269,14,0),(1270,14,0),(1272,11,0),(1272,24,0),(1294,14,0),(1295,14,0);
/*!40000 ALTER TABLE `ingi_term_relationships` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_term_taxonomy`
--

DROP TABLE IF EXISTS `ingi_term_taxonomy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_term_taxonomy`
--

LOCK TABLES `ingi_term_taxonomy` WRITE;
/*!40000 ALTER TABLE `ingi_term_taxonomy` DISABLE KEYS */;
INSERT INTO `ingi_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES (1,1,'category','',0,4),(2,2,'nav_menu','',0,9),(3,3,'post_tag','',0,0),(4,4,'post_tag','',0,2),(5,5,'post_tag','',0,2),(6,6,'post_tag','',0,2),(7,7,'post_tag','',0,2),(8,8,'post_tag','',0,2),(9,9,'category','',0,5),(10,10,'category','',0,1),(11,11,'category','',0,5),(12,12,'nav_menu','',0,9),(13,13,'flamingo_inbound_channel','',0,0),(14,14,'flamingo_inbound_channel','',13,12),(15,15,'flamingo_inbound_channel','',13,4),(16,16,'post_tag','',0,3),(17,17,'post_tag','',0,1),(18,18,'post_tag','',0,1),(19,19,'post_tag','',0,2),(20,20,'post_tag','',0,2),(21,21,'post_tag','',0,2),(22,22,'post_tag','',0,2),(23,23,'category','',0,1),(24,24,'post_tag','',0,1);
/*!40000 ALTER TABLE `ingi_term_taxonomy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_termmeta`
--

DROP TABLE IF EXISTS `ingi_termmeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_termmeta`
--

LOCK TABLES `ingi_termmeta` WRITE;
/*!40000 ALTER TABLE `ingi_termmeta` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_termmeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_terms`
--

DROP TABLE IF EXISTS `ingi_terms`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `slug` varchar(200) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_terms`
--

LOCK TABLES `ingi_terms` WRITE;
/*!40000 ALTER TABLE `ingi_terms` DISABLE KEYS */;
INSERT INTO `ingi_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES (1,'Sin categoría','sin-categoria',0),(2,'Menu Castellano','menu-castellano',0),(3,'Fruta de primera calidad parámetros de calidad en frutas','fruta-de-primera-calidad-parametros-de-calidad-en-frutas',0),(4,'Fruta de primera calidad','fruta-de-primera-calidad',0),(5,'parámetros de calidad en frutas','parametros-de-calidad-en-frutas',0),(6,'maduración de frutos','maduracion-de-frutos',0),(7,'control de calidad hortofrutícola','control-de-calidad-hortofruticola',0),(8,'Industria 4.0','industria-4-0',0),(9,'Frutas y hortalizas','frutas-hortalizas',0),(10,'Eventos','eventos',0),(11,'software','software',0),(12,'Menu ingles','menu-ingles',0),(13,'Contact Form 7','contact-form-7',0),(14,'Formulario de contacto 1','formulario-de-contacto-1',0),(15,'Formulario oferta de trabajo','formulario-oferta-de-trabajo',0),(16,'software','software',0),(17,'calibradode frutas','calibradode-frutas',0),(18,'clasificación de frutas','clasificacion-de-frutas',0),(19,'calidad externa','calidad-externa',0),(20,'clasificación de cítricos','clasificacion-de-citricos',0),(21,'Clasificación automática de frutas','clasificacion-automatica-de-frutas',0),(22,'Ingigrader','ingigrader',0),(23,'Sector horotfrutícola','sector-horotfruticola',0),(24,'Inteligencia artificial','inteligencia-artificial',0);
/*!40000 ALTER TABLE `ingi_terms` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_usermeta`
--

DROP TABLE IF EXISTS `ingi_usermeta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `meta_value` longtext COLLATE utf8mb4_unicode_ci,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB AUTO_INCREMENT=50 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_usermeta`
--

LOCK TABLES `ingi_usermeta` WRITE;
/*!40000 ALTER TABLE `ingi_usermeta` DISABLE KEYS */;
INSERT INTO `ingi_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES (1,1,'nickname','admirae360'),(2,1,'first_name',''),(3,1,'last_name',''),(4,1,'description',''),(5,1,'rich_editing','true'),(6,1,'syntax_highlighting','true'),(7,1,'comment_shortcuts','false'),(8,1,'admin_color','fresh'),(9,1,'use_ssl','0'),(10,1,'show_admin_bar_front','true'),(11,1,'locale',''),(12,1,'ingi_capabilities','a:1:{s:13:\"administrator\";b:1;}'),(13,1,'ingi_user_level','10'),(14,1,'dismissed_wp_pointers',''),(15,1,'show_welcome_panel','0'),(17,1,'ingi_dashboard_quick_press_last_post_id','1258'),(18,1,'community-events-location','a:1:{s:2:\"ip\";s:11:\"91.126.97.0\";}'),(19,1,'closedpostboxes_dashboard','a:6:{i:0;s:19:\"dashboard_right_now\";i:1;s:18:\"dashboard_activity\";i:2;s:29:\"cms_tpv_dashboard_widget_page\";i:3;s:24:\"wpseo-dashboard-overview\";i:4;s:21:\"dashboard_quick_press\";i:5;s:17:\"dashboard_primary\";}'),(20,1,'metaboxhidden_dashboard','a:0:{}'),(21,1,'managenav-menuscolumnshidden','a:5:{i:0;s:11:\"link-target\";i:1;s:11:\"css-classes\";i:2;s:3:\"xfn\";i:3;s:11:\"description\";i:4;s:15:\"title-attribute\";}'),(22,1,'metaboxhidden_nav-menus','a:1:{i:0;s:12:\"add-post_tag\";}'),(23,1,'nav_menu_recently_edited','2'),(24,1,'_yoast_wpseo_profile_updated','1592409808'),(25,1,'closedpostboxes_page','a:1:{i:0;s:10:\"wpseo_meta\";}'),(26,1,'metaboxhidden_page','a:0:{}'),(28,1,'ingi_user-settings','mfold=o&libraryContent=browse&posts_list_mode=list'),(29,1,'ingi_user-settings-time','1602850464'),(31,1,'closedpostboxes_acf-field-group','a:1:{i:0;s:23:\"acf-field-group-options\";}'),(32,1,'metaboxhidden_acf-field-group','a:1:{i:0;s:7:\"slugdiv\";}'),(33,1,'meta-box-order_page','a:4:{s:4:\"side\";s:34:\"wpseo_meta,acf-group_5bcdb6454b6f8\";s:15:\"acf_after_title\";s:0:\"\";s:6:\"normal\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),(34,1,'screen_layout_page','2'),(35,1,'manageedit-pagecolumnshidden','a:0:{}'),(37,1,'block_lab_show_migration_notice','dismissed'),(38,1,'wpseo-dismiss-configuration-notice','yes'),(40,1,'wpcf7_hide_welcome_panel_on','a:1:{i:0;s:3:\"5.2\";}'),(41,1,'edit_page_per_page','50'),(42,1,'manageedit-postcolumnshidden','a:2:{i:0;s:11:\"wpseo-title\";i:1;s:14:\"wpseo-metadesc\";}'),(43,1,'meta-box-order_dashboard','a:4:{s:6:\"normal\";s:133:\"dashboard_php_nag,dashboard_site_health,dashboard_right_now,dashboard_activity,cms_tpv_dashboard_widget_page,wpseo-dashboard-overview\";s:4:\"side\";s:39:\"dashboard_quick_press,dashboard_primary\";s:7:\"column3\";s:0:\"\";s:7:\"column4\";s:0:\"\";}'),(44,1,'meta-box-order_post','a:4:{s:6:\"normal\";s:10:\"wpseo_meta\";s:4:\"side\";s:23:\"acf-group_5bcdb6454b6f8\";s:15:\"acf_after_title\";s:0:\"\";s:8:\"advanced\";s:0:\"\";}'),(45,1,'closedpostboxes_post','a:0:{}'),(46,1,'metaboxhidden_post','a:1:{i:0;s:23:\"acf-group_5bcdb6454b6f8\";}'),(47,1,'closedpostboxes_block_lab','a:1:{i:0;s:9:\"submitdiv\";}'),(48,1,'metaboxhidden_block_lab','a:0:{}'),(49,1,'session_tokens','a:1:{s:64:\"c60817e1573895fddbb0bbafe278003e697b87442096ff15802ead44ffdbbd6f\";a:4:{s:10:\"expiration\";i:1616676025;s:2:\"ip\";s:13:\"91.126.97.162\";s:2:\"ua\";s:120:\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/89.0.4389.90 Safari/537.36\";s:5:\"login\";i:1616503225;}}');
/*!40000 ALTER TABLE `ingi_usermeta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_users`
--

DROP TABLE IF EXISTS `ingi_users`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_pass` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_nicename` varchar(50) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_email` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_url` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_users`
--

LOCK TABLES `ingi_users` WRITE;
/*!40000 ALTER TABLE `ingi_users` DISABLE KEYS */;
INSERT INTO `ingi_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES (1,'admirae360','$P$BpdYwXkjG9t26j3esgH0h6h2Lqchxx.','admirae360','info@admirae.es','','2020-06-05 16:01:09','',0,'admirae360');
/*!40000 ALTER TABLE `ingi_users` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_wpgmza`
--

DROP TABLE IF EXISTS `ingi_wpgmza`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_wpgmza` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `address` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `pic` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `link` varchar(2083) COLLATE utf8mb4_unicode_ci NOT NULL,
  `icon` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lat` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lng` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `anim` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `infoopen` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `category` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
  `approved` tinyint(1) DEFAULT '1',
  `retina` tinyint(1) DEFAULT '0',
  `type` tinyint(1) DEFAULT '0',
  `did` varchar(500) COLLATE utf8mb4_unicode_ci NOT NULL,
  `sticky` tinyint(1) DEFAULT '0',
  `other_data` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `latlng` point DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_wpgmza`
--

LOCK TABLES `ingi_wpgmza` WRITE;
/*!40000 ALTER TABLE `ingi_wpgmza` DISABLE KEYS */;
INSERT INTO `ingi_wpgmza` (`id`, `map_id`, `address`, `description`, `pic`, `link`, `icon`, `lat`, `lng`, `anim`, `title`, `infoopen`, `category`, `approved`, `retina`, `type`, `did`, `sticky`, `other_data`, `latlng`) VALUES (1,1,'California','','','','','36.778261','-119.4179323999','0','','','',1,0,0,'',0,'','\0\0\0\0\0\0\0J`scB@`g]');
/*!40000 ALTER TABLE `ingi_wpgmza` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_wpgmza_circles`
--

DROP TABLE IF EXISTS `ingi_wpgmza_circles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_wpgmza_circles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci,
  `center` point DEFAULT NULL,
  `radius` float DEFAULT NULL,
  `color` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `opacity` float DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_wpgmza_circles`
--

LOCK TABLES `ingi_wpgmza_circles` WRITE;
/*!40000 ALTER TABLE `ingi_wpgmza_circles` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_wpgmza_circles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_wpgmza_maps`
--

DROP TABLE IF EXISTS `ingi_wpgmza_maps`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_wpgmza_maps` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_title` varchar(256) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_width` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_height` varchar(6) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_start_lat` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_start_lng` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_start_location` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_start_zoom` int(10) NOT NULL,
  `default_marker` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `type` int(10) NOT NULL,
  `alignment` int(10) NOT NULL,
  `directions_enabled` int(10) NOT NULL,
  `styling_enabled` int(10) NOT NULL,
  `styling_json` mediumtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `active` int(1) NOT NULL,
  `kml` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `bicycle` int(10) NOT NULL,
  `traffic` int(10) NOT NULL,
  `dbox` int(10) NOT NULL,
  `dbox_width` varchar(10) COLLATE utf8mb4_unicode_ci NOT NULL,
  `listmarkers` int(10) NOT NULL,
  `listmarkers_advanced` int(10) NOT NULL,
  `filterbycat` tinyint(1) NOT NULL,
  `ugm_enabled` int(10) NOT NULL,
  `ugm_category_enabled` tinyint(1) NOT NULL,
  `fusion` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_width_type` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `map_height_type` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `mass_marker_support` int(10) NOT NULL,
  `ugm_access` int(10) NOT NULL,
  `order_markers_by` int(10) NOT NULL,
  `order_markers_choice` int(10) NOT NULL,
  `show_user_location` int(3) NOT NULL,
  `default_to` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `other_settings` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_wpgmza_maps`
--

LOCK TABLES `ingi_wpgmza_maps` WRITE;
/*!40000 ALTER TABLE `ingi_wpgmza_maps` DISABLE KEYS */;
INSERT INTO `ingi_wpgmza_maps` (`id`, `map_title`, `map_width`, `map_height`, `map_start_lat`, `map_start_lng`, `map_start_location`, `map_start_zoom`, `default_marker`, `type`, `alignment`, `directions_enabled`, `styling_enabled`, `styling_json`, `active`, `kml`, `bicycle`, `traffic`, `dbox`, `dbox_width`, `listmarkers`, `listmarkers_advanced`, `filterbycat`, `ugm_enabled`, `ugm_category_enabled`, `fusion`, `map_width_type`, `map_height_type`, `mass_marker_support`, `ugm_access`, `order_markers_by`, `order_markers_choice`, `show_user_location`, `default_to`, `other_settings`) VALUES (1,'My first map','100','400','45.950464398418106','-109.81550500000003','45.950464398418106,-109.81550500000003',2,'0',1,4,1,0,'',0,'',2,2,1,'100',0,0,0,0,0,'','%','px',1,0,1,2,0,'','a:2:{s:19:\"store_locator_style\";s:6:\"modern\";s:33:\"wpgmza_store_locator_radius_style\";s:6:\"modern\";}');
/*!40000 ALTER TABLE `ingi_wpgmza_maps` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_wpgmza_polygon`
--

DROP TABLE IF EXISTS `ingi_wpgmza_polygon`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_wpgmza_polygon` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `polydata` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `description` text COLLATE utf8mb4_unicode_ci NOT NULL,
  `innerpolydata` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `linecolor` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `lineopacity` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `fillcolor` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `opacity` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `title` varchar(250) COLLATE utf8mb4_unicode_ci NOT NULL,
  `link` varchar(700) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ohfillcolor` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ohlinecolor` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `ohopacity` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `polyname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_wpgmza_polygon`
--

LOCK TABLES `ingi_wpgmza_polygon` WRITE;
/*!40000 ALTER TABLE `ingi_wpgmza_polygon` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_wpgmza_polygon` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_wpgmza_polylines`
--

DROP TABLE IF EXISTS `ingi_wpgmza_polylines`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_wpgmza_polylines` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `polydata` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
  `linecolor` varchar(7) COLLATE utf8mb4_unicode_ci NOT NULL,
  `linethickness` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `opacity` varchar(3) COLLATE utf8mb4_unicode_ci NOT NULL,
  `polyname` varchar(100) COLLATE utf8mb4_unicode_ci NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_wpgmza_polylines`
--

LOCK TABLES `ingi_wpgmza_polylines` WRITE;
/*!40000 ALTER TABLE `ingi_wpgmza_polylines` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_wpgmza_polylines` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_wpgmza_rectangles`
--

DROP TABLE IF EXISTS `ingi_wpgmza_rectangles`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_wpgmza_rectangles` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `name` text COLLATE utf8mb4_unicode_ci,
  `cornerA` point DEFAULT NULL,
  `cornerB` point DEFAULT NULL,
  `color` varchar(16) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `opacity` float DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_wpgmza_rectangles`
--

LOCK TABLES `ingi_wpgmza_rectangles` WRITE;
/*!40000 ALTER TABLE `ingi_wpgmza_rectangles` DISABLE KEYS */;
/*!40000 ALTER TABLE `ingi_wpgmza_rectangles` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_yoast_indexable`
--

DROP TABLE IF EXISTS `ingi_yoast_indexable`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_yoast_indexable` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `permalink` longtext COLLATE utf8mb4_unicode_ci,
  `permalink_hash` varchar(40) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `object_id` bigint(20) DEFAULT NULL,
  `object_type` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `object_sub_type` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `author_id` bigint(20) DEFAULT NULL,
  `post_parent` bigint(20) DEFAULT NULL,
  `title` text COLLATE utf8mb4_unicode_ci,
  `description` mediumtext COLLATE utf8mb4_unicode_ci,
  `breadcrumb_title` text COLLATE utf8mb4_unicode_ci,
  `post_status` varchar(20) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `is_public` tinyint(1) DEFAULT NULL,
  `is_protected` tinyint(1) DEFAULT '0',
  `has_public_posts` tinyint(1) DEFAULT NULL,
  `number_of_pages` int(11) unsigned DEFAULT NULL,
  `canonical` longtext COLLATE utf8mb4_unicode_ci,
  `primary_focus_keyword` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `primary_focus_keyword_score` int(3) DEFAULT NULL,
  `readability_score` int(3) DEFAULT NULL,
  `is_cornerstone` tinyint(1) DEFAULT '0',
  `is_robots_noindex` tinyint(1) DEFAULT '0',
  `is_robots_nofollow` tinyint(1) DEFAULT '0',
  `is_robots_noarchive` tinyint(1) DEFAULT '0',
  `is_robots_noimageindex` tinyint(1) DEFAULT '0',
  `is_robots_nosnippet` tinyint(1) DEFAULT '0',
  `twitter_title` text COLLATE utf8mb4_unicode_ci,
  `twitter_image` longtext COLLATE utf8mb4_unicode_ci,
  `twitter_description` longtext COLLATE utf8mb4_unicode_ci,
  `twitter_image_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `twitter_image_source` text COLLATE utf8mb4_unicode_ci,
  `open_graph_title` text COLLATE utf8mb4_unicode_ci,
  `open_graph_description` longtext COLLATE utf8mb4_unicode_ci,
  `open_graph_image` longtext COLLATE utf8mb4_unicode_ci,
  `open_graph_image_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `open_graph_image_source` text COLLATE utf8mb4_unicode_ci,
  `open_graph_image_meta` mediumtext COLLATE utf8mb4_unicode_ci,
  `link_count` int(11) DEFAULT NULL,
  `incoming_link_count` int(11) DEFAULT NULL,
  `prominent_words_version` int(11) unsigned DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  `language` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_page_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `schema_article_type` varchar(64) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `has_ancestors` tinyint(1) DEFAULT '0',
  `estimated_reading_time_minutes` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `object_type_and_sub_type` (`object_type`,`object_sub_type`),
  KEY `object_id_and_type` (`object_id`,`object_type`),
  KEY `subpages` (`post_parent`,`object_type`,`post_status`,`object_id`),
  KEY `permalink_hash_and_object_type` (`permalink_hash`,`object_type`),
  KEY `prominent_words` (`prominent_words_version`,`object_type`,`object_sub_type`,`post_status`)
) ENGINE=InnoDB AUTO_INCREMENT=938 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_yoast_indexable`
--

LOCK TABLES `ingi_yoast_indexable` WRITE;
/*!40000 ALTER TABLE `ingi_yoast_indexable` DISABLE KEYS */;
INSERT INTO `ingi_yoast_indexable` (`id`, `permalink`, `permalink_hash`, `object_id`, `object_type`, `object_sub_type`, `author_id`, `post_parent`, `title`, `description`, `breadcrumb_title`, `post_status`, `is_public`, `is_protected`, `has_public_posts`, `number_of_pages`, `canonical`, `primary_focus_keyword`, `primary_focus_keyword_score`, `readability_score`, `is_cornerstone`, `is_robots_noindex`, `is_robots_nofollow`, `is_robots_noarchive`, `is_robots_noimageindex`, `is_robots_nosnippet`, `twitter_title`, `twitter_image`, `twitter_description`, `twitter_image_id`, `twitter_image_source`, `open_graph_title`, `open_graph_description`, `open_graph_image`, `open_graph_image_id`, `open_graph_image_source`, `open_graph_image_meta`, `link_count`, `incoming_link_count`, `prominent_words_version`, `created_at`, `updated_at`, `blog_id`, `language`, `region`, `schema_page_type`, `schema_article_type`, `has_ancestors`, `estimated_reading_time_minutes`) VALUES (1,'https://ingivision.admirae.es/author/admirae360/','48:18a50bfeb4feafa6622c6bc50c7ae569',1,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/47a147484904bc2c99f981715f5f24dc?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/47a147484904bc2c99f981715f5f24dc?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-06-17 15:41:41','2021-03-23 11:41:56',1,NULL,NULL,NULL,NULL,0,NULL),(2,'https://www.ingivision.com/','27:70b7a2ab18921727442b6a0594af83a3',6,'post','page',1,0,'Sistema electrónico para calibradores de fácil manejo %%sep%% %%sitename%%','Descubre nuestro sofware: Un sistema electrónico para calibradores adaptable, con altas prestaciones y excelente relación calidad-precio','Inicio','publish',NULL,0,NULL,NULL,NULL,'Sistema electrónico para calibradores',53,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-17 15:41:41','2020-09-20 19:32:31',1,NULL,NULL,NULL,NULL,0,NULL),(4,'https://www.ingivision.com/porque-ingivision/','45:4c4e9bd117e3a58ec83e0c5f42f0f15d',11,'post','page',1,0,'Un sistema electrónico de calibrado de frutas diferente%%sep%% %%sitename%%','¿Por qué trabajar con nosotros? Porque hemos desarrollado un sistema electrónico de calibrado diferente aplicando las últimas tecnologías.','¿Por qué ingivision?','publish',NULL,0,NULL,NULL,NULL,'Un sistema electrónico de calibrado de frutas diferente',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-17 15:41:41','2020-09-03 12:37:14',1,NULL,NULL,NULL,NULL,0,NULL),(6,'https://ingivision.admirae.es/ingivision/','41:136ae627bc4be39a9beefd070eda79e4',15,'post','page',1,0,NULL,NULL,'Ingivision','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-17 15:41:41','2020-08-13 10:04:42',1,NULL,NULL,NULL,NULL,0,NULL),(7,'https://www.ingivision.com/contacto/','36:0faf08b486714c33ccfe597b1b20eb4a',17,'post','page',1,0,'Contacta con nosotros. En esta empresa te atiende el jefe - ingivisión','Si tienes cualquier consulta sobre nuestro sistema electrónico de calibrado ¡contacta con nosotros! Estaremos encantados de ayudarte','Contacto','publish',NULL,0,NULL,NULL,NULL,'Contacta con nosotros',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,44,NULL,'2020-06-17 15:41:41','2021-03-23 23:26:04',1,NULL,NULL,NULL,NULL,0,NULL),(12,'https://ingivision.admirae.es/category/sin-categoria/','53:2135d3e50019b0dd013c7969539d68af',1,'term','category',NULL,NULL,NULL,NULL,'Sin categoría',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-06-17 15:41:41','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(13,NULL,NULL,NULL,'system-page','404',NULL,NULL,'Página no encontrada %%sep%% %%sitename%%',NULL,'Error 404: Página no encontrada',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 15:41:41','2020-07-10 14:11:48',1,NULL,NULL,NULL,NULL,0,NULL),(14,NULL,NULL,NULL,'system-page','search-result',NULL,NULL,'Has buscado %%searchphrase%% %%page%% %%sep%% %%sitename%%',NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 15:41:41','2020-07-10 14:11:48',1,NULL,NULL,NULL,NULL,0,NULL),(15,NULL,NULL,NULL,'date-archive',NULL,NULL,NULL,'%%date%% %%page%% %%sep%% %%sitename%%','',NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,NULL,0,1,0,0,0,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-06-17 15:41:41','2020-07-10 14:11:48',1,NULL,NULL,NULL,NULL,0,NULL),(16,'https://www.ingivision.com/','27:70b7a2ab18921727442b6a0594af83a3',NULL,'home-page',NULL,NULL,NULL,'%%sitename%% %%page%% %%sep%% %%sitedesc%%','Desarrollamos sistemas electrónicos para maquinaria hortofrutícola.','Portada',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,0,0,0,0,0,NULL,NULL,NULL,NULL,NULL,'','','','',NULL,NULL,NULL,NULL,NULL,'2020-06-17 15:41:41','2021-02-27 17:24:51',1,NULL,NULL,NULL,NULL,0,NULL),(17,'https://www.ingivision.com/productos/','37:6d88ffdc18dffd8ad24d63968ba9bdf3',29,'post','page',1,0,'Tres productos para el calibrado de frutas ¡conócelos! %%sep%% %%sitename%%','Ingisorter, Ingisorter Plus e Ingigrader. Tres productos para el calibrado de frutas: desde el más competitivo a la inteligencia artifical','Productos','publish',NULL,0,NULL,NULL,NULL,'Tres productos para el calibrado de frutas',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-06-18 10:47:11','2020-11-19 08:50:31',1,NULL,NULL,NULL,NULL,0,NULL),(18,'https://www.ingivision.com/servicios/','37:32836cebaf66e831394f8db162a65264',31,'post','page',1,0,'Retrofit para calibradores, un servicio que te ahorra costes %%sep%% %%sitename%%','La maquinaria hortofrutícola nueva tiene elevados costes. Nuestro software puede instalarse en cualquier calibrador, tenga los años que tenga','Servicios','publish',NULL,0,NULL,NULL,NULL,'Retrofit para calibradores',41,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-06-18 10:47:34','2020-11-19 09:13:08',1,NULL,NULL,NULL,NULL,0,NULL),(19,'https://www.ingivision.com/blog/','32:e23a6fa81767f8a63d155ab8af8386b7',33,'post','page',1,0,'%%title%%: Noticias y novedades del sector hortofrutícola - Ingivision','Te contamos curiosidades y temas prácticos del sector hortofrutícola en el blog. Visítanos, anímate y deja tus cometarios.','Blog','publish',NULL,0,NULL,NULL,NULL,'Blog',53,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-06-18 10:47:52','2020-09-03 13:00:00',1,NULL,NULL,NULL,NULL,0,NULL),(20,'https://www.ingivision.com/2020/06/18/35/','41:c81ee6b2488b698dd9fabdb8e911bec3',35,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-06-18 10:49:14','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,0,NULL),(21,'https://www.ingivision.com/2020/06/18/36/','41:f23ed8c83f29bc8257cad49117a88d4b',36,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-06-18 10:49:14','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,0,NULL),(23,'https://www.ingivision.com/2020/06/17/inicio/','45:b7d6713e64e1b16b82fe3f94683c5ab4',25,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-06-18 10:49:42','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,0,NULL),(24,'https://www.ingivision.com/2020/06/15/23/','41:2d2e6d76a322d71800febc4c745dd985',23,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-06-18 10:49:42','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,0,NULL),(25,'https://www.ingivision.com/2020/06/15/20/','41:c303c19190401e9a89181a6104e58298',20,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-06-18 10:49:43','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,0,NULL),(27,'https://www.ingivision.com/?post_type=wpcf7_contact_form&p=39','61:b3082a13bbd46b8c8f84aa4d5329d394',39,'post','wpcf7_contact_form',1,0,NULL,NULL,'Formulario de contacto 1','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-06-30 11:57:12','2020-10-28 17:54:05',1,NULL,NULL,NULL,NULL,0,NULL),(29,'https://www.ingivision.com/productos/ingisorter/','48:5996eb3cfb8ea20039d48e7591361280',41,'post','page',1,29,'Calibrado de frutas con Ingisorter, nuestros sofware low cost %%sep%% %%sitename%%','Un programa electrónico para el calibrado de frutas realmente competitivo. Analiza peso, tamaño y color con altas prestaciones.','IngiSorter','publish',NULL,0,NULL,NULL,NULL,'Calibrado de frutas',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-07-10 16:46:21','2020-09-09 15:40:48',1,NULL,NULL,NULL,NULL,1,NULL),(30,'https://www.ingivision.com/productos/ingisorter-plus/','53:294f8cdac0d3de99a67b45dd4e3dded9',43,'post','page',1,29,'Calibrado en frutas con nuestro software IngiSorter Plus %%sep%% %%sitename%%','Si buscas un sistema electrónico para el calibrado en frutas, te recomendamos IngiSorter Plus. Controla peso, tamaño, color, densidad y forma','IngiSorter+','publish',NULL,0,NULL,NULL,NULL,'Calibrado en frutas',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-07-10 16:47:21','2020-08-25 06:57:19',1,NULL,NULL,NULL,NULL,1,NULL),(31,'https://www.ingivision.com/productos/ingigrader/','48:c0678a6e95894bf35d59714bbe0a5113',44,'post','page',1,29,'Calibrado de la fruta con nuestro programa IngiGrader %%sep%% %%sitename%%','Inteligencia artificial para el calibrado de la fruta. Es nuestro sistema de calibración más avanzado y en constante desarrollo. ¡Descúbrelo!','IngiGrader','publish',NULL,0,NULL,NULL,NULL,'Calibrado de la fruta',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-07-10 16:47:22','2021-03-23 08:29:05',1,NULL,NULL,NULL,NULL,1,NULL),(32,'https://www.ingivision.com/2020/07/13/47/','41:58222ec116997db8c4562c031c1724ff',47,'post','nav_menu_item',1,29,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-07-13 18:04:48','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,1,NULL),(33,'https://www.ingivision.com/2020/07/13/48/','41:39317de22a75ed46133b9b6e18a17b04',48,'post','nav_menu_item',1,29,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-07-13 18:04:48','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,1,NULL),(34,'https://www.ingivision.com/2020/07/13/49/','41:3fa01ad6d8393a97dfd980babf82f5e3',49,'post','nav_menu_item',1,29,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-07-13 18:04:48','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,1,NULL),(36,'https://www.ingivision.com/aviso-legal/','39:6dc784833017be840c861f0b30dd9258',55,'post','page',1,0,'Aviso legal: toda la información a tu dispoción %%sep%% %%sitename%%','En este espacio te explicamos toda la información relativa a los términos y condiciones legales que establecemos como responsables de la web.','Aviso legal','publish',NULL,0,NULL,NULL,NULL,'Aviso legal ingivision',61,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,0,NULL,'2020-07-27 09:55:25','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(38,'https://www.ingivision.com/politica-de-privacidad/','50:6e89bb7ad5547eb76aea363b855af4eb',58,'post','page',1,0,'Política de privacidad: Consúltala para tu tranquilidad%%sep%% %%sitename%%','Si quieres saber por qué recogemos datos, qué hacemos con ellos y cómo puedes modificarlos, revisa nuestra política de privacidad.','Política de privacidad','publish',NULL,0,NULL,NULL,NULL,'Política de privacidad ingivision',58,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2020-07-27 09:58:25','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(39,'https://www.ingivision.com/cookies/','35:bd170c1d7636f59a730c0f0c3db7279c',61,'post','page',1,0,'Política de cookies:¿por qué utilizamos cookies? %%sep%% %%sitename%%','¡Nos gustan las cookies! Y no solo las de comer. Utilizamos las cookies para mejorar la navegación. Te contamos en qué consiste esto.','Cookies','publish',NULL,0,NULL,NULL,NULL,'Política de cookies',58,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,1,NULL,'2020-07-27 10:31:09','2020-08-31 07:43:38',1,NULL,NULL,NULL,NULL,0,NULL),(43,'https://www.ingivision.com/2020/08/04/que-es-control-de-calidad-en-frutas/','74:62a989094000ee7ee9d23ea9e9a7db74',71,'post','post',1,0,'¿Qué es el control de calidad en frutas y hortalizas? - Ingivision','Todo sobre el procedimiento de la industria hortofrutícola para el control de calidad en frutas y hortalizas: color, peso, forma...','¿Qué es el control de calidad en las frutas? Todas las claves','publish',NULL,0,NULL,NULL,NULL,'control de calidad en las frutas',69,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/08/home1.png',NULL,'87','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/08/home1.png','87','featured-image','{\"width\":1894,\"height\":828,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/08/home1.png\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/08/home1.png\",\"size\":\"full\",\"id\":87,\"alt\":\"\",\"pixels\":1568232,\"type\":\"image/png\"}',0,1,NULL,'2020-08-04 08:38:36','2021-02-23 08:53:25',1,NULL,NULL,NULL,NULL,0,8),(44,'https://ingivision.admirae.es/tag/fruta-de-primera-calidad-parametros-de-calidad-en-frutas/','91:3aa98682bb2c53efb401f38fffa02782',3,'term','post_tag',NULL,NULL,NULL,NULL,'Fruta de primera calidad parámetros de calidad en frutas',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:14:53','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(45,'https://ingivision.admirae.es/tag/fruta-de-primera-calidad/','59:d67c4a417ce2db0b6bf2de74f49c9787',4,'term','post_tag',NULL,NULL,NULL,NULL,'Fruta de primera calidad',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:15:04','2020-11-13 10:20:49',1,NULL,NULL,NULL,NULL,0,NULL),(46,'https://ingivision.admirae.es/tag/parametros-de-calidad-en-frutas/','66:384220785c9def87c35d48918395edae',5,'term','post_tag',NULL,NULL,NULL,NULL,'parámetros de calidad en frutas',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:15:17','2020-11-13 10:20:49',1,NULL,NULL,NULL,NULL,0,NULL),(47,'https://ingivision.admirae.es/tag/maduracion-de-frutos/','55:5f0e1e5d771a004565674b43807ff164',6,'term','post_tag',NULL,NULL,NULL,NULL,'maduración de frutos',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:15:34','2020-11-13 10:20:49',1,NULL,NULL,NULL,NULL,0,NULL),(48,'https://ingivision.admirae.es/tag/control-de-calidad-hortofruticola/','68:99f2d09328127e53975ffaef937c16cf',7,'term','post_tag',NULL,NULL,NULL,NULL,'control de calidad hortofrutícola',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:15:52','2020-11-13 10:20:49',1,NULL,NULL,NULL,NULL,0,NULL),(49,'https://ingivision.admirae.es/tag/industria-4-0/','48:c8bedaa3f701be2fcd665300359060bc',8,'term','post_tag',NULL,NULL,NULL,NULL,'Industria 4.0',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:15:59','2020-11-13 10:20:49',1,NULL,NULL,NULL,NULL,0,NULL),(50,'https://ingivision.admirae.es/category/frutas-hortalizas/','57:bb3a5ccf3d380eb181e7e0306b401f65',9,'term','category',NULL,NULL,NULL,NULL,'Frutas y hortalizas',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:17:52','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(51,'https://ingivision.admirae.es/category/eventos/','47:59e2e9e5ce735d19f58ea2f1b6f77249',10,'term','category',NULL,NULL,NULL,NULL,'Eventos',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:18:05','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(52,'https://ingivision.admirae.es/category/software/','48:9f261976e8e253e52c1beb9cd2fba9d6',11,'term','category',NULL,NULL,NULL,NULL,'software',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 11:18:15','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(53,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg','93:fb48ea1cef291adf69a21765d7405689',76,'post','attachment',1,0,NULL,NULL,'calidad-en-las-frutas-hortalizas','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg',NULL,'76','attachment-image',NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg','76','attachment-image','{\"width\":851,\"height\":569,\"url\":\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\",\"path\":\"/var/www/vhosts/admirae.es/ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg\",\"size\":\"full\",\"id\":76,\"alt\":\"Calidad en frutas y hortalizas\",\"pixels\":484219,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-04 11:25:34','2020-08-04 09:26:09',1,NULL,NULL,NULL,NULL,0,NULL),(54,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas.jpg','80:85c152a178dcf626f63a0d56a6844f0d',77,'post','attachment',1,0,NULL,NULL,'calibrado-de-frutas','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas.jpg',NULL,'77','attachment-image',NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas.jpg','77','attachment-image','{\"width\":1920,\"height\":1069,\"url\":\"https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas.jpg\",\"path\":\"/var/www/vhosts/admirae.es/ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas.jpg\",\"size\":\"full\",\"id\":77,\"alt\":\"Software de calibrado de frutas\",\"pixels\":2052480,\"type\":\"image/jpeg\"}',NULL,NULL,NULL,'2020-08-04 11:28:55','2020-08-04 09:29:16',1,NULL,NULL,NULL,NULL,0,NULL),(55,'https://ingivision.admirae.es/wp-content/uploads/2020/08/control-calidad-hortofruticola.png','91:72251849a0bb0d8f275acdb6ce9e4bc7',78,'post','attachment',1,0,NULL,NULL,'control-calidad-hortofruticola','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/control-calidad-hortofruticola.png',NULL,'78','attachment-image',NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/control-calidad-hortofruticola.png','78','attachment-image','{\"width\":1920,\"height\":748,\"url\":\"https://ingivision.admirae.es/wp-content/uploads/2020/08/control-calidad-hortofruticola.png\",\"path\":\"/var/www/vhosts/admirae.es/ingivision.admirae.es/wp-content/uploads/2020/08/control-calidad-hortofruticola.png\",\"size\":\"full\",\"id\":78,\"alt\":\"Control de calidad hortofrut\\u00edcola\",\"pixels\":1436160,\"type\":\"image/png\"}',NULL,NULL,NULL,'2020-08-04 11:29:24','2020-08-04 09:29:52',1,NULL,NULL,NULL,NULL,0,NULL),(56,'https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577.png','92:c3d7c512e7f1afe642adc77edd356e80',79,'post','attachment',1,71,NULL,NULL,'vlcsnap-2020-06-18-13h20m26s577','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577.png',NULL,'79','attachment-image',NULL,NULL,NULL,'79','attachment-image',NULL,NULL,NULL,NULL,'2020-08-04 11:52:19','2020-08-04 09:52:19',1,NULL,NULL,NULL,NULL,1,NULL),(58,'https://ingivision.admirae.es/wp-content/uploads/2020/08/home1.png','66:3e415319fda07e7c089cc8f228fec7f9',87,'post','attachment',1,0,NULL,NULL,'home1','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/home1.png',NULL,'87','attachment-image',NULL,NULL,NULL,'87','attachment-image',NULL,NULL,NULL,NULL,'2020-08-04 14:53:45','2020-08-04 12:53:45',1,NULL,NULL,NULL,NULL,0,NULL),(59,'https://www.ingivision.com/2020/08/04/88/','41:647f5019f6b6a33731ef274f46c8084f',88,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-08-04 14:56:30','2021-01-18 11:57:18',1,NULL,NULL,NULL,NULL,0,NULL),(61,'https://ingivision.admirae.es/?post_type=acf-field-group&p=97','61:520f5b638da4df04bf09c84336f3ecd8',97,'post','acf-field-group',1,0,NULL,NULL,'Idioma','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 11:55:05','2020-08-18 13:12:06',1,NULL,NULL,NULL,NULL,0,NULL),(62,'https://ingivision.admirae.es/?post_type=acf-field&p=98','55:455ca81037b7cd99dafc13e7ace797e6',98,'post','acf-field',1,97,NULL,NULL,'idioma','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-13 11:55:05','2020-08-13 09:55:29',1,NULL,NULL,NULL,NULL,1,NULL),(63,'https://www.ingivision.com/en/','30:a78928bc101b56718527e9246a7716f1',99,'post','page',1,0,'Fruit grading electronic: our software low cost %%sep%% %%sitename%%','We develop fruit grading electronic systems for machinery. If you are looking for an easy to use software, this is your website.','Home','publish',NULL,0,NULL,NULL,NULL,'fruit grading electronic',63,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',NULL,'first-content-image',NULL,6,0,NULL,'2020-08-13 12:08:25','2020-11-11 07:13:16',1,NULL,NULL,NULL,NULL,0,NULL),(64,'https://www.ingivision.com/en/politica-de-privacidad/','53:d05ccdd7751ed2ca7f85a4def30fb7db',100,'post','page',1,99,'Privacy policy: Consult it for your peace of mind %%sep%% %%sitename%%','If you want to know why we collect data, what we do with it and how you can modify it, check our privacy policy now.','Privacy Policy','publish',NULL,0,NULL,NULL,NULL,'Privacy Policy Ingivision',50,60,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:27','2020-09-09 14:11:29',1,NULL,NULL,NULL,NULL,1,NULL),(65,'https://www.ingivision.com/en/aviso-legal/','42:0d27f77d41d51c48d8bc1178201b37ff',101,'post','page',1,99,'Legal notice: all the information at your disposal %%sep%% %%sitename%%','In this space we explain you all the information related to the legal terms and conditions we establish as a responsible for the web.','Legal notice','publish',NULL,0,NULL,NULL,NULL,'Legal notice ingivision',56,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:29','2020-09-09 13:59:19',1,NULL,NULL,NULL,NULL,1,NULL),(66,'https://www.ingivision.com/en/cookies/','38:d30c5df45669b0dba416081aeee9e1d1',102,'post','page',1,99,'Cookies policy: why do we use cookies?%%sep%% %%sitename%%','We like cookies! And not only those for eating. We use cookies to improve navigation. We tell you what this consists of.','Cookies','publish',NULL,0,NULL,NULL,NULL,'Cookies policy',56,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:30','2020-09-09 13:53:10',1,NULL,NULL,NULL,NULL,1,NULL),(67,'https://www.ingivision.com/en/services/','39:6dc0c0509ba37105f36ba4122164fa83',103,'post','page',1,99,'Retrofitting service: software for any type of machine %%sep%% %%sitename%%','Electronic upgrades will allow you to receive the benefits of our grading software without having to invest in replacing your current machine','Services','publish',NULL,0,NULL,NULL,NULL,'Retrofitting service',34,30,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:31','2020-09-24 16:13:02',1,NULL,NULL,NULL,NULL,1,NULL),(68,'https://www.ingivision.com/en/why-ingivision/','45:55ffe60c3c8624ce513159c1f5a1e6a6',104,'post','page',1,99,'Improving your fruit sorting system. Why choose us? %%sep%% %%sitename%%','Our goal is to optimize the operation of the product classification stage. Our systems are adaptable to any existing machinery.','Why Ingivision','publish',NULL,0,NULL,NULL,NULL,'Improving your fruit sorting system',38,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:32','2020-09-24 16:42:49',1,NULL,NULL,NULL,NULL,1,NULL),(69,'https://www.ingivision.com/en/blog/','35:cc0d495d612ee1ab9b1cb9e0a27e7ef4',105,'post','page',1,99,'%%title%% %%page%% %%sitename%%: El sitio donde publicamos nuestras novedades','En el blog de Ingivision tratamos temas de interés para el sector, novedades, eventos y mucha información de interés. ¡Te leemos dentro!','Blog','publish',NULL,0,NULL,NULL,NULL,'Blog Ingivision',49,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:33','2020-09-09 13:26:20',1,NULL,NULL,NULL,NULL,1,NULL),(70,'https://www.ingivision.com/en/contact/','38:5638f39a7619a62cc0ea1e9c827f4862',106,'post','page',1,99,'Contact us. In this company the boss picks up the phone - ingivision','If you have any questions about our electronic calibration system, contact us! We will be happy to help you','Contact','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,5,NULL,'2020-08-13 12:08:34','2021-02-26 16:04:21',1,NULL,NULL,NULL,NULL,1,NULL),(71,'https://ingivision.admirae.es/en/ingivision/','44:8297e7876f3d0d2f29dfaaa93c69e1ed',107,'post','page',1,99,NULL,NULL,'Ingivision','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:35','2020-08-13 12:57:23',1,NULL,NULL,NULL,NULL,1,NULL),(72,'https://www.ingivision.com/en/products/','39:90b4abd0d34c34e3ebca78d118248e93',108,'post','page',1,99,'Fruit grading electronics: Our three products %%sep%% %%sitename%%','Ingisorter, Ingisorter Plus and Ingigrader: from the most competitive product to an artificial intelligence one','Products','publish',NULL,0,NULL,NULL,NULL,'fruit grading electronics',38,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:36','2020-09-09 15:23:34',1,NULL,NULL,NULL,NULL,1,NULL),(73,'https://www.ingivision.com/en/products/ingigrader/','50:a7a732d1eef8220667c6802327189f0e',109,'post','page',1,108,'Advanced software for fruit grading system%%sep%% %%sitename%%','If you are looking for a software for fruit grading system yoy have to work with ingrigrader, artificial intelligence for grading machines','IngiGrader','publish',NULL,0,NULL,NULL,NULL,'Advanced software for fruit grading system',38,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-08-13 12:08:37','2020-11-11 08:13:16',1,NULL,NULL,NULL,NULL,1,NULL),(74,'https://www.ingivision.com/en/products/ingisorter/','50:4f04cce526b86d46c1e37080f5499279',110,'post','page',1,108,'Fruit grading with Ingisorter, our low cost easy drive software - Ingivision','A competitive electronic program for fruit grading. Analyze weight, size and color with high performance. Take a look.','IngiSorter','publish',NULL,0,NULL,NULL,NULL,'fruit grading',46,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-08-13 12:08:38','2020-11-11 08:13:16',1,NULL,NULL,NULL,NULL,1,NULL),(75,'https://www.ingivision.com/en/products/ingisorter-2/','52:c80bd2912f0240e3b3292231e192e3e6',111,'post','page',1,108,'Fruit Grading Electronic Kit: every thing you need %%sep%% %%sitename%%','With our software we will install the kit of all harware you neeD: Industrial computerIR and Visible camerasLED, IR, cards, electromagne etc','IngiSorter+','publish',NULL,0,NULL,NULL,NULL,'Fruit Grading Electronic Kit',42,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-08-13 12:08:40','2020-11-11 08:13:16',1,NULL,NULL,NULL,NULL,1,NULL),(76,'https://ingivision.admirae.es/en/nuestro-sistema/','49:adced83d03fa9f3f95fd89daaa455877',112,'post','page',1,99,NULL,NULL,'Nuestro sistema','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,'2020-08-13 12:08:40','2020-08-13 12:57:33',1,NULL,NULL,NULL,NULL,1,NULL),(79,'https://ingivision.admirae.es/2020/08/13/131/','45:f4f688e147409f6d79b98f65591912d1',131,'post','nav_menu_item',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-13 13:45:36','2020-08-16 15:57:49',1,NULL,NULL,NULL,NULL,0,NULL),(80,'https://ingivision.admirae.es/2020/08/18/what-is-quality-control-in-fruits/','75:8b7f6c4de75dfe2b06fb8160ae88650b',148,'post','post',1,0,'¿Qué es el control de calidad en frutas y hortalizas? - Ingivision','Todo sobre el procedimiento actual que se sigue en la industria hortofrutícola para el control de calidad en frutas y hortalizas: color, peso, forma...','What is quality control in fruits?','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/home1.png',NULL,'87','featured-image',NULL,NULL,'https://ingivision.admirae.es/wp-content/uploads/2020/08/home1.png','87','featured-image','{\"width\":1894,\"height\":828,\"url\":\"https://ingivision.admirae.es/wp-content/uploads/2020/08/home1.png\",\"path\":\"/var/www/vhosts/admirae.es/ingivision.admirae.es/wp-content/uploads/2020/08/home1.png\",\"size\":\"full\",\"id\":87,\"alt\":\"\",\"pixels\":1568232,\"type\":\"image/png\"}',0,0,NULL,'2020-08-14 08:08:00','2020-08-18 13:12:32',1,NULL,NULL,NULL,NULL,0,NULL),(81,'https://ingivision.admirae.es/2020/08/14/d9f03e7b40ea2030e345ae65b490f1e1/','74:f8aa393e5a440ea40559f0fbbf49f891',155,'post','oembed_cache',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-14 09:37:01','2020-08-14 07:37:01',1,NULL,NULL,NULL,NULL,0,NULL),(87,'https://ingivision.admirae.es/2020/08/16/178/','45:e772407458efd8e06792582e41794e65',178,'post','nav_menu_item',1,99,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:55:06','2020-08-16 15:57:49',1,NULL,NULL,NULL,NULL,1,NULL),(88,'https://ingivision.admirae.es/2020/08/16/179/','45:e20f0863c0be5e09801bcbe901325943',179,'post','nav_menu_item',1,99,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:55:06','2020-08-16 15:57:49',1,NULL,NULL,NULL,NULL,1,NULL),(89,'https://www.ingivision.com/2020/08/16/180/','42:e700ad568d1fe7d84f52884dbd8616b6',180,'post','nav_menu_item',1,108,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:55:06','2020-09-09 15:14:42',1,NULL,NULL,NULL,NULL,1,NULL),(90,'https://www.ingivision.com/2020/08/16/181/','42:66df248fcd9f718a82e5269cbe099729',181,'post','nav_menu_item',1,108,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:55:06','2020-09-09 15:14:42',1,NULL,NULL,NULL,NULL,1,NULL),(91,'https://www.ingivision.com/2020/08/16/182/','42:2bea58a71b3ec2703481b5beaa1971d3',182,'post','nav_menu_item',1,108,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:55:06','2020-09-09 15:14:42',1,NULL,NULL,NULL,NULL,1,NULL),(92,'https://ingivision.admirae.es/2020/08/16/184/','45:2c21f6067d119c188559b515c3ce89b3',184,'post','nav_menu_item',1,99,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:56:41','2020-08-16 15:57:49',1,NULL,NULL,NULL,NULL,1,NULL),(93,'https://ingivision.admirae.es/2020/08/16/185/','45:1cc7f0508b86c89bf1c05777438db3a5',185,'post','nav_menu_item',1,99,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:56:55','2020-08-16 15:57:49',1,NULL,NULL,NULL,NULL,1,NULL),(94,'https://ingivision.admirae.es/2020/08/16/187/','45:e18def62e1c79057b9aaaf7fc3554cab',187,'post','nav_menu_item',1,99,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-16 17:57:47','2020-08-16 15:57:49',1,NULL,NULL,NULL,NULL,1,NULL),(97,'https://www.ingivision.com/block_lab/productos/','47:974d90d9fef5bdbba2a791c233727f2c',197,'post','block_lab',1,0,NULL,NULL,'Productos en Home','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,'2020-08-27 16:53:18','2020-08-27 15:44:15',1,NULL,NULL,NULL,NULL,0,NULL),(99,'https://www.ingivision.com/2020/09/16/fruit-logistica-2021/','59:7354f559304f42ac6e1237d71f5d446d',203,'post','post',1,0,'Fruit Logistica 2021 ¿cómo será el evento? - Ingivision','Conoce los detalles y nuestro punto de vista sobre el evento internacional más importante del sector hortofutícola: Fruit Logistica','Fruit Logistica en 2021 ¿cómo será?','publish',NULL,0,NULL,NULL,NULL,'Fruit Logistica 2021',59,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg',NULL,'219','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg','219','set-by-user','{\"width\":1600,\"height\":1200,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg\",\"size\":\"full\",\"id\":\"219\",\"alt\":\"ingivision en Fruit Logistica 2020\",\"pixels\":1920000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-09-14 14:55:25','2020-09-21 05:35:27',1,NULL,NULL,NULL,NULL,0,NULL),(100,'https://www.ingivision.com/2020/09/14/55a36cb4037d17a0f8f43557ff908d2c/','71:5050fc965c6b0398622ffbeddd991950',205,'post','oembed_cache',1,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-14 14:56:42','2020-09-14 12:56:42',1,NULL,NULL,NULL,NULL,0,NULL),(101,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06.jpeg','96:ba3cd54334b231af40a37ea334d5e6f0',215,'post','attachment',1,203,NULL,NULL,'WhatsApp-Image-2020-09-15-at-12.01.06','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06.jpeg',NULL,'215','attachment-image',NULL,NULL,NULL,'215','attachment-image',NULL,0,NULL,NULL,'2020-09-18 08:35:07','2020-09-18 06:35:07',1,NULL,NULL,NULL,NULL,1,NULL),(102,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.00.51.jpeg','96:3880f34e79fab028eaada7fa89ce5cdf',218,'post','attachment',1,203,NULL,NULL,'WhatsApp-Image-2020-09-15-at-12.00.51','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.00.51.jpeg',NULL,'218','attachment-image',NULL,NULL,NULL,'218','attachment-image',NULL,0,NULL,NULL,'2020-09-18 08:38:39','2020-09-18 06:38:39',1,NULL,NULL,NULL,NULL,1,NULL),(103,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg','98:fcb7dd98b1a5011cf904729dc67f6b2c',219,'post','attachment',1,203,NULL,NULL,'ingivision en Fruit Logistica 2020','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg',NULL,'219','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg','219','attachment-image','{\"width\":1600,\"height\":1200,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1.jpeg\",\"size\":\"full\",\"id\":219,\"alt\":\"ingivision en Fruit Logistica 2020\",\"pixels\":1920000,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-09-18 08:38:40','2020-09-18 06:41:16',1,NULL,NULL,NULL,NULL,1,NULL),(104,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.05.jpeg','96:241e8015413470ef336d2a27bb2e13b9',220,'post','attachment',1,203,NULL,NULL,'WhatsApp-Image-2020-09-15-at-12.01.05','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.05.jpeg',NULL,'220','attachment-image',NULL,NULL,NULL,'220','attachment-image',NULL,0,NULL,NULL,'2020-09-18 08:39:27','2020-09-18 06:39:27',1,NULL,NULL,NULL,NULL,1,NULL),(106,'https://www.ingivision.com/2020/09/20/info-admirae-es/','54:2217479738bacba339c569dce4780c53',229,'post','flamingo_contact',1,0,NULL,NULL,'info@admirae.es','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-20 17:54:02','2020-09-20 15:54:02',1,NULL,NULL,NULL,NULL,0,NULL),(107,'https://www.ingivision.com/author/','34:053273d5d2807a37173433ad73916f70',0,'user',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,NULL,NULL,NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,NULL,'gravatar-image',NULL,NULL,'https://secure.gravatar.com/avatar/?s=500&d=mm&r=g',NULL,'gravatar-image',NULL,NULL,NULL,NULL,'2020-09-20 19:32:31','2021-03-23 22:26:04',1,NULL,NULL,NULL,NULL,0,NULL),(108,'https://www.ingivision.com/2020/09/20/1e100c34eb7ae272e0da72759893f8c6/','71:448e2b078e11221db06b39aacaa76fde',231,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-09-20 19:32:31','2020-09-20 17:32:31',1,NULL,NULL,NULL,NULL,0,NULL),(109,'https://www.ingivision.com/2020/09/20/807fa3544382f14a6747428fe6bff708/','71:d07417997cbc127c103d4146479a65af',232,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-09-20 19:32:31','2020-09-20 17:32:31',1,NULL,NULL,NULL,NULL,0,NULL),(114,'https://www.ingivision.com/?post_type=flamingo_contact&p=236','60:700a170aeb7268fc516d1fd63ea8969b',236,'post','flamingo_contact',0,0,NULL,NULL,'franmur@gmail.com','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-20 19:38:27','2020-10-28 18:01:06',1,NULL,NULL,NULL,NULL,0,NULL),(116,'https://www.ingivision.com/?post_type=flamingo_contact&p=238','60:64afbb4fdbd01916cbee86a513e69da7',238,'post','flamingo_contact',0,0,NULL,NULL,'no-replyKr@gmail.com','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-20 19:48:46','2020-09-20 17:48:46',1,NULL,NULL,NULL,NULL,0,NULL),(119,'https://www.ingivision.com/?post_type=flamingo_contact&p=241','60:ef98cabd8d775a9e672c0f551ded355a',241,'post','flamingo_contact',0,0,NULL,NULL,'example@example.com','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-20 20:45:31','2020-09-20 18:45:31',1,NULL,NULL,NULL,NULL,0,NULL),(124,'https://www.ingivision.com/2020/09/21/fda9300e3022540144dcf545f999aeb5/','71:5c263886cc439ce1b4b094db998cdf2c',247,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-21 02:23:03','2020-09-21 00:23:03',1,NULL,NULL,NULL,NULL,0,NULL),(127,'https://www.ingivision.com/2020/09/21/0f398367b1f062b87e650873d5417298/','71:db8341346c5ef0ca3d81fde1bd32236c',250,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-21 06:47:26','2020-09-21 04:47:26',1,NULL,NULL,NULL,NULL,0,NULL),(141,'https://www.ingivision.com/2020/09/22/9b9f83c7ec06f263097986dbd5e92214/','71:71a4e20523578887694561d54c11bd5b',265,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-22 11:37:37','2020-09-22 09:37:37',1,NULL,NULL,NULL,NULL,0,NULL),(142,'https://www.ingivision.com/2020/09/22/0c0483b73cb9e4decbcc0298fd828ecc/','71:7a871d8870a1731492f18766ca47f85e',266,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-22 11:37:38','2020-09-22 09:37:38',1,NULL,NULL,NULL,NULL,0,NULL),(143,'https://www.ingivision.com/2020/09/22/10987a4f4d1cd7faeaf510c10a81d450/','71:d6961860cfc2c9977280ac4e9f398343',267,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-22 11:37:38','2020-09-22 09:37:38',1,NULL,NULL,NULL,NULL,0,NULL),(144,'https://www.ingivision.com/2020/09/22/d9d92540c6f534545cf04501a18bf709/','71:6c1fe106b71cbdf1d0bdf4c4c3f311db',268,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-22 11:37:39','2020-09-22 09:37:39',1,NULL,NULL,NULL,NULL,0,NULL),(145,'https://www.ingivision.com/2020/09/22/741197364304cae30b079d4d05811a37/','71:15a6e3f47db8bc6ba8d6d8a504179c41',269,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-22 11:37:40','2020-09-22 09:37:40',1,NULL,NULL,NULL,NULL,0,NULL),(146,'https://www.ingivision.com/2020/09/22/48a2459dec6de1da8130ea0bddeb9e4d/','71:190e452b737adeba5af67f1e23a79239',270,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-22 11:37:41','2020-09-22 09:37:41',1,NULL,NULL,NULL,NULL,0,NULL),(147,'https://www.ingivision.com/2020/09/22/4848026ee17ce4de746cd295d50a9b49/','71:7100cc76d35649d5af67de1633700faa',271,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-22 11:37:41','2020-09-22 09:37:41',1,NULL,NULL,NULL,NULL,0,NULL),(166,'https://www.ingivision.com/2020/09/24/586220d07e318f25997cc5bf9b348d74/','71:12da86f8243dfe770a7cfb9d17d65309',290,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-24 02:23:57','2020-09-24 00:23:57',1,NULL,NULL,NULL,NULL,0,NULL),(170,'https://www.ingivision.com/2020/09/24/0445a434cf608f4b1bc3f2c4023fdaae/','71:f2971b7ad85829acaa094140168dad90',294,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-24 09:17:41','2020-09-24 07:17:41',1,NULL,NULL,NULL,NULL,0,NULL),(188,'https://www.ingivision.com/2020/09/28/a91ac010620eb2e02e226b9b9a5d0add/','71:0eb434b3c13b398424836e4c44799af1',315,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-28 13:51:15','2020-09-28 11:51:15',1,NULL,NULL,NULL,NULL,0,NULL),(190,'https://www.ingivision.com/2020/09/28/8beb9cebfa696b76aff2a82f1e59a043/','71:d4e0b0b5307bdc57f7da7f246b8d5fa7',317,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-28 15:59:19','2020-09-28 13:59:19',1,NULL,NULL,NULL,NULL,0,NULL),(191,'https://www.ingivision.com/2020/09/28/a23c5eb595767acca21711eb49ded64a/','71:979bdd4ccbd22651cb80384b8d972ad1',318,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-09-28 15:59:24','2020-09-28 13:59:24',1,NULL,NULL,NULL,NULL,0,NULL),(249,'https://www.ingivision.com/2020/10/02/0139a1ff5c3cff738be9a87aedc42ad5/','71:c9f50ea722e3f227b6114cdf6584324b',376,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-02 04:44:23','2020-10-02 02:44:23',1,NULL,NULL,NULL,NULL,0,NULL),(254,'https://www.ingivision.com/2020/10/02/a752d1403056268b81c6184ad2ece543/','71:b9e84b43e9a23fe214ec444122dbe5a0',381,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-02 09:24:54','2020-10-02 07:24:54',1,NULL,NULL,NULL,NULL,0,NULL),(257,'https://www.ingivision.com/2020/10/02/9f504cdd4402cceb67ac0af4f051af51/','71:f3ca9b6cf072a5ec8d14b6557a372fc8',384,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-02 20:39:59','2020-10-02 18:39:59',1,NULL,NULL,NULL,NULL,0,NULL),(262,'https://www.ingivision.com/2020/10/02/e35fa63e8e9ac3fb8b41f7c0766840b1/','71:a2d9834a43dc3559f4f8f65c8047263f',389,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-02 23:31:17','2020-10-02 21:31:17',1,NULL,NULL,NULL,NULL,0,NULL),(286,'https://www.ingivision.com/2020/10/05/2568ac4e673a39b2efdc19342b3845e0/','71:4c1f2d40e33b488f4c9bee3fd2de3137',413,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-05 02:54:19','2020-10-05 00:54:19',1,NULL,NULL,NULL,NULL,0,NULL),(294,'https://www.ingivision.com/2020/10/05/164319ad438807a3096b53c28374f78c/','71:a5cdbce221456aafdb2865f422561d84',421,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-05 17:35:58','2020-10-05 15:35:58',1,NULL,NULL,NULL,NULL,0,NULL),(295,'https://www.ingivision.com/2020/10/05/b85f10370944c95b73cc88a1accff198/','71:3e38e23739bed11236f2f5ee0a625b5a',422,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-05 17:35:59','2020-10-05 15:35:59',1,NULL,NULL,NULL,NULL,0,NULL),(296,'https://www.ingivision.com/2020/10/05/51d685381900db9a700544cb9968bc49/','71:5d7aaee76bad98d5dccec704a4ebe3d3',423,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-05 17:35:59','2020-10-05 15:35:59',1,NULL,NULL,NULL,NULL,0,NULL),(297,'https://www.ingivision.com/2020/10/05/b0da5c3aeab8957e1cfbe059438bf720/','71:dfb464d3e159071a9540521ddc52047c',424,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-05 17:36:01','2020-10-05 15:36:01',1,NULL,NULL,NULL,NULL,0,NULL),(298,'https://www.ingivision.com/2020/10/05/2cd0f6f407be54e12270f87f466eabc6/','71:493409add746f0bc451a7524d1d4e789',425,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-05 17:36:01','2020-10-05 15:36:01',1,NULL,NULL,NULL,NULL,0,NULL),(305,'https://www.ingivision.com/2020/10/05/6f0003c28d7e93dee0c6b88f35891323/','71:22edf1f4c0d8724a459a650b349515f2',432,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-05 22:37:46','2020-10-05 20:37:46',1,NULL,NULL,NULL,NULL,0,NULL),(318,'https://www.ingivision.com/2020/10/06/19248a9f178d0910606ad3ebe0ed3f0a/','71:6593f4c4a1ef9cf02d086c1394868b0a',445,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 18:39:22','2020-10-06 16:39:22',1,NULL,NULL,NULL,NULL,0,NULL),(319,'https://www.ingivision.com/2020/10/06/4cd7c08170c432d8de8227975464ffb8/','71:623927fdc08d3ff1cfc8c0092fa11e2a',446,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 18:39:23','2020-10-06 16:39:23',1,NULL,NULL,NULL,NULL,0,NULL),(320,'https://www.ingivision.com/2020/10/06/dec67dd54718c837c5211300ee021691/','71:6575b5bd9a5d42627dc178b4e349b311',447,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 18:39:24','2020-10-06 16:39:24',1,NULL,NULL,NULL,NULL,0,NULL),(321,'https://www.ingivision.com/2020/10/06/1881d56777014bf115648cc72549d1ab/','71:c39f9c9f7bef3c282659d1b5e0c6aaab',448,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 18:39:24','2020-10-06 16:39:24',1,NULL,NULL,NULL,NULL,0,NULL),(322,'https://www.ingivision.com/2020/10/06/ec8765a2dd7c39057c4c99768ed7d44b/','71:a0b42544155c9d26335abd105eaa5faf',449,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 18:39:25','2020-10-06 16:39:25',1,NULL,NULL,NULL,NULL,0,NULL),(324,'https://www.ingivision.com/2020/10/06/8aee2573e3667d55e269a84421f47e69/','71:b852f316515946407aa6a5f167c2cd93',451,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 19:51:12','2020-10-06 17:51:12',1,NULL,NULL,NULL,NULL,0,NULL),(325,'https://www.ingivision.com/2020/10/06/cec38b2ef8732e1a611e8774bfa5f35c/','71:3df3820b5ce9fce46948f60d3c468914',452,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 19:51:12','2020-10-06 17:51:12',1,NULL,NULL,NULL,NULL,0,NULL),(326,'https://www.ingivision.com/2020/10/06/3e2695ab21ada130e4ba26df889dbee9/','71:8af5f6bccc4b6133aef3d8a8a97b6558',453,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 19:51:13','2020-10-06 17:51:13',1,NULL,NULL,NULL,NULL,0,NULL),(327,'https://www.ingivision.com/2020/10/06/3f324f144ed41ab7813047ea954d42d9/','71:5b7756d3cfe4932181a98ba9864d9059',454,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 19:51:13','2020-10-06 17:51:13',1,NULL,NULL,NULL,NULL,0,NULL),(328,'https://www.ingivision.com/2020/10/06/627b14ae21aa01eab1f02cd2e8734568/','71:82961361624befc115f3b1ae66d81044',455,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-06 19:51:13','2020-10-06 17:51:13',1,NULL,NULL,NULL,NULL,0,NULL),(332,'https://www.ingivision.com/2020/10/07/82be062061391ebbb5c5f82dbe40404a/','71:f717aa95ecc222397e766a8d9877b441',459,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-07 03:28:10','2020-10-07 01:28:10',1,NULL,NULL,NULL,NULL,0,NULL),(338,'https://www.ingivision.com/2020/10/07/f10db88699c64f8079b1858f7c589487/','71:2495a53a97e5598c1cc0e64428b20681',465,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-07 20:30:41','2020-10-07 18:30:41',1,NULL,NULL,NULL,NULL,0,NULL),(356,'https://www.ingivision.com/2020/10/09/b15ac287e137f7ad3c678429c2f8c983/','71:6a921f4b02f2783540efc2ae0c5b5157',483,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 00:35:49','2020-10-08 22:35:49',1,NULL,NULL,NULL,NULL,0,NULL),(371,'https://www.ingivision.com/2020/10/09/907b12c163873e68e4e3545507dbceb2/','71:a4fd23a8a252c973b949288595327170',498,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 22:03:49','2020-10-09 20:03:49',1,NULL,NULL,NULL,NULL,0,NULL),(372,'https://www.ingivision.com/2020/10/09/b928926229a73f5023959b384bf9f022/','71:b79c66a5c3c8238c3549e04b9c959e23',499,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 22:03:49','2020-10-09 20:03:49',1,NULL,NULL,NULL,NULL,0,NULL),(373,'https://www.ingivision.com/2020/10/09/bfb4df1207f83962a1c738148998a7b6/','71:97122f577bfbe7c985c24df1dc49b695',500,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 22:03:49','2020-10-09 20:03:49',1,NULL,NULL,NULL,NULL,0,NULL),(374,'https://www.ingivision.com/2020/10/09/f99c9fce211a0330340778fb4acf58ab/','71:47b56ef81a8a88faf12e89fe5e9ac9f1',501,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 22:03:49','2020-10-09 20:03:49',1,NULL,NULL,NULL,NULL,0,NULL),(375,'https://www.ingivision.com/2020/10/09/c926fd5608b0922d59480eff208d1d36/','71:5169de54efa781ae93c7d260eae70e06',502,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-09 22:03:50','2020-10-09 20:03:50',1,NULL,NULL,NULL,NULL,0,NULL),(382,'https://www.ingivision.com/2020/10/10/c2e0f2b0e4d332c3d5c38b4db5dbcb1a/','71:c193089721715835fb25098c28f2493f',509,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-10 03:36:35','2020-10-10 01:36:35',1,NULL,NULL,NULL,NULL,0,NULL),(388,'https://www.ingivision.com/2020/10/10/f4151dd9977d98cebc4e4960ede1ff31/','71:a4892a86aba8ea3c8df9f50d36f69a57',515,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-10 18:25:00','2020-10-10 16:25:00',1,NULL,NULL,NULL,NULL,0,NULL),(389,'https://www.ingivision.com/2020/10/10/3ed7ea21304f14cf3bdfa267a1ca311c/','71:6ecd9aae3f161060d0613e8c97806486',516,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-10 18:25:00','2020-10-10 16:25:00',1,NULL,NULL,NULL,NULL,0,NULL),(390,'https://www.ingivision.com/2020/10/10/4079b461ef1ba7f107d0f01a17395e75/','71:ad2b78d6e7463b2a238e2d7bf863bd46',517,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-10 18:25:01','2020-10-10 16:25:01',1,NULL,NULL,NULL,NULL,0,NULL),(422,'https://www.ingivision.com/2020/10/13/28caa9076e54b4ca6c53a4d5c267106d/','71:056e076541e16cdd074c1b5fb3e4b9dc',549,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-13 00:21:14','2020-10-12 22:21:14',1,NULL,NULL,NULL,NULL,0,NULL),(429,'https://www.ingivision.com/2020/10/13/e4e0721ff67f6b5dce98d72ff406487d/','71:91a27544922c97a63dde2dc4df58364c',556,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-13 12:26:36','2020-10-13 10:26:36',1,NULL,NULL,NULL,NULL,0,NULL),(431,'https://www.ingivision.com/2020/10/13/e9da30b9edb5ad6d007fa6b468621e8e/','71:c8496f932471549f07bea756681b9456',558,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-13 13:00:05','2020-10-13 11:00:05',1,NULL,NULL,NULL,NULL,0,NULL),(435,'https://www.ingivision.com/?post_type=flamingo_contact&p=561','60:2e0089ae0c3d2151a2dcada64e957f64',561,'post','flamingo_contact',0,0,NULL,NULL,'eugacemu@gmail.com','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-13 17:10:53','2020-10-13 15:10:53',1,NULL,NULL,NULL,NULL,0,NULL),(436,'https://www.ingivision.com/?post_type=flamingo_inbound&p=562','60:567d5fab7528f3d7615dcbf39e82e5bb',562,'post','flamingo_inbound',0,0,NULL,NULL,'Presupuesto','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-10-13 17:10:53','2020-10-13 15:10:53',1,NULL,NULL,NULL,NULL,0,NULL),(455,'https://www.ingivision.com/2020/10/15/software-clasificacion-frutas/','68:dded1ec8d978872cb2587336539d1a86',582,'post','post',1,0,'Software clasificación de frutas: ¿por qué es necesario? %%sep%% %%sitename%%','Te contamos en palábras sencillas por qué necesitas un software clasificación de frutas y sus tres principales beneficios.','Tres motivos por los que necesitas un software de clasificación de frutas y hortalizas','publish',NULL,0,NULL,NULL,NULL,'Software clasificación de frutas',75,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg',NULL,'586','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg','586','featured-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg\",\"size\":\"full\",\"id\":586,\"alt\":\"Software de clasificaci\\u00f3n de frutas ingivision\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',2,NULL,NULL,'2020-10-15 21:29:12','2020-10-15 19:56:10',1,NULL,NULL,NULL,NULL,0,NULL),(457,'https://www.ingivision.com/wp-content/uploads/2020/10/ingi-sorter-plus.jpg','74:b61e80faab7be577b6619f8040754a27',585,'post','attachment',1,582,NULL,NULL,'ingi-sorter-plus','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/10/ingi-sorter-plus.jpg',NULL,'585','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/10/ingi-sorter-plus.jpg','585','attachment-image','{\"width\":437,\"height\":213,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/10/ingi-sorter-plus.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/10/ingi-sorter-plus.jpg\",\"size\":\"full\",\"id\":585,\"alt\":\"Software de clasificaci\\u00f3n de frutas ingivision\",\"pixels\":93081,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-15 21:50:58','2020-10-15 21:56:09',1,NULL,NULL,NULL,NULL,1,NULL),(458,'https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg','87:f5f054bba215dac017cf291ea9277945',586,'post','attachment',1,582,NULL,NULL,'software-clasificacion-frutas','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg',NULL,'586','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg','586','attachment-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/10/software-clasificacion-frutas.jpg\",\"size\":\"full\",\"id\":586,\"alt\":\"Software de clasificaci\\u00f3n de frutas ingivision\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-10-15 21:55:50','2020-10-15 21:56:09',1,NULL,NULL,NULL,NULL,1,NULL),(461,'https://www.ingivision.com/2020/10/16/e1027605d1058dc376f61f7164218b73/','71:424586f93a6cddf885d959ea630adbe3',590,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-16 00:28:56','2020-10-15 22:28:56',1,NULL,NULL,NULL,NULL,0,NULL),(468,'https://www.ingivision.com/2020/10/16/d41e34cd6b851b8a2c490cb6c665194b/','71:70efd29e25508142fc925d66eb8d37e6',597,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-16 08:31:11','2020-10-16 06:31:11',1,NULL,NULL,NULL,NULL,0,NULL),(472,'https://www.ingivision.com/2020/10/16/72dfaa744be9dba0c1b87c82931206d1/','71:9edc28e2b07e5cd74a0f6c193289de06',601,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-16 10:17:51','2020-10-16 08:17:51',1,NULL,NULL,NULL,NULL,0,NULL),(498,'https://www.ingivision.com/2020/10/17/9a03b01109756c54e6714183ab6c692e/','71:9a17d412969c01a86646c1d61cb4c39e',626,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-17 16:27:56','2020-10-17 14:27:56',1,NULL,NULL,NULL,NULL,0,NULL),(506,'https://www.ingivision.com/2020/10/18/5e82534f0d071ed487f26b2772e154c7/','71:0f92c634b9fffebad328a5bb4be828bd',634,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-18 13:19:25','2020-10-18 11:19:25',1,NULL,NULL,NULL,NULL,0,NULL),(511,'https://www.ingivision.com/2020/10/18/7529360a09427a5cf44c3ee8173b2b0c/','71:9eef8a35e254097c725df53e1b7979e3',639,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-18 20:37:26','2020-10-18 18:37:26',1,NULL,NULL,NULL,NULL,0,NULL),(512,'https://www.ingivision.com/2020/10/18/d56b2370e32af71a2fb53b718a4418e5/','71:10d43a2f57bfe7fdb113e1084b6b15c1',640,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-18 20:37:26','2020-10-18 18:37:26',1,NULL,NULL,NULL,NULL,0,NULL),(554,'https://www.ingivision.com/trabajos/','36:7c12b1306068c1b74ddf9d7b7edc9643',682,'post','page',1,0,NULL,NULL,'Trabaja con nosotros','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-10-21 17:02:17','2021-01-27 09:25:23',1,NULL,NULL,NULL,NULL,0,1),(599,'https://www.ingivision.com/2020/10/24/1f1945dccdc1440d9f7cae777ffbe696/','71:413bf2e93502b43e23fdb677f23ff783',739,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-24 07:06:59','2020-10-24 05:06:59',1,NULL,NULL,NULL,NULL,0,NULL),(602,'https://www.ingivision.com/2020/10/24/8785a4ff4f2411e0e9b7852bc89f187a/','71:e9d46ef7ea8d72d6b61666b680f2399a',742,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-24 14:14:20','2020-10-24 12:14:20',1,NULL,NULL,NULL,NULL,0,NULL),(609,'https://www.ingivision.com/2020/10/25/2bb9213ceb6dccbe62516f6418f7b4cd/','71:20db43dc9b63d93120df53eac8cdd361',749,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:13','2020-10-25 02:15:13',1,NULL,NULL,NULL,NULL,0,NULL),(610,'https://www.ingivision.com/2020/10/25/43730f0f03d0690ed96a94c3d3a7f426/','71:975e0b3e3349c23ee0ca88f8352e5a5b',750,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:13','2020-10-25 02:15:13',1,NULL,NULL,NULL,NULL,0,NULL),(611,'https://www.ingivision.com/2020/10/25/5cf5b5f5b4cbb9e777e9cf5cc5906780/','71:c1615ac6b05f1c146f085fa205353dad',751,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:14','2020-10-25 02:15:14',1,NULL,NULL,NULL,NULL,0,NULL),(612,'https://www.ingivision.com/2020/10/25/5836123fae4db2fa298cee016de6e9e2/','71:ee1b0ff93a84aeb8a885a88c4ed5c82b',752,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:14','2020-10-25 02:15:14',1,NULL,NULL,NULL,NULL,0,NULL),(613,'https://www.ingivision.com/2020/10/25/359c18aa2afde08d2b081cceb1171ea2/','71:98d6ecf15264e7c959306abf8d042be5',753,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:15','2020-10-25 02:15:15',1,NULL,NULL,NULL,NULL,0,NULL),(614,'https://www.ingivision.com/2020/10/25/df1eaae6334a499c4c40929a897aae11/','71:98ad983732e4604c08519cd190230587',754,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:15','2020-10-25 02:15:15',1,NULL,NULL,NULL,NULL,0,NULL),(615,'https://www.ingivision.com/2020/10/25/740ed6fb8d347b2b20b830d749f7fdbb/','71:f46ddc347202f82aaf15c2199e6878ed',755,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:15','2020-10-25 02:15:15',1,NULL,NULL,NULL,NULL,0,NULL),(616,'https://www.ingivision.com/2020/10/25/4795a7e53ab66a5b43504c0b1369ab45/','71:31b42b59955e505e16c95e8175b6d5be',756,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:15','2020-10-25 02:15:15',1,NULL,NULL,NULL,NULL,0,NULL),(617,'https://www.ingivision.com/2020/10/25/e4843d28e7404d2f0f4f5ea637bdbae9/','71:84c49278aec50a4fae3bc54aa8c40655',757,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:16','2020-10-25 02:15:16',1,NULL,NULL,NULL,NULL,0,NULL),(618,'https://www.ingivision.com/2020/10/25/1deedfd7b633455684e5ac6bc2e3f80d/','71:70eea61bbc93e0b039329cb587ba0d20',758,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:16','2020-10-25 02:15:16',1,NULL,NULL,NULL,NULL,0,NULL),(619,'https://www.ingivision.com/2020/10/25/a164e3528c2b3f83a9c3db63581097fe/','71:d5d4feda9f0dac94da9a8a966e1b4613',759,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:16','2020-10-25 02:15:16',1,NULL,NULL,NULL,NULL,0,NULL),(620,'https://www.ingivision.com/2020/10/25/4065cb26af3db3535ae68d170771b983/','71:f3a66e57f485ca20860b4eb1ed4e47bc',760,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:17','2020-10-25 02:15:17',1,NULL,NULL,NULL,NULL,0,NULL),(621,'https://www.ingivision.com/2020/10/25/77a93e9009d436a83ba72571bccf3301/','71:3762c535bab7248df8fc0b613d85a716',761,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:17','2020-10-25 02:15:17',1,NULL,NULL,NULL,NULL,0,NULL),(622,'https://www.ingivision.com/2020/10/25/fe7b116367f8bce12d39f0ad30b3d917/','71:9551ea36e616012a7fa226f7b0c46ed8',762,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:17','2020-10-25 02:15:17',1,NULL,NULL,NULL,NULL,0,NULL),(623,'https://www.ingivision.com/2020/10/25/07f0de50d02ddf8818bf0d806a2c3573/','71:3bd29452596a73b2048b743a1e215386',763,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:17','2020-10-25 02:15:18',1,NULL,NULL,NULL,NULL,0,NULL),(624,'https://www.ingivision.com/2020/10/25/7b15e8ff36c31374b6e527fbaaa724b7/','71:a6cd16f7cde40d202e3179fe35bbeb5d',764,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:18','2020-10-25 02:15:18',1,NULL,NULL,NULL,NULL,0,NULL),(625,'https://www.ingivision.com/2020/10/25/5f1ba7b8d665ef85500f2830624cbdca/','71:c444606fc8176b3b1598fcc05f989f89',765,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:18','2020-10-25 02:15:18',1,NULL,NULL,NULL,NULL,0,NULL),(626,'https://www.ingivision.com/2020/10/25/178be827c2dd9f0d90d30cf51458d239/','71:cd20274987b64c0869327f11c048c3c3',766,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:19','2020-10-25 02:15:19',1,NULL,NULL,NULL,NULL,0,NULL),(627,'https://www.ingivision.com/2020/10/25/55c47a49294d729d4dc3f9528e3db85e/','71:31f3ab5fc618ba9cc1974a27c2b5494c',767,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:19','2020-10-25 02:15:19',1,NULL,NULL,NULL,NULL,0,NULL),(628,'https://www.ingivision.com/2020/10/25/258e5767f6a48bc495895dc0b78a9fe9/','71:75f3bc8c3a53766c4b19860b85391ab4',768,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:20','2020-10-25 02:15:20',1,NULL,NULL,NULL,NULL,0,NULL),(629,'https://www.ingivision.com/2020/10/25/21295ee521da3ad0da583e83702aa432/','71:02c4632c57bfb2851d30bf3d81fa2152',769,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:20','2020-10-25 02:15:20',1,NULL,NULL,NULL,NULL,0,NULL),(630,'https://www.ingivision.com/2020/10/25/2315eaf3363b8743549d34b190b133e7/','71:ebbfd5801d2406b57bb3ce8306c28134',770,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:20','2020-10-25 02:15:20',1,NULL,NULL,NULL,NULL,0,NULL),(631,'https://www.ingivision.com/2020/10/25/0d48188cba620d6363a642b010e88672/','71:c7f61c074bee1710a6f3aa4545fadf3a',771,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:20','2020-10-25 02:15:20',1,NULL,NULL,NULL,NULL,0,NULL),(632,'https://www.ingivision.com/2020/10/25/939682ebf84eee13cbc0ffad266c87b5/','71:47c39b027424de3a891cb2c2943e041d',772,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:20','2020-10-25 02:15:20',1,NULL,NULL,NULL,NULL,0,NULL),(633,'https://www.ingivision.com/2020/10/25/1efaabe67d5dc141c2e19139c7af8030/','71:8c296cd22aba2f480a4fd358d5c8acb8',773,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:21','2020-10-25 02:15:21',1,NULL,NULL,NULL,NULL,0,NULL),(634,'https://www.ingivision.com/2020/10/25/243868118f5cf613cf51f4babcfbc6b2/','71:9b05b857c0cdbc6433c608c156a88153',774,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:22','2020-10-25 02:15:22',1,NULL,NULL,NULL,NULL,0,NULL),(635,'https://www.ingivision.com/2020/10/25/61586a905edcff773836c8695ab9ed3d/','71:9cb0b6b6ddb5e2fac1177162c3f665f3',775,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:22','2020-10-25 02:15:22',1,NULL,NULL,NULL,NULL,0,NULL),(636,'https://www.ingivision.com/2020/10/25/5c80bf86af47e8cd6a80cdf8bcbd5071/','71:a187de4a1f4bab2e9982d354d77172d5',776,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:22','2020-10-25 02:15:22',1,NULL,NULL,NULL,NULL,0,NULL),(637,'https://www.ingivision.com/2020/10/25/9655a2548b02c5e68982e7adae1ced2d/','71:d13fb2cf6ff9de194c4c19a34a9ad3c1',777,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:22','2020-10-25 02:15:22',1,NULL,NULL,NULL,NULL,0,NULL),(638,'https://www.ingivision.com/2020/10/25/239b850003ae0dab34beb5002a38b9f8/','71:c6189afcd370b3cbe8c28add7e86e85a',778,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:23','2020-10-25 02:15:23',1,NULL,NULL,NULL,NULL,0,NULL),(639,'https://www.ingivision.com/2020/10/25/e4dac3c0653c5d7ae98205a0a435819c/','71:cc95f9b447c966c3b10d975c7cd11a60',779,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:23','2020-10-25 02:15:23',1,NULL,NULL,NULL,NULL,0,NULL),(640,'https://www.ingivision.com/2020/10/25/03dfb93d2ce18a4a4d7ba43df4c8c6fe/','71:f029e549d2381becce76d8ef0f0e63b0',780,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:23','2020-10-25 02:15:23',1,NULL,NULL,NULL,NULL,0,NULL),(641,'https://www.ingivision.com/2020/10/25/60b1e29d1da71ee34d1bdb1cbf58e0ba/','71:bc99919b35dcd86312ea99a85ecc338e',781,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:24','2020-10-25 02:15:24',1,NULL,NULL,NULL,NULL,0,NULL),(642,'https://www.ingivision.com/2020/10/25/c29b5b42315a0284f65b1ea6b736503c/','71:01d1b985d9f3bf75c0a0d84cdec4eaca',782,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:27','2020-10-25 02:15:27',1,NULL,NULL,NULL,NULL,0,NULL),(643,'https://www.ingivision.com/2020/10/25/21adb45cec4db04ff16b83402f9ff2fe/','71:d88947482e479fa76591454ba06e8949',783,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:27','2020-10-25 02:15:27',1,NULL,NULL,NULL,NULL,0,NULL),(644,'https://www.ingivision.com/2020/10/25/14fa131d26f55e68239fddf3897fcac5/','71:c9a67f67357786163e39c72f0b2e1894',784,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:27','2020-10-25 02:15:27',1,NULL,NULL,NULL,NULL,0,NULL),(645,'https://www.ingivision.com/2020/10/25/cb919672daae73a0f0958eb4d1713e58/','71:44eac774b2e8e609d71e0d67c711d0b4',785,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:28','2020-10-25 02:15:28',1,NULL,NULL,NULL,NULL,0,NULL),(646,'https://www.ingivision.com/2020/10/25/669ac1adcc223bc64217ff42b7efc91b/','71:52b8ac2e7f120d6e9fe528bbc7711393',786,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:28','2020-10-25 02:15:28',1,NULL,NULL,NULL,NULL,0,NULL),(647,'https://www.ingivision.com/2020/10/25/7609753ebde166a91e1b602f7470aa41/','71:41d3c615fa1452cc8e9f9c210f8916cd',787,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:28','2020-10-25 02:15:28',1,NULL,NULL,NULL,NULL,0,NULL),(648,'https://www.ingivision.com/2020/10/25/4cf435e000e2542c58689a5db496e71b/','71:0c8bb0e8a41308742a26fb032569237f',788,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:29','2020-10-25 02:15:29',1,NULL,NULL,NULL,NULL,0,NULL),(649,'https://www.ingivision.com/2020/10/25/f6ba5f891262f1f68a9dbdca8c6c80ab/','71:b7709d53a18425d570595c3f18c3894c',789,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:29','2020-10-25 02:15:29',1,NULL,NULL,NULL,NULL,0,NULL),(650,'https://www.ingivision.com/2020/10/25/483fb5fd62432d8dafc2949665bcad7c/','71:7d6b72d51ab0f9a32efdbf7efa4f8722',790,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:29','2020-10-25 02:15:29',1,NULL,NULL,NULL,NULL,0,NULL),(651,'https://www.ingivision.com/2020/10/25/3b7347380e1ba9832aa03223982b4163/','71:81116d933bc27488bc546b33008bb29d',791,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:32','2020-10-25 02:15:32',1,NULL,NULL,NULL,NULL,0,NULL),(652,'https://www.ingivision.com/2020/10/25/25ff7afc4c25f7d6f84ce0ec195f7a64/','71:64dfc489019a2f4e53195a78eb638f52',792,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:32','2020-10-25 02:15:32',1,NULL,NULL,NULL,NULL,0,NULL),(653,'https://www.ingivision.com/2020/10/25/6fb4172eccffa4beeef6a6852b6108d9/','71:16aa039dd839e206e73d1d265c3e00ec',793,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:37','2020-10-25 02:15:37',1,NULL,NULL,NULL,NULL,0,NULL),(654,'https://www.ingivision.com/2020/10/25/c4254a1e6b9b6b4d48308df9752e245e/','71:6dff215d50a11a36b18d40b110063dd8',794,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-25 03:15:37','2020-10-25 02:15:37',1,NULL,NULL,NULL,NULL,0,NULL),(670,'https://www.ingivision.com/2020/10/26/1b6c9536634ff7edb62444032bf5912b/','71:5aba16d2164cb28097a70f95fb263bd8',810,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 05:11:17','2020-10-26 04:11:17',1,NULL,NULL,NULL,NULL,0,NULL),(671,'https://www.ingivision.com/2020/10/26/b8a2e78b1fbbf5d0f7ae6a55fe260b02/','71:cb43132433a19272377109e6f9e4e37a',811,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 05:11:17','2020-10-26 04:11:17',1,NULL,NULL,NULL,NULL,0,NULL),(672,'https://www.ingivision.com/2020/10/26/6271b3732bea800ac733ede5410a1593/','71:72a55fc47e282ed993c1f991db3480fc',812,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 05:11:18','2020-10-26 04:11:18',1,NULL,NULL,NULL,NULL,0,NULL),(673,'https://www.ingivision.com/2020/10/26/2109b8d56a6d2af10d20472062e1b0bc/','71:f4d62a497599d42e00551154093a7dc2',813,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 05:11:18','2020-10-26 04:11:18',1,NULL,NULL,NULL,NULL,0,NULL),(674,'https://www.ingivision.com/2020/10/26/b63d2ecf73190aa628292a40f6e7d2f3/','71:3471b35454f9ffc188175cb86d15bf9c',814,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-26 05:11:19','2020-10-26 04:11:19',1,NULL,NULL,NULL,NULL,0,NULL),(686,'https://www.ingivision.com/en/computer-electronic-engineer/','59:8fabcb948716d096c7a12f28e0c54211',826,'post','page',1,99,NULL,NULL,'Jobs','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,9,NULL,'2020-10-26 14:35:07','2021-03-21 16:03:31',1,NULL,NULL,NULL,NULL,0,NULL),(697,'https://www.ingivision.com/2020/10/27/7944fb440b9d8a60f80b9c1eb417948b/','71:b85b8e53bff436410cd3707c8296d21c',861,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-27 15:40:18','2020-10-27 14:40:18',1,NULL,NULL,NULL,NULL,0,NULL),(713,'https://www.ingivision.com/?post_type=flamingo_contact&p=877','60:2b7f828c305bcf487db2f3adcd66eb48',877,'post','flamingo_contact',0,0,NULL,NULL,'vmribera@ingivision.com','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-28 16:31:20','2020-10-28 15:31:20',1,NULL,NULL,NULL,NULL,0,NULL),(714,'https://www.ingivision.com/?post_type=flamingo_inbound&p=878','60:b959274a7b6104f23f181910a814c2c5',878,'post','flamingo_inbound',0,0,NULL,NULL,'Prueba','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-10-28 16:31:20','2020-10-28 15:31:20',1,NULL,NULL,NULL,NULL,0,NULL),(715,'https://www.ingivision.com/?post_type=wpcf7_contact_form&p=879','62:9f992e4462d769ee229317076b07a311',879,'post','wpcf7_contact_form',1,0,NULL,NULL,'Formulario oferta de trabajo','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-28 17:57:05','2020-10-28 18:06:18',1,NULL,NULL,NULL,NULL,0,NULL),(718,'https://www.ingivision.com/?post_type=flamingo_inbound&p=882','60:4430b5ca8b20bae353092c152ac34cfe',882,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-10-28 18:48:18','2020-10-28 17:48:19',1,NULL,NULL,NULL,NULL,0,NULL),(719,'https://www.ingivision.com/2020/10/28/be3be565bb848faaaca1fab07b002f52/','71:8b222dfe971bc0dcf39d8e6e6faaec40',883,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-10-28 18:48:18','2020-10-28 17:48:19',1,NULL,NULL,NULL,NULL,0,NULL),(720,'https://www.ingivision.com/?post_type=flamingo_inbound&p=884','60:b04ae8b243a02035cc2ed8878327942b',884,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-10-28 19:01:06','2020-10-28 18:01:06',1,NULL,NULL,NULL,NULL,0,NULL),(723,'https://www.ingivision.com/?page_id=887','39:0780bd554f1563466b87a4176e4aba99',887,'post','page',1,0,'Retrofit para calibradores, un servicio que te ahorra costes %%sep%% %%sitename%%','La maquinaria hortofrutícola nueva tiene elevados costes. Nuestro software puede instalarse en cualquier calibrador, tenga los años que tenga','Naranjas y mandarinas','draft',0,0,NULL,NULL,NULL,'Retrofit para calibradores',39,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-10-29 11:02:33','2020-10-29 10:27:30',1,NULL,NULL,NULL,NULL,0,NULL),(757,'https://www.ingivision.com/?page_id=924','39:c925f3d27aec774c550b754e7dff0e53',924,'post','page',1,0,NULL,NULL,'Frutas y Verduras','draft',0,0,NULL,NULL,NULL,NULL,NULL,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png',NULL,'first-content-image',NULL,44,1,NULL,'2020-11-10 14:36:16','2021-01-18 11:50:23',1,NULL,NULL,NULL,NULL,0,5),(758,'https://www.ingivision.com/?page_id=926','39:eac1bfcb8093a19943999cd95118cba1',926,'post','page',1,924,'Software de clasificación para naranjas y mandarinas %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para naranjas y mandarinas. Clasifica naranjas y mandarinas por color, tamaño y peso','Naranjas y mandarinas','draft',0,0,NULL,NULL,NULL,'Software de clasificación para naranjas y mandarinas',67,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png',NULL,'first-content-image',NULL,1,3,NULL,'2020-11-10 14:37:23','2021-01-18 11:51:20',1,NULL,NULL,NULL,NULL,1,2),(760,'https://www.ingivision.com/?page_id=930','39:51f67f5eae4116e584ca7d8c2c04afde',930,'post','page',1,924,'Software de clasificación para limones, limas y otros cítricos %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para limones. Clasifica limones por color, tamaño y peso','Limones','draft',0,0,NULL,NULL,NULL,'Software de clasificación para limones',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:38:49','2021-01-18 11:52:37',1,NULL,NULL,NULL,NULL,1,NULL),(761,'https://www.ingivision.com/?page_id=932','39:7f825fdffc5a5cb92ffbf6ec88be8b30',932,'post','page',1,924,'Software de clasificación para manzanas de cualquier variedad %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para manzanas de cualquier variedad. Clasifica manzanas por color, tamaño y peso.','Manzanas','draft',0,0,NULL,NULL,NULL,'Software de clasificación para manzanas',52,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:39:24','2021-01-18 11:53:02',1,NULL,NULL,NULL,NULL,1,NULL),(762,'https://www.ingivision.com/?page_id=934','39:98fa27b308c4e2182576a7bc4f3bba7d',934,'post','page',1,924,'Software de clasificación de peras de cualquier variedad %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para peras. Clasifica peras por color, tamaño y peso','Peras','draft',0,0,NULL,NULL,NULL,'Software de clasificación para peras',48,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:39:35','2021-01-18 11:53:46',1,NULL,NULL,NULL,NULL,1,NULL),(763,'https://www.ingivision.com/?page_id=936','39:90f56d56741b76313bc7e03361b5a9c3',936,'post','page',1,924,'Software de clasificación para melocotones %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para melocotones y otras frutas de hueso. Clasifica por color, tamaño y peso.','Melocotones','draft',0,0,NULL,NULL,NULL,'Software de clasificación para melocotones',52,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:39:44','2021-01-18 11:53:04',1,NULL,NULL,NULL,NULL,1,NULL),(765,'https://www.ingivision.com/?page_id=940','39:edaddb7a450c37e6b6e103239910f706',940,'post','page',1,924,'Software de clasificación para paraguayos %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para paraguayos. Clasifica paraguayos por color, tamaño y peso.','Paraguayos','draft',0,0,NULL,NULL,NULL,'Software de clasificación para paraguayos',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:40:27','2021-01-18 11:53:25',1,NULL,NULL,NULL,NULL,1,NULL),(766,'https://www.ingivision.com/?page_id=942','39:60f6590432a136be2cb8f68a972d5e58',942,'post','page',1,924,'Software de clasificación para nectarinas %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para nectarinas. Clasifica nectarinas por color, tamaño y peso.','Nectarinas','draft',0,0,NULL,NULL,NULL,'Software de clasificación para nectarinas',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:40:37','2021-01-18 11:53:22',1,NULL,NULL,NULL,NULL,1,NULL),(767,'https://www.ingivision.com/?page_id=944','39:699d35977df8b60eda33de1212233908',944,'post','page',1,924,'Software de clasificación para albaricoques %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para albaricoques. Clasifica albaricoques por color, tamaño y peso','Albaricoques','draft',0,0,NULL,NULL,NULL,'Software de clasificación para albaricoques',52,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:40:48','2021-01-18 11:51:47',1,NULL,NULL,NULL,NULL,1,NULL),(768,'https://www.ingivision.com/?page_id=946','39:2a8345aeb2fb480267a0e7a472d64707',946,'post','page',1,924,'Software de clasificación para kiwis de todas las variedades %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para kiwis. Clasifica kiwis por color, tamaño y peso.','Kiwis','draft',0,0,NULL,NULL,NULL,'Software de clasificación para kiwis',54,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,1,NULL,'2020-11-10 14:41:22','2021-01-18 11:52:31',1,NULL,NULL,NULL,NULL,1,1),(769,'https://www.ingivision.com/?page_id=948','39:2a53e5c63cf98f91bdb0084b34582b31',948,'post','page',1,924,'Software de clasificación para aguacates %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para aguacates. Clasifica aguacates por color, tamaño y peso','Aguacates','draft',0,0,NULL,NULL,NULL,'Software de clasificación para aguacates',54,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01-1024x596.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01-1024x596.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-11-10 14:41:32','2021-01-18 11:51:25',1,NULL,NULL,NULL,NULL,1,NULL),(770,'https://www.ingivision.com/?page_id=950','39:a61c44c3fb18c80d981fa9930440ccef',950,'post','page',1,924,'Software de clasificación para dátiles de cualquier variedad %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para dátiles. Clasifica dátiles por color, tamaño y peso.','Dátiles','draft',0,0,NULL,NULL,NULL,'Software de clasificación para dátiles',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-11-10 14:45:43','2021-01-18 11:52:10',1,NULL,NULL,NULL,NULL,1,NULL),(771,'https://www.ingivision.com/?page_id=952','39:5a506195b323bc070d5250d729d120d5',952,'post','page',1,924,'Software de clasificación para cerezas de cualqueir variedad %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para cerezas. Clasifica cerezas por color, tamaño y peso.','Cerezas','draft',0,0,NULL,NULL,NULL,'Software de clasificación para cerezas',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-11-10 14:45:53','2021-01-18 11:51:53',1,NULL,NULL,NULL,NULL,1,NULL),(772,'https://www.ingivision.com/?page_id=954','39:9c341885b5c597d6e9444dc08527b656',954,'post','page',1,924,'Software de clasificación para tomates de cualquier tipo %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para tomates de cualqueir variedad. Clasifica por color, tamaño y peso.','Tomates y cherries','draft',0,0,NULL,NULL,NULL,'Software de clasificación para tomates',52,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-11-10 14:46:40','2021-01-18 11:54:06',1,NULL,NULL,NULL,NULL,1,NULL),(773,'https://www.ingivision.com/?page_id=956','39:33184073e28dc1f75a0c0c8e3c36e744',956,'post','page',1,924,'Software de clasificación para melones %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para melones. Clasifica melones por color, tamaño y peso.','Melones','draft',0,0,NULL,NULL,NULL,'Software de clasificación para melones',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-11-10 14:46:51','2021-01-18 11:53:07',1,NULL,NULL,NULL,NULL,1,NULL),(774,'https://www.ingivision.com/?page_id=958','39:3c77527f5c12313144b3701181262d43',958,'post','page',1,924,'Software de clasificación para sandías de cualqueir variedad %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para sandías. Clasifica sandías por color, tamaño y peso.','Sandías','draft',0,0,NULL,NULL,NULL,'Software de clasificación para sandías',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-11-10 14:47:02','2021-01-18 11:53:49',1,NULL,NULL,NULL,NULL,1,NULL),(775,'https://www.ingivision.com/?page_id=960','39:93a3c017b9875565e790ba6aad77c6ec',960,'post','page',1,924,'Software de clasificación para pepinos de cualquier variedad %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para pepinos. Clasifica pepinos por color, tamaño y peso.','Pepinos','draft',0,0,NULL,NULL,NULL,'Software de clasificación para pepinos',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-11-10 14:47:13','2021-01-18 11:53:43',1,NULL,NULL,NULL,NULL,1,NULL),(776,'https://www.ingivision.com/?page_id=962','39:1105183aa630c3f701b355e4d4600094',962,'post','page',1,924,'Software de clasificación para calabacines %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para berenjenas de cualquier variedad. Clasifica por color, tamaño y peso.','Calabacines','draft',0,0,NULL,NULL,NULL,'Software de clasificación para calabacines',48,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,2,NULL,'2020-11-10 14:47:29','2021-01-18 11:51:50',1,NULL,NULL,NULL,NULL,1,NULL),(777,'https://www.ingivision.com/?page_id=964','39:70873da6a6627f580781304d4a866c8f',964,'post','page',1,924,'Software de clasificación para berenjenas %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para berenjenas de cualquier variedad. Clasifica por color, tamaño y peso.','Berenjenas','draft',0,0,NULL,NULL,NULL,'Software de clasificación para berenjenas',54,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png',NULL,'1116','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png','1116','featured-image','{\"width\":1080,\"height\":721,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/11/berenjena-01.png\",\"size\":\"full\",\"id\":1116,\"alt\":\"clasificaci\\u00f3n de berenjena\",\"pixels\":778680,\"type\":\"image/png\"}',0,3,NULL,'2020-11-10 14:48:21','2021-01-18 11:51:23',1,NULL,NULL,NULL,NULL,1,NULL),(778,'https://www.ingivision.com/?page_id=966','39:ad6e3b335343253a593279d63c890d45',966,'post','page',1,924,'Software de clasificación para granadas %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para granadas. Clasifica granadas por color, tamaño y peso.','Granadas','draft',0,0,NULL,NULL,NULL,'Software de clasificación para granadas',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:48:32','2021-01-18 11:52:13',1,NULL,NULL,NULL,NULL,1,NULL),(779,'https://www.ingivision.com/?page_id=968','39:326f3023569b6c4bbe86da949a314489',968,'post','page',1,924,'Software de clasificación para higos de cualquier variedad %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para higos. Clasifica higos por color, tamaño y peso.','Higos','draft',0,0,NULL,NULL,NULL,'Software de clasificación para higos',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-10 14:54:21','2021-01-18 11:52:15',1,NULL,NULL,NULL,NULL,1,NULL),(781,'https://www.ingivision.com/?page_id=1010','40:a840343f9e2d4d1fa99f5bf7447213dd',1010,'post','page',1,924,'Software de clasificación para patatas y tubérculos %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para patatas. Clasifica patatas por color, tamaño y peso.','Patatas','draft',0,0,NULL,NULL,NULL,'Software de clasificación para patatas',52,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata-1024x610.png',NULL,NULL,'first-content-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata-1024x610.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2020-11-11 10:27:31','2021-01-18 11:53:29',1,NULL,NULL,NULL,NULL,1,NULL),(782,'https://www.ingivision.com/?page_id=1012','40:7b3c25de3800922121414acc45ed7b92',1012,'post','page',1,924,'Software de clasificación para mangos y frutas exóticas %%sep%% %%sitename%%','Descubre cómo funciona nuestro software de clasificación para mangos. Clasifica mangos por color, tamaño y peso.','Mangos','draft',0,0,NULL,NULL,NULL,'Software de clasificación para mangos',50,90,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-11 10:28:19','2021-01-18 11:52:45',1,NULL,NULL,NULL,NULL,1,NULL),(785,'https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata.png','78:2d7fde5d744e2fc31ec5dec690378026',1020,'post','attachment',1,1010,NULL,NULL,'clasificacion-patata','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata.png',NULL,'1020','attachment-image',NULL,NULL,NULL,'1020','attachment-image',NULL,0,1,NULL,'2020-11-11 11:07:06','2021-01-18 12:53:28',1,NULL,NULL,NULL,NULL,1,NULL),(786,'https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png','90:81ac42b85b0d06933e9703303cc25d95',1022,'post','attachment',1,926,NULL,NULL,'CLASIFICACION-naranjas-mndarinas','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png',NULL,'1022','attachment-image',NULL,NULL,NULL,'1022','attachment-image',NULL,0,1,NULL,'2020-11-11 11:12:01','2021-02-17 16:03:09',1,NULL,NULL,NULL,NULL,1,NULL),(806,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png','66:fe6334207d5d179282bf045db53b027a',1043,'post','attachment',1,0,NULL,NULL,'aguacate','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png',NULL,'1043','attachment-image',NULL,NULL,NULL,'1043','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:08','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(807,'https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png','69:b9f17a5b5dfced05142de00ee14eb6b2',1044,'post','attachment',1,0,NULL,NULL,'albaricoque','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png',NULL,'1044','attachment-image',NULL,NULL,NULL,'1044','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:08','2020-11-16 12:15:52',1,NULL,NULL,NULL,NULL,0,NULL),(810,'https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png','65:6f4366b8522f68dba6b8455358571068',1047,'post','attachment',1,0,NULL,NULL,'cerezas','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png',NULL,'1047','attachment-image',NULL,NULL,NULL,'1047','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:10','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(811,'https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png','65:c931ca2efc9da3a7e35a05f26eca50f8',1048,'post','attachment',1,0,NULL,NULL,'datiles','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png',NULL,'1048','attachment-image',NULL,NULL,NULL,'1048','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:10','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(812,'https://www.ingivision.com/wp-content/uploads/2020/11/granada.png','65:f4beedcd1ff55e477abbe9434a266b3e',1049,'post','attachment',1,0,NULL,NULL,'granada','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/granada.png',NULL,'1049','attachment-image',NULL,NULL,NULL,'1049','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:11','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(813,'https://www.ingivision.com/wp-content/uploads/2020/11/higo.png','62:12b71bd9437c94fe1b1fe0746d1ed72b',1050,'post','attachment',1,0,NULL,NULL,'higo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/higo.png',NULL,'1050','attachment-image',NULL,NULL,NULL,'1050','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:12','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(814,'https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png','62:c65285a6184aaea58bf8ac59d649a074',1051,'post','attachment',1,0,NULL,NULL,'kiwi','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png',NULL,'1051','attachment-image',NULL,NULL,NULL,'1051','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:12','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(815,'https://www.ingivision.com/wp-content/uploads/2020/11/limon.png','63:44d1d3a33adb2b2f08fc26d7e3d9a4a9',1052,'post','attachment',1,0,NULL,NULL,'limon','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/limon.png',NULL,'1052','attachment-image',NULL,NULL,NULL,'1052','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:13','2020-11-16 12:04:54',1,NULL,NULL,NULL,NULL,0,NULL),(816,'https://www.ingivision.com/wp-content/uploads/2020/11/mango.png','63:06667f23a3afcd1ac8dc811f09c6157f',1053,'post','attachment',1,0,NULL,NULL,'mango','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/mango.png',NULL,'1053','attachment-image',NULL,NULL,NULL,'1053','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:13','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(818,'https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png','67:3a78e2f500d6c01922e8072f61a517cf',1055,'post','attachment',1,0,NULL,NULL,'melocoton','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png',NULL,'1055','attachment-image',NULL,NULL,NULL,'1055','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:14','2020-11-16 12:04:54',1,NULL,NULL,NULL,NULL,0,NULL),(819,'https://www.ingivision.com/wp-content/uploads/2020/11/melon.png','63:035d63432570932b56e721b5fe8edaba',1056,'post','attachment',1,0,NULL,NULL,'melon','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/melon.png',NULL,'1056','attachment-image',NULL,NULL,NULL,'1056','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:14','2020-11-16 12:11:36',1,NULL,NULL,NULL,NULL,0,NULL),(821,'https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png','67:99fa647bfa9721b8f66ceeb33beac6d1',1058,'post','attachment',1,0,NULL,NULL,'nectarina','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png',NULL,'1058','attachment-image',NULL,NULL,NULL,'1058','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:15','2020-11-16 12:11:36',1,NULL,NULL,NULL,NULL,0,NULL),(822,'https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png','67:15d89853c5654bee76550f213c1bfd9a',1059,'post','attachment',1,0,NULL,NULL,'paraguayo','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png',NULL,'1059','attachment-image',NULL,NULL,NULL,'1059','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:15','2020-11-16 12:15:52',1,NULL,NULL,NULL,NULL,0,NULL),(823,'https://www.ingivision.com/wp-content/uploads/2020/11/patata.png','64:09dad6728be35b51d937e297aeeabb2b',1060,'post','attachment',1,0,NULL,NULL,'patata','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/patata.png',NULL,'1060','attachment-image',NULL,NULL,NULL,'1060','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:16','2020-11-16 12:18:53',1,NULL,NULL,NULL,NULL,0,NULL),(824,'https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png','64:e146bf9cb5bdeda8c05c901f154f7e4f',1061,'post','attachment',1,0,NULL,NULL,'pepino','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png',NULL,'1061','attachment-image',NULL,NULL,NULL,'1061','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:16','2020-11-16 12:19:29',1,NULL,NULL,NULL,NULL,0,NULL),(825,'https://www.ingivision.com/wp-content/uploads/2020/11/pera.png','62:a2c5bad7327872586b210710cdc230fd',1062,'post','attachment',1,0,NULL,NULL,'pera','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/pera.png',NULL,'1062','attachment-image',NULL,NULL,NULL,'1062','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:16','2020-11-16 12:18:53',1,NULL,NULL,NULL,NULL,0,NULL),(826,'https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png','64:1a7ca143e1d4c65326250a3337e49318',1063,'post','attachment',1,0,NULL,NULL,'sandia','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png',NULL,'1063','attachment-image',NULL,NULL,NULL,'1063','attachment-image',NULL,0,1,NULL,'2020-11-16 10:13:17','2020-11-16 12:18:53',1,NULL,NULL,NULL,NULL,0,NULL),(827,'https://www.ingivision.com/wp-content/uploads/2020/11/tomate.png','64:22b4508c40f3577a4a82aeb8538e6754',1064,'post','attachment',1,0,NULL,NULL,'tomate','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/tomate.png',NULL,'1064','attachment-image',NULL,NULL,NULL,'1064','attachment-image',NULL,0,NULL,NULL,'2020-11-16 10:13:17','2020-11-16 09:13:17',1,NULL,NULL,NULL,NULL,0,NULL),(828,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png','67:ba9f12c63d935ac37a9751fb53f120c5',1065,'post','attachment',1,0,NULL,NULL,'berenjena','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png',NULL,'1065','attachment-image',NULL,NULL,NULL,'1065','attachment-image',NULL,0,1,NULL,'2020-11-16 10:18:21','2020-11-16 12:19:29',1,NULL,NULL,NULL,NULL,0,NULL),(829,'https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png','67:718eff59f25bb485a8c06c4bd2d3c953',1066,'post','attachment',1,0,NULL,NULL,'calabacin','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png',NULL,'1066','attachment-image',NULL,NULL,NULL,'1066','attachment-image',NULL,0,1,NULL,'2020-11-16 10:18:22','2020-11-16 12:04:54',1,NULL,NULL,NULL,NULL,0,NULL),(830,'https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png','66:62b9b0886e803a726b17e9455830b798',1067,'post','attachment',1,0,NULL,NULL,'manzanan','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png',NULL,'1067','attachment-image',NULL,NULL,NULL,'1067','attachment-image',NULL,0,1,NULL,'2020-11-16 10:18:33','2020-11-16 12:04:54',1,NULL,NULL,NULL,NULL,0,NULL),(831,'https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png','65:fa2aaba3e781dd6a07ea7e85a72df98c',1068,'post','attachment',1,0,NULL,NULL,'naranja','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/naranja.png',NULL,'1068','attachment-image',NULL,NULL,NULL,'1068','attachment-image',NULL,0,1,NULL,'2020-11-16 10:18:42','2020-11-16 10:41:47',1,NULL,NULL,NULL,NULL,0,NULL),(832,'https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png','75:ef9052c5d51095c3ee2f7d616bdf4e36',1076,'post','attachment',1,0,NULL,NULL,'naranjaymandarina','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png',NULL,'1076','attachment-image',NULL,NULL,NULL,'1076','attachment-image',NULL,0,1,NULL,'2020-11-16 10:47:30','2020-11-16 11:43:04',1,NULL,NULL,NULL,NULL,0,NULL),(834,'https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png','75:bffaeb5112362ecc04c4d70c1ff280f9',1092,'post','attachment',1,0,NULL,NULL,'tomates-y-cherris','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png',NULL,'1092','attachment-image',NULL,NULL,NULL,'1092','attachment-image',NULL,0,1,NULL,'2020-11-16 12:20:25','2020-11-16 12:20:32',1,NULL,NULL,NULL,NULL,0,NULL),(838,'https://www.ingivision.com/2020/11/19/fruit-sorter-retrofit-la-solucion-definitiva-para-no-invertir-miles-de-euros/','115:aced62d579bb57e32e7c56f9d7134130',1103,'post','post',1,0,'Fruit sorter retrofit para tu antiguo calibrador %%sep%% %%sitename%%','Te contamos en qué consiste el retrofit y cómo te permite ahorrar con tu calibrador, sin renunciar a las funcionalidades de calibrado 4.0','Fruit sorter retrofit, la solución definitiva para no invertir miles de euros','publish',NULL,0,NULL,NULL,NULL,'Fruit sorter retrofit para tu antiguo calibrador',61,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit.png',NULL,'1108','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit-1024x536.png','1108','set-by-user','{\"width\":1024,\"height\":536,\"path\":\"2020/11/Fruit-sorter-retrofit-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit-1024x536.png\",\"size\":\"large\",\"id\":\"1108\",\"alt\":\"Fruit sorter retrofit\",\"pixels\":548864,\"type\":\"image/png\"}',2,NULL,NULL,'2020-11-19 08:39:43','2020-11-19 08:42:21',1,NULL,NULL,NULL,NULL,0,NULL),(839,'https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit.png','79:54cc5ae1ed121ed75f528505a6a7f086',1108,'post','attachment',1,1103,NULL,NULL,'Fruit-sorter-retrofit','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit.png',NULL,'1108','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit-1024x536.png','1108','attachment-image','{\"width\":1024,\"height\":536,\"path\":\"2020/11/Fruit-sorter-retrofit-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/11/Fruit-sorter-retrofit-1024x536.png\",\"size\":\"large\",\"id\":1108,\"alt\":\"Fruit sorter retrofit\",\"pixels\":548864,\"type\":\"image/png\"}',0,NULL,NULL,'2020-11-19 09:29:19','2020-11-19 09:30:05',1,NULL,NULL,NULL,NULL,1,NULL),(840,'https://www.ingivision.com/?post_type=flamingo_contact&p=1109','61:d14118f1a2bd87a0f73bd152e23ee756',1109,'post','flamingo_contact',0,0,NULL,NULL,'zartinoureddine@gmail.com','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-20 16:41:37','2020-11-20 15:41:37',1,NULL,NULL,NULL,NULL,0,NULL),(841,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1110','61:9dadf185336677369df82f2c1a5844f1',1110,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-11-20 16:41:37','2020-11-20 15:41:37',1,NULL,NULL,NULL,NULL,0,NULL),(842,'https://www.ingivision.com/?post_type=flamingo_contact&p=1111','61:830f409edc06df4b06fda26f70b62aec',1111,'post','flamingo_contact',0,0,NULL,NULL,'yassine.elagdi@gmail.com','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-11-21 02:04:24','2020-11-21 01:04:24',1,NULL,NULL,NULL,NULL,0,NULL),(843,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1112','61:d41f3e45389ad4b753b146f4aa0b60d4',1112,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-11-21 02:04:24','2020-11-21 01:04:24',1,NULL,NULL,NULL,NULL,0,NULL),(844,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1113','61:08be97427f6c987ebf42467fc19facf7',1113,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-11-23 08:00:59','2020-11-23 07:00:59',1,NULL,NULL,NULL,NULL,0,NULL),(845,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1114','61:71a01248edfba92c15b90eedab68206d',1114,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-11-23 08:05:21','2020-11-23 07:05:21',1,NULL,NULL,NULL,NULL,0,NULL),(846,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-1.png','69:62562788c2421d21729f68d1c79e4561',1115,'post','attachment',1,964,NULL,NULL,'berenjena','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-1.png',NULL,'1115','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-1.png','1115','attachment-image','{\"width\":1080,\"height\":720,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-1.png\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/11/berenjena-1.png\",\"size\":\"full\",\"id\":1115,\"alt\":\"clasificaci\\u00f3n de berenjenas\",\"pixels\":777600,\"type\":\"image/png\"}',0,NULL,NULL,'2020-11-24 12:16:47','2021-01-18 12:51:22',1,NULL,NULL,NULL,NULL,1,NULL),(847,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png','70:2791d6d58184a2ff8245271f57a8301b',1116,'post','attachment',1,964,NULL,NULL,'berenjena','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png',NULL,'1116','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png','1116','attachment-image','{\"width\":1080,\"height\":721,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01.png\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/11/berenjena-01.png\",\"size\":\"full\",\"id\":1116,\"alt\":\"clasificaci\\u00f3n de berenjena\",\"pixels\":778680,\"type\":\"image/png\"}',0,1,NULL,'2020-11-24 12:18:05','2021-01-18 12:51:22',1,NULL,NULL,NULL,NULL,1,NULL),(848,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01.png','72:9b5e8ea09e6014627133e63072498edf',1119,'post','attachment',1,948,NULL,NULL,'aguacate-01-01','inherit',NULL,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01.png',NULL,'1119','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01.png','1119','attachment-image','{\"width\":1424,\"height\":829,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01.png\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/11/aguacate-01-01.png\",\"size\":\"full\",\"id\":1119,\"alt\":\"clasificaci\\u00f3n de aguacates\",\"pixels\":1180496,\"type\":\"image/png\"}',0,1,NULL,'2020-11-24 12:37:01','2021-01-18 12:51:25',1,NULL,NULL,NULL,NULL,1,NULL),(851,'https://www.ingivision.com/2020/12/18/calibrado-de-frutas-como-elegir-software/','79:9c7dd7abe1d87aaa937fa42b42d87de1',1123,'post','post',1,0,'Calibrado de frutas: ¿Cómo elegir un buen software? %%sep%% %%sitename%%','Todas las claves para elegir bien un buen sistema electrónico de calibrado de frutas invirtiendo lo menos posible.','Calibrado de frutas ¿cómo elegir un buen software sin morir en el intento?','publish',NULL,0,NULL,NULL,NULL,'Calibrado de frutas: ¿Cómo elegir un buen software?',59,90,0,NULL,0,NULL,NULL,NULL,'Calibrado de frutas: ¿Cómo elegir un buen software?','https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg','Todas las claves para elegir bien un buen sistema electrónico de calibrado de frutas invirtiendo lo menos posible.','1125','set-by-user','Calibrado de frutas: ¿Cómo elegir un buen software?','Todas las claves para elegir bien un buen sistema electrónico de calibrado de frutas invirtiendo lo menos posible.','https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg','1125','set-by-user','{\"width\":1894,\"height\":992,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg\",\"size\":\"full\",\"id\":\"1125\",\"alt\":\"C\\u00f3mo elegir software de clasificaci\\u00f3n de frutas\",\"pixels\":1878848,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-12-17 20:06:50','2020-12-18 08:26:50',1,NULL,NULL,NULL,NULL,0,NULL),(852,'https://www.ingivision.com/tag/software/','40:e361fffc43cf5f7d9b8a369491e0d4b2',16,'term','post_tag',NULL,NULL,NULL,NULL,'software',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-17 20:32:50','2020-12-17 19:32:50',1,NULL,NULL,NULL,NULL,0,NULL),(853,'https://www.ingivision.com/tag/calibradode-frutas/','50:5db5967ac08fe0d152fc5717532b2e35',17,'term','post_tag',NULL,NULL,NULL,NULL,'calibradode frutas',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-17 20:32:55','2020-12-17 19:32:55',1,NULL,NULL,NULL,NULL,0,NULL),(854,'https://www.ingivision.com/tag/clasificacion-de-frutas/','55:838792949a671537af19cd2f405abdb2',18,'term','post_tag',NULL,NULL,NULL,NULL,'clasificación de frutas',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2020-12-17 20:33:00','2020-12-17 19:33:00',1,NULL,NULL,NULL,NULL,0,NULL),(855,'https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg','92:fbf0ff3785c7d5b359e70108655d89ee',1125,'post','attachment',1,1123,NULL,NULL,'como-elegir-software-clasificacion','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg',NULL,'1125','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg','1125','attachment-image','{\"width\":1894,\"height\":992,\"url\":\"https://www.ingivision.com/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2020/12/como-elegir-software-clasificacion.jpg\",\"size\":\"full\",\"id\":1125,\"alt\":\"C\\u00f3mo elegir software de clasificaci\\u00f3n de frutas\",\"pixels\":1878848,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2020-12-17 20:33:31','2020-12-18 08:45:32',1,NULL,NULL,NULL,NULL,1,NULL),(864,'https://www.ingivision.com/2020/12/27/903e7a15b5644707d58ef94e90710530/','71:065196cf5387e3c5d08cc6ae0b1cb7b8',1134,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,1,NULL,NULL,'2020-12-27 16:18:25','2020-12-27 15:18:26',1,NULL,NULL,NULL,NULL,0,NULL),(865,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1135','61:aa0bdba2605f2255551262758e3b0600',1135,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2020-12-27 16:18:52','2020-12-27 15:18:52',1,NULL,NULL,NULL,NULL,0,NULL),(872,'https://www.ingivision.com/2021/01/12/612ae3ff8cf47177c109cf3eee5b68aa/','71:7df78aa13b3d3602b889ba44896ac3e5',1142,'post','oembed_cache',0,0,NULL,NULL,'','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-12 00:47:07','2021-01-11 23:47:07',1,NULL,NULL,NULL,NULL,0,NULL),(875,'https://www.ingivision.com/2021/01/14/clasificacion-automatica-calidad-externa-citricos/','88:8a4e99f5011e034efc98058208e8cc07',1145,'post','post',1,0,'Clasificación automática de la calidad externa en cítricos %%sep%% %%sitename%%','Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos. Casos de éxito en clientes reales','Conseguir mandarinas de calidad superextra de forma automática ya es posible','publish',NULL,0,NULL,NULL,NULL,'Clasificación automática de la calidad externa en cítricos',61,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra.png',NULL,'1159','featured-image','Conseguir mandarinas de calidad superextra de forma automática ya es posible','Hemos instalado con éxito la última versión de nuestro sistema de detección de calidad externa durante la primera parte de la campaña de cítricos en varios de nuestros clientes más cercanos.','https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra-1024x536.png','1159','set-by-user','{\"width\":1024,\"height\":536,\"path\":\"2021/01/clementina-calidad-superextra-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra-1024x536.png\",\"size\":\"large\",\"id\":\"1159\",\"alt\":\"Clementina calidad superextra\",\"pixels\":548864,\"type\":\"image/png\"}',1,1,NULL,'2021-01-14 09:53:48','2021-02-17 16:03:09',1,NULL,NULL,NULL,NULL,0,4),(876,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26.png','103:7f98e2ac9707163d29bb4a3b3f538893',1146,'post','attachment',1,1145,NULL,NULL,'Captura-de-pantalla-2021-01-14-a-las-10.59.26','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26.png',NULL,'1146','attachment-image',NULL,NULL,NULL,'1146','attachment-image',NULL,0,NULL,NULL,'2021-01-14 10:03:17','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(877,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26-1.png','105:51d54721e07a202d184b317e2b5ffc66',1147,'post','attachment',1,1145,NULL,NULL,'Captura-de-pantalla-2021-01-14-a-las-10.59.26-1','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.26-1.png',NULL,'1147','attachment-image',NULL,NULL,NULL,'1147','attachment-image',NULL,0,NULL,NULL,'2021-01-14 10:07:47','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(878,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.43.png','103:065780cef28304753da738fb1d75e915',1148,'post','attachment',1,1145,NULL,NULL,'Captura-de-pantalla-2021-01-14-a-las-10.59.43','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/Captura-de-pantalla-2021-01-14-a-las-10.59.43.png',NULL,'1148','attachment-image',NULL,NULL,NULL,'1148','attachment-image',NULL,0,NULL,NULL,'2021-01-14 10:08:34','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(879,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png','77:a2a0d001cbaaafc1c5f19f84e27c464f',1149,'post','attachment',1,1145,NULL,NULL,'Frutos-sin-defectos','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png',NULL,'1149','attachment-image',NULL,NULL,NULL,'1149','attachment-image',NULL,0,2,NULL,'2021-01-14 10:15:48','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(880,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos.png','77:434cd0cfeeffabc73822debc380a2b2c',1150,'post','attachment',1,1145,NULL,NULL,'Frutos-con-defectos','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos.png',NULL,'1150','attachment-image',NULL,NULL,NULL,'1150','attachment-image',NULL,0,NULL,NULL,'2021-01-14 10:15:55','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(881,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png','79:fb378e3633533410d1ad3427533aa385',1151,'post','attachment',1,1145,NULL,NULL,'Frutos-con-defectos-1','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png',NULL,'1151','attachment-image',NULL,NULL,NULL,'1151','attachment-image',NULL,0,2,NULL,'2021-01-14 10:16:43','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(882,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png','101:3259a29fd596f369b30692cbcdfdd738',1155,'post','attachment',1,1145,NULL,NULL,'clementina-con-defectos-perdida-pedúnculo','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png',NULL,'1155','attachment-image',NULL,NULL,NULL,'1155','attachment-image',NULL,0,2,NULL,'2021-01-14 10:27:16','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(883,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png','104:803756672e4bc8af11de54012abf6a79',1156,'post','attachment',1,1145,NULL,NULL,'clementina-con-grandes-defectos-malformaciones','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png',NULL,'1156','attachment-image',NULL,NULL,NULL,'1156','attachment-image',NULL,0,2,NULL,'2021-01-14 10:27:30','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(884,'https://www.ingivision.com/tag/calidad-externa/','47:7cd964bbbc23ed4bc8b26b6b77f65750',19,'term','post_tag',NULL,NULL,NULL,NULL,'calidad externa',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-14 10:44:10','2021-01-14 09:44:10',1,NULL,NULL,NULL,NULL,0,NULL),(885,'https://www.ingivision.com/tag/clasificacion-de-citricos/','57:a597954f09c32f3e1775aff2a1878b79',20,'term','post_tag',NULL,NULL,NULL,NULL,'clasificación de cítricos',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-14 10:45:00','2021-01-14 09:45:00',1,NULL,NULL,NULL,NULL,0,NULL),(886,'https://www.ingivision.com/tag/clasificacion-automatica-de-frutas/','66:5dd157e77e2078641d14fe486ac542a9',21,'term','post_tag',NULL,NULL,NULL,NULL,'Clasificación automática de frutas',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-14 10:45:11','2021-01-14 09:45:11',1,NULL,NULL,NULL,NULL,0,NULL),(887,'https://www.ingivision.com/tag/ingigrader/','42:4e85be0bf7d1bed27128ea01f5f659b5',22,'term','post_tag',NULL,NULL,NULL,NULL,'Ingigrader',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-14 10:45:19','2021-01-14 09:45:19',1,NULL,NULL,NULL,NULL,0,NULL),(888,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra.png','87:cc13f9790f3b508f81d3b02aa5ca388e',1159,'post','attachment',1,1145,NULL,NULL,'clementina-calidad-superextra','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra.png',NULL,'1159','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra-1024x536.png','1159','attachment-image','{\"width\":1024,\"height\":536,\"path\":\"2021/01/clementina-calidad-superextra-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra-1024x536.png\",\"size\":\"large\",\"id\":1159,\"alt\":\"Clementina calidad superextra\",\"pixels\":548864,\"type\":\"image/png\"}',0,NULL,NULL,'2021-01-14 10:50:56','2021-01-14 11:39:30',1,NULL,NULL,NULL,NULL,1,NULL),(890,'https://www.ingivision.com/2021/01/14/success-stories-first-installations-of-ingigrader-2-0-for-external-quality-classification-in-citrus/','138:8f67a0e91a603aa4d328a700cc615621',1165,'post','post',1,0,'Clasificación automática de la calidad externa en cítricos %%sep%% %%sitename%%','Te contamos cómo funciona IngiGrader 2.0 para la clasificación de la calidad externa en cítricos. Casos de éxito en clientes reales','Success stories: First installations of IngiGrader 2.0 for external quality classification in citrus','publish',NULL,0,NULL,NULL,NULL,'Clasificación automática de la calidad externa en cítricos',53,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra.png',NULL,'1159','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra-1024x536.png','1159','featured-image','{\"width\":1024,\"height\":536,\"path\":\"2021/01/clementina-calidad-superextra-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/01/clementina-calidad-superextra-1024x536.png\",\"size\":\"large\",\"id\":1159,\"alt\":\"Clementina calidad superextra\",\"pixels\":548864,\"type\":\"image/png\"}',0,NULL,NULL,'2021-01-14 11:29:37','2021-01-18 08:29:35',1,NULL,NULL,NULL,NULL,0,4),(891,'https://www.ingivision.com/2021/01/18/el-sistema-definitivo-para-la-deteccion-de-kiwis-planos/','94:00efee6e1f55df51ca33e5a7e1a652a1',1193,'post','post',1,0,'Detección de kiwi plano: un sistema simple y muy efectivo %%sep%% %%sitename%%','La forma aplanada que muchas veces presenta el kiwi afecta a la calidad por motivos estéticos. ¿Cómo detectamos y solucionamos esto?','El sistema definitivo para la detección de kiwis planos.','publish',NULL,0,NULL,NULL,NULL,'Detección de kiwi plano',63,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi.png',NULL,'1202','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-1024x536.png','1202','set-by-user','{\"width\":1024,\"height\":536,\"path\":\"2021/01/kiwi-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-1024x536.png\",\"size\":\"large\",\"id\":\"1202\",\"alt\":\"Detecci\\u00f3n de kiwi plano: un sistema simple y muy efectivo\",\"pixels\":548864,\"type\":\"image/png\"}',1,1,NULL,'2021-01-18 09:27:53','2021-01-18 11:25:05',1,NULL,NULL,NULL,NULL,0,2),(892,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png','80:2d7d0a3e9ab7a1e22d23b4200f723633',1196,'post','attachment',1,1193,NULL,NULL,'kiwi-apariencia-normal','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png',NULL,'1196','attachment-image',NULL,NULL,NULL,'1196','attachment-image',NULL,0,2,NULL,'2021-01-18 09:50:52','2021-01-18 11:25:51',1,NULL,NULL,NULL,NULL,1,NULL),(893,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png','68:50ec8d18ff055911b43057fe1e251116',1197,'post','attachment',1,1193,NULL,NULL,'kiwi-plano','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png',NULL,'1197','attachment-image',NULL,NULL,NULL,'1197','attachment-image',NULL,0,2,NULL,'2021-01-18 09:51:11','2021-01-18 11:25:51',1,NULL,NULL,NULL,NULL,1,NULL),(894,'https://www.ingivision.com/wp-content/uploads/2021/01/catalogo-ingivision-EN.pdf','80:be1326b568c29988d4c1a2e9d90f5d48',1199,'post','attachment',1,0,NULL,NULL,'catalogo-ingivision-EN','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-18 10:19:30','2021-01-18 09:19:30',1,NULL,NULL,NULL,NULL,0,NULL),(895,'https://www.ingivision.com/wp-content/uploads/2021/01/catalogo-ingivision-ES.pdf','80:5709ca130a904ced694eab599012b68b',1200,'post','attachment',1,0,NULL,NULL,'catalogo-ingivision-ES','inherit',0,0,0,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-18 10:31:05','2021-01-18 09:31:05',1,NULL,NULL,NULL,NULL,0,NULL),(896,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi.png','62:81c84894d2bc4e1ffe3bb6112013f45d',1202,'post','attachment',1,1193,NULL,NULL,'kiwi','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi.png',NULL,'1202','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-1024x536.png','1202','attachment-image','{\"width\":1024,\"height\":536,\"path\":\"2021/01/kiwi-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-1024x536.png\",\"size\":\"large\",\"id\":1202,\"alt\":\"Detecci\\u00f3n de kiwi plano: un sistema simple y muy efectivo\",\"pixels\":548864,\"type\":\"image/png\"}',0,NULL,NULL,'2021-01-18 11:15:41','2021-01-18 11:19:47',1,NULL,NULL,NULL,NULL,1,NULL),(897,'https://www.ingivision.com/2021/01/18/simple-and-very-effective-system-for-the-detection-of-flat-kiwis/','103:ea9d4ec305a50c5e7a3b45fe78eddf97',1208,'post','post',1,0,'Simple and very effective system for the detection of flat kiwis %%sep%% %%sitename%%','Detecting flat-shaped kiwifruit is one of the main problems in kiwi packaging. In this post we tell you about our solution','Simple and very effective system for the detection of flat kiwis.','publish',NULL,0,NULL,NULL,NULL,'Simple and very effective system for the detection of flat kiwis.',40,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi.png',NULL,'1202','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-1024x536.png','1202','set-by-user','{\"width\":1024,\"height\":536,\"path\":\"2021/01/kiwi-1024x536.png\",\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-1024x536.png\",\"size\":\"large\",\"id\":\"1202\",\"alt\":\"Detecci\\u00f3n de kiwi plano: un sistema simple y muy efectivo\",\"pixels\":548864,\"type\":\"image/png\"}',0,NULL,NULL,'2021-01-18 11:25:51','2021-01-18 10:36:17',1,NULL,NULL,NULL,NULL,0,2),(899,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1224','61:8618e649f318af99af2bbb258fb2e067',1224,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-01-19 07:59:11','2021-01-19 06:59:11',1,NULL,NULL,NULL,NULL,0,NULL),(903,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1229','61:8ab05a3d2f0b9ecd3843ac50513e21a8',1229,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-01-27 05:41:38','2021-01-27 04:41:38',1,NULL,NULL,NULL,NULL,0,NULL),(905,'https://www.ingivision.com/en/work-whith-us/','44:f3711dc26e8a9a5d62f19427f8f03cfe',1233,'post','page',1,99,NULL,NULL,'Work whith us','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,90,0,NULL,0,NULL,NULL,NULL,NULL,'http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',NULL,NULL,'first-content-image',NULL,NULL,'http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',NULL,'first-content-image',NULL,0,NULL,NULL,'2021-01-27 10:33:22','2021-01-27 10:15:04',1,NULL,NULL,NULL,NULL,1,1),(906,'https://www.ingivision.com/?post_type=wpcf7_contact_form&p=1235','63:0023cef5bf3d63d028817a3150bcd48f',1235,'post','wpcf7_contact_form',1,0,NULL,NULL,'Formulario oferta de trabajo ENG','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-01-27 11:11:34','2021-01-27 10:14:32',1,NULL,NULL,NULL,NULL,0,NULL),(908,'https://www.ingivision.com/2021/02/18/previsiones-2021-sector-hortofruticola/','77:46f1ab7ea52bec5af6b97a9f30e85c85',1239,'post','post',1,0,'Previsiones sector hortofrutícola ¿qué nos depara el 2021? %%sep%% %%sitename%%','Te contamos las previsiones para este año en el sector teniendo en cuenta factores como el clima o la evolución de la pandemia.','¿Cuáles son las previsiones para 2021 en el sector hortofrutícola?','publish',NULL,0,NULL,NULL,NULL,'Previsiones sector hortofrutícola 2021',61,60,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg',NULL,'1241','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg','1241','featured-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg\",\"size\":\"full\",\"id\":1241,\"alt\":\"Futuro del sector hortofrut\\u00edcola\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-02-18 10:06:37','2021-03-23 07:04:51',1,NULL,NULL,NULL,NULL,0,6),(909,'https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg','86:9afecb1856bd4fdf0df85486e3c4ff57',1241,'post','attachment',1,1239,NULL,NULL,'Futuro-sector-hortofruticola','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg',NULL,'1241','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg','1241','attachment-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/02/Futuro-sector-hortofruticola.jpg\",\"size\":\"full\",\"id\":1241,\"alt\":\"Futuro del sector hortofrut\\u00edcola\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',0,1,NULL,'2021-02-18 10:51:33','2021-02-18 10:52:01',1,NULL,NULL,NULL,NULL,1,NULL),(910,'https://www.ingivision.com/2021/02/23/inteligencia-artificial-campana-datil/','76:13b0f49feb94e1e1dafbbeaec987c985',1242,'post','post',1,0,'Inteligencia artificial para la campaña del dátil %%sep%% %%sitename%%','La inteligencia artificial de nuestro software IngiGrader 2.0 % se adapta a cualquier fruto. Te contamos cómo lo hacemos para el dátil','IngiGrader 2.0 se instalará en varios clientes para la próxima campaña de dátil','publish',NULL,0,NULL,NULL,NULL,'Inteligencia artificial para la campaña del dátil',48,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg',NULL,'1244','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg','1244','featured-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg\",\"size\":\"full\",\"id\":1244,\"alt\":\"Clasificacion datiles por inteligencia artificial\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-02-23 09:08:27','2021-03-23 07:03:44',1,NULL,NULL,NULL,NULL,0,2),(911,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg','112:7f164c895dae32f1bb80926b84bb2acd',1244,'post','attachment',1,1242,NULL,NULL,'software-clasificacion-datiles-inteligencia-artificial','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg',NULL,'1244','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg','1244','attachment-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg\",\"size\":\"full\",\"id\":1244,\"alt\":\"Clasificacion datiles por inteligencia artificial\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',0,1,NULL,'2021-02-23 09:31:30','2021-02-23 09:32:03',1,NULL,NULL,NULL,NULL,1,NULL),(912,'https://www.ingivision.com/2021/02/23/ingigrader-2-0-will-be-installed-in-several-customers-for-the-next-date-season/','117:ee240526eb795270a18c053d55ea3131',1246,'post','post',1,0,'Artificial intelligence for date campaign in August %%sep%% %%sitename%%','Artificial intelligence of our IngiGrader 2.0% software adapts to any fruit. We will tell you how we do it for dates.','IngiGrader 2.0 will be installed in several customers for the next date season','publish',NULL,0,NULL,NULL,NULL,'Artificial intelligence for date campaign',40,30,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg',NULL,'1244','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg','1244','featured-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial.jpg\",\"size\":\"full\",\"id\":1244,\"alt\":\"Clasificacion datiles por inteligencia artificial\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',0,NULL,NULL,'2021-02-23 09:50:23','2021-02-23 09:18:16',1,NULL,NULL,NULL,NULL,0,1),(913,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles.jpg','88:03f28a6ee74ef07575b53df4c3036667',1249,'post','attachment',1,1246,NULL,NULL,'software-clasificacion-datiles','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles.jpg',NULL,'1249','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles.jpg','1249','attachment-image','{\"width\":1248,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/02/software-clasificacion-datiles.jpg\",\"size\":\"full\",\"id\":1249,\"alt\":\"Clasificaci\\u00f3n de d\\u00e1tiles con inteligencia artificial\",\"pixels\":1010880,\"type\":\"image/jpeg\"}',0,3,NULL,'2021-02-23 09:56:26','2021-02-23 09:59:53',1,NULL,NULL,NULL,NULL,1,NULL),(914,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1255','61:9203206e695a8809ef27bb99ca7f5950',1255,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-02-24 05:22:53','2021-02-24 04:22:53',1,NULL,NULL,NULL,NULL,0,NULL),(915,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1256','61:a1825ff5c96184080d747b0afa0672bd',1256,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-02-24 05:22:53','2021-02-24 04:22:53',1,NULL,NULL,NULL,NULL,0,NULL),(916,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1257','61:5c5b06fe8765c87ac96efa59c4d039f4',1257,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-02-27 00:09:16','2021-02-26 23:09:19',1,NULL,NULL,NULL,NULL,0,NULL),(918,'https://www.ingivision.com/?p=1259','34:b1c069ece4a21161c11ef762f8f6fce7',1259,'post','customize_changeset',1,0,NULL,NULL,'','trash',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-02-27 18:24:51','2021-02-27 17:24:51',1,NULL,NULL,NULL,NULL,0,NULL),(919,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1260','61:9273fc25d1dfa359e75ece56fc9340e7',1260,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-01 21:45:49','2021-03-01 20:45:49',1,NULL,NULL,NULL,NULL,0,NULL),(920,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1261','61:f7bfcb3a24da8e3a53abc576636a9a52',1261,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-04 03:00:26','2021-03-04 02:00:26',1,NULL,NULL,NULL,NULL,0,NULL),(921,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1262','61:23c9a22dd311b0c4131c05bac67d739c',1262,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-04 03:00:26','2021-03-04 02:00:26',1,NULL,NULL,NULL,NULL,0,NULL),(922,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1263','61:d2b662e26c6116246fcd57c73eb19051',1263,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-07 11:39:10','2021-03-07 10:39:10',1,NULL,NULL,NULL,NULL,0,NULL),(923,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1264','61:0518025e826bd53c2ffcd0219cb8520e',1264,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-07 11:39:10','2021-03-07 10:39:10',1,NULL,NULL,NULL,NULL,0,NULL),(924,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1265','61:b646b3fd0b9107635b2149dbda1e255d',1265,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-18 20:35:55','2021-03-18 19:35:55',1,NULL,NULL,NULL,NULL,0,NULL),(925,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1266','61:692a6e7ffbbea53c91aee3d5b2243326',1266,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-18 20:35:55','2021-03-18 19:35:55',1,NULL,NULL,NULL,NULL,0,NULL),(926,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1267','61:553a4cbd83d758420439132596bfa8ba',1267,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-20 16:11:59','2021-03-20 15:12:00',1,NULL,NULL,NULL,NULL,0,NULL),(927,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1268','61:bc0b60f6864d2aea8c96b88b5188b9a8',1268,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-20 22:21:11','2021-03-20 21:21:11',1,NULL,NULL,NULL,NULL,0,NULL),(928,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1269','61:9a21e448fb0acba6078430700c972a2d',1269,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-20 22:21:11','2021-03-20 21:21:11',1,NULL,NULL,NULL,NULL,0,NULL),(929,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1270','61:d2b4016bc0f7337c2ed4df3b674139db',1270,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','flamingo-spam',0,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-21 02:09:51','2021-03-21 01:09:52',1,NULL,NULL,NULL,NULL,0,NULL),(930,'https://www.ingivision.com/category/sector-horotfruticola/','58:00a5ca76335aae21a5354e40817110fa',23,'term','category',NULL,NULL,NULL,NULL,'Sector horotfrutícola',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-03-23 08:04:40','2021-03-23 07:04:40',1,NULL,NULL,NULL,NULL,0,NULL),(931,'https://www.ingivision.com/2021/03/23/inteligencia-artificial-aplicacion-sector-hortofruticola/','95:88ad5f3cefe009a9bfcfb02f33e56ae6',1272,'post','post',1,0,'Inteligencia Artificial: usos en la industria hortofrutícola %%sep%% %%sitename%%','Te contamos qué es la inteligencia artificial y todo sobre sus aplicaciones en el sector agrícola y hortofrutícola en particular.','Todo lo que debes saber sobre Inteligencia Artificial y su aplicación en la industria hortofrutícola','publish',NULL,0,NULL,NULL,NULL,'Inteligencia Artificial: usos en la industria hortofrutícola',63,90,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg',NULL,'1288','featured-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg','1288','featured-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg\",\"size\":\"full\",\"id\":1288,\"alt\":\"Inteligencia Artificial en la clasificaci\\u00f3n de aceitunas frescas\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',2,NULL,NULL,'2021-03-23 08:05:13','2021-03-23 11:41:56',1,NULL,NULL,NULL,NULL,0,6),(932,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png','91:2720bff6e69b1e4f861dd7a43b6fb3f6',1273,'post','attachment',1,1272,NULL,NULL,'AI-machine-learning-deep-learning','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png',NULL,'1273','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png','1273','attachment-image','{\"width\":599,\"height\":599,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/03/AI-machine.learning-deep-learning.png\",\"size\":\"full\",\"id\":1273,\"alt\":\"Artifical Intelligente, machine learning y deep learning\",\"pixels\":358801,\"type\":\"image/png\"}',0,1,NULL,'2021-03-23 08:11:17','2021-03-23 11:39:29',1,NULL,NULL,NULL,NULL,1,NULL),(933,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg','92:78bd4b9009b040611f0bba112d9f1394',1276,'post','attachment',1,1272,NULL,NULL,'AI-machine.learning-deep-learning2','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg',NULL,'1276','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg','1276','attachment-image','{\"width\":283,\"height\":283,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg\",\"size\":\"full\",\"id\":1276,\"alt\":\"Artificial Intelligente, machine learning y deep learning. Diferencias\",\"pixels\":80089,\"type\":\"image/jpeg\"}',0,2,NULL,'2021-03-23 08:20:38','2021-03-23 11:39:29',1,NULL,NULL,NULL,NULL,1,NULL),(934,'https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg','105:3eb4c2734cbe6cf8018b1fdaa534643c',1288,'post','attachment',1,1272,NULL,NULL,'inteligencia-artificial-clasificacion-aceitunas','inherit',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg',NULL,'1288','attachment-image',NULL,NULL,'https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg','1288','attachment-image','{\"width\":1894,\"height\":810,\"url\":\"https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg\",\"path\":\"/usr/home/ingivision.com/web/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas.jpg\",\"size\":\"full\",\"id\":1288,\"alt\":\"Inteligencia Artificial en la clasificaci\\u00f3n de aceitunas frescas\",\"pixels\":1534140,\"type\":\"image/jpeg\"}',0,1,NULL,'2021-03-23 09:07:55','2021-03-23 11:39:29',1,NULL,NULL,NULL,NULL,1,NULL),(935,'https://www.ingivision.com/tag/inteligencia-artificial/','55:b6a1e2790727cdfada85c86fcacc7745',24,'term','post_tag',NULL,NULL,NULL,NULL,'Inteligencia artificial',NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,0,NULL,NULL,'2021-03-23 12:41:46','2021-03-23 11:41:46',1,NULL,NULL,NULL,NULL,0,NULL),(936,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1294','61:54063dfddf361590b0d6f59aad1b8912',1294,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-23 23:26:04','2021-03-23 22:26:04',1,NULL,NULL,NULL,NULL,0,NULL),(937,'https://www.ingivision.com/?post_type=flamingo_inbound&p=1295','61:9920cc1acb8d9f2984e650d5d1d3e68c',1295,'post','flamingo_inbound',0,0,NULL,NULL,'[your-subject]','publish',NULL,0,NULL,NULL,NULL,NULL,NULL,0,0,NULL,0,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,2,NULL,NULL,'2021-03-23 23:26:04','2021-03-23 22:26:04',1,NULL,NULL,NULL,NULL,0,NULL);
/*!40000 ALTER TABLE `ingi_yoast_indexable` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_yoast_indexable_hierarchy`
--

DROP TABLE IF EXISTS `ingi_yoast_indexable_hierarchy`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_yoast_indexable_hierarchy` (
  `indexable_id` int(11) unsigned NOT NULL DEFAULT '0',
  `ancestor_id` int(11) unsigned NOT NULL DEFAULT '0',
  `depth` int(11) unsigned DEFAULT NULL,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`indexable_id`,`ancestor_id`),
  KEY `indexable_id` (`indexable_id`),
  KEY `ancestor_id` (`ancestor_id`),
  KEY `depth` (`depth`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_yoast_indexable_hierarchy`
--

LOCK TABLES `ingi_yoast_indexable_hierarchy` WRITE;
/*!40000 ALTER TABLE `ingi_yoast_indexable_hierarchy` DISABLE KEYS */;
INSERT INTO `ingi_yoast_indexable_hierarchy` (`indexable_id`, `ancestor_id`, `depth`, `blog_id`) VALUES (1,0,0,1),(2,0,0,1),(4,0,0,1),(6,0,0,1),(7,0,0,1),(12,0,0,1),(13,0,0,1),(14,0,0,1),(15,0,0,1),(16,0,0,1),(17,0,0,1),(18,0,0,1),(19,0,0,1),(29,17,1,1),(30,17,1,1),(31,17,1,1),(32,17,1,1),(33,17,1,1),(34,17,1,1),(36,0,0,1),(38,0,0,1),(39,0,0,1),(43,0,0,1),(45,0,0,1),(46,0,0,1),(47,0,0,1),(48,0,0,1),(49,0,0,1),(50,0,0,1),(51,0,0,1),(52,0,0,1),(56,43,1,1),(62,61,1,1),(63,0,0,1),(64,63,1,1),(65,63,1,1),(66,63,1,1),(67,63,1,1),(68,63,1,1),(69,63,1,1),(70,63,1,1),(71,63,1,1),(72,63,1,1),(73,63,2,1),(73,72,1,1),(74,63,2,1),(74,72,1,1),(75,63,2,1),(75,72,1,1),(76,63,1,1),(80,0,0,1),(87,63,1,1),(88,63,1,1),(89,63,2,1),(89,72,1,1),(90,63,2,1),(90,72,1,1),(91,63,2,1),(91,72,1,1),(92,63,1,1),(93,63,1,1),(94,63,1,1),(99,0,0,1),(101,99,1,1),(102,99,1,1),(103,99,1,1),(104,99,1,1),(455,0,0,1),(457,455,1,1),(458,455,1,1),(554,0,0,1),(686,63,1,1),(758,757,1,1),(760,757,1,1),(761,757,1,1),(762,757,1,1),(763,757,1,1),(765,757,1,1),(766,757,1,1),(767,757,1,1),(768,757,1,1),(769,757,1,1),(770,757,1,1),(771,757,1,1),(772,757,1,1),(773,757,1,1),(774,757,1,1),(775,757,1,1),(776,757,1,1),(777,757,1,1),(778,757,1,1),(779,757,1,1),(781,757,1,1),(782,757,1,1),(785,757,2,1),(785,781,1,1),(786,757,2,1),(786,758,1,1),(838,0,0,1),(839,838,1,1),(846,757,2,1),(846,777,1,1),(847,757,2,1),(847,777,1,1),(848,757,2,1),(848,769,1,1),(851,0,0,1),(852,0,0,1),(853,0,0,1),(854,0,0,1),(855,851,1,1),(875,0,0,1),(876,875,1,1),(877,875,1,1),(878,875,1,1),(879,875,1,1),(880,875,1,1),(881,875,1,1),(882,875,1,1),(883,875,1,1),(884,0,0,1),(885,0,0,1),(886,0,0,1),(887,0,0,1),(888,875,1,1),(890,0,0,1),(891,0,0,1),(892,891,1,1),(893,891,1,1),(896,891,1,1),(897,0,0,1),(905,63,1,1),(908,0,0,1),(909,908,1,1),(910,0,0,1),(911,910,1,1),(912,0,0,1),(913,912,1,1),(918,0,0,1),(919,0,0,1),(920,0,0,1),(921,0,0,1),(922,0,0,1),(923,0,0,1),(924,0,0,1),(925,0,0,1),(926,0,0,1),(927,0,0,1),(928,0,0,1),(929,0,0,1),(930,0,0,1),(931,0,0,1),(932,931,1,1),(933,931,1,1),(934,931,1,1),(935,0,0,1),(936,0,0,1),(937,0,0,1);
/*!40000 ALTER TABLE `ingi_yoast_indexable_hierarchy` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_yoast_migrations`
--

DROP TABLE IF EXISTS `ingi_yoast_migrations`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_yoast_migrations` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `version` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `idx_ingi_yoast_migrations_version` (`version`)
) ENGINE=InnoDB AUTO_INCREMENT=22 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_yoast_migrations`
--

LOCK TABLES `ingi_yoast_migrations` WRITE;
/*!40000 ALTER TABLE `ingi_yoast_migrations` DISABLE KEYS */;
INSERT INTO `ingi_yoast_migrations` (`id`, `version`) VALUES (1,'20171228151840'),(2,'20171228151841'),(3,'20190529075038'),(4,'20191011111109'),(5,'20200408101900'),(6,'20200420073606'),(7,'20200428123747'),(8,'20200428194858'),(9,'20200429105310'),(10,'20200430075614'),(11,'20200430150130'),(12,'20200507054848'),(13,'20200513133401'),(14,'20200609154515'),(16,'20200616130143'),(18,'20200617122511'),(15,'20200702141921'),(17,'20200728095334'),(19,'20201202144329'),(20,'20201216124002'),(21,'20201216141134');
/*!40000 ALTER TABLE `ingi_yoast_migrations` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_yoast_primary_term`
--

DROP TABLE IF EXISTS `ingi_yoast_primary_term`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_yoast_primary_term` (
  `id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) DEFAULT NULL,
  `term_id` bigint(20) DEFAULT NULL,
  `taxonomy` varchar(32) COLLATE utf8mb4_unicode_ci NOT NULL,
  `created_at` datetime DEFAULT NULL,
  `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  `blog_id` bigint(20) NOT NULL DEFAULT '1',
  PRIMARY KEY (`id`),
  KEY `post_taxonomy` (`post_id`,`taxonomy`),
  KEY `post_term` (`post_id`,`term_id`)
) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_yoast_primary_term`
--

LOCK TABLES `ingi_yoast_primary_term` WRITE;
/*!40000 ALTER TABLE `ingi_yoast_primary_term` DISABLE KEYS */;
INSERT INTO `ingi_yoast_primary_term` (`id`, `post_id`, `term_id`, `taxonomy`, `created_at`, `updated_at`, `blog_id`) VALUES (1,71,9,'category','2020-08-04 11:16:06','2021-02-23 08:53:25',1),(2,148,9,'category','2020-08-14 08:08:00','2020-08-18 13:12:32',1),(3,203,1,'category','2020-09-18 11:27:40','2020-09-21 05:35:27',1),(4,1123,11,'category','2020-12-17 20:34:04','2020-12-18 08:26:50',1),(5,1145,11,'category','2021-01-14 10:51:22','2021-01-18 10:21:49',1),(6,1165,11,'category','2021-01-14 11:29:37','2021-01-18 08:29:35',1),(7,1193,9,'category','2021-01-18 11:19:47','2021-01-18 10:19:47',1),(8,1208,9,'category','2021-01-18 11:25:51','2021-01-18 10:36:17',1),(9,1239,23,'category','2021-02-18 10:49:12','2021-03-23 07:04:51',1),(10,1242,11,'category','2021-02-23 09:32:04','2021-03-23 07:03:44',1),(11,1246,1,'category','2021-02-23 09:51:30','2021-02-23 09:18:16',1),(12,1272,11,'category','2021-03-23 08:13:44','2021-03-23 11:41:56',1);
/*!40000 ALTER TABLE `ingi_yoast_primary_term` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_yoast_seo_links`
--

DROP TABLE IF EXISTS `ingi_yoast_seo_links`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_yoast_seo_links` (
  `id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `url` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
  `post_id` bigint(20) unsigned NOT NULL,
  `target_post_id` bigint(20) unsigned NOT NULL,
  `type` varchar(8) COLLATE utf8mb4_unicode_ci NOT NULL,
  `indexable_id` int(11) unsigned DEFAULT NULL,
  `target_indexable_id` int(11) unsigned DEFAULT NULL,
  `height` int(11) unsigned DEFAULT NULL,
  `width` int(11) unsigned DEFAULT NULL,
  `size` int(11) unsigned DEFAULT NULL,
  `language` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  `region` varchar(32) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `link_direction` (`post_id`,`type`),
  KEY `indexable_link_direction` (`indexable_id`,`type`)
) ENGINE=InnoDB AUTO_INCREMENT=7648 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_yoast_seo_links`
--

LOCK TABLES `ingi_yoast_seo_links` WRITE;
/*!40000 ALTER TABLE `ingi_yoast_seo_links` DISABLE KEYS */;
INSERT INTO `ingi_yoast_seo_links` (`id`, `url`, `post_id`, `target_post_id`, `type`, `indexable_id`, `target_indexable_id`, `height`, `width`, `size`, `language`, `region`) VALUES (537,'http://www.google.es/policies/privacy/ads/#toc-doubleclick',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(538,'http://www.google.es/policies/privacy/ads/',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(539,'https://support.google.com/chrome/answer/95647?hl=es',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(540,'http://windows.microsoft.com/es-es/windows-vista/cookies-frequently-asked-questions',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(541,'http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we%20',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(542,'http://www.apple.com/es/privacy/use-of-cookies/%20',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(543,'http://help.opera.com/Windows/11.50/es-ES/cookies.html',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(544,'http://tools.google.com/dlpage/gaoptout',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(545,'http://www.youronlinechoices.com/es/',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(546,'http://www.google.com/analytics/learn/privacy.html',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(547,'https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs',61,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(672,'https://google.es/policies/privacy/ads/#toc-doublelick',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(673,'http://www.google.es/policies/privacy/ads/',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(674,'https://support.google.com/chrome/answer/95647?hl=es',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(675,'http://support.mozilla.org/es/kb/habilitar-y-deshabilitar-cookies-que-los-sitios-we',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(676,'http://www.apple.com/es/privacy/use-of-cookies',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(677,'http://help.opera.com/Windows/11.50/es-ES/cookies.html',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(678,'http://tools.google.com/dlpage/gaoptout',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(679,'http://www.youronlinechoices.com/es',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(680,'http://www.google.com/analytics/learn/privacy.html',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(681,'https://developers.google.com/analytics/devguides/collection/analytics/cookie-usage?hl=es#analyticsjs',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(682,'http://www.youronlinechoices.com/es/',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(683,'http://www.google.com/analytics/learn/privacy.html',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(684,'https://developers.google.com/analytics/devguides/collection/analyticsjs/cookie-usage?hl=es#analyticsjs',102,0,'external',66,NULL,NULL,NULL,NULL,NULL,NULL),(697,'mailto:ingivision@ingivision.com',101,0,'external',65,NULL,NULL,NULL,NULL,NULL,NULL),(698,'http://ee.europa.eu/consumers/ord',101,0,'external',65,NULL,NULL,NULL,NULL,NULL,NULL),(705,'mailto:ingivision@ingivision.com',100,0,'external',64,NULL,NULL,NULL,NULL,NULL,NULL),(745,'https://www.ingivision.com/wp-content/uploads/2020/09/WhatsApp-Image-2020-09-15-at-12.01.06-1-1024x768.jpeg',203,0,'image-in',99,NULL,NULL,NULL,NULL,NULL,NULL),(746,'https://www.ingivision.com/contacto/',231,17,'internal',NULL,7,NULL,NULL,NULL,NULL,NULL),(747,'https://www.ingivision.com/',232,6,'internal',NULL,2,NULL,NULL,NULL,NULL,NULL),(954,'https://offeramazon.ru/2020/09/25/xrumer/',315,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(958,'https://www.monkeydigital.co/product/moz-da60-seo-plan/',318,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1111,'https://www.hilkom-digital.de/cheap-seo-packages/',389,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1459,'http://mhdcharityfoundation.com/',509,0,'external',NULL,NULL,NULL,NULL,NULL,NULL,NULL),(1620,'https://www.ingivision.com/contacto/',562,17,'internal',NULL,7,NULL,NULL,NULL,NULL,NULL),(1621,'https://www.ingivision.com/contacto/',562,17,'internal',NULL,7,NULL,NULL,NULL,NULL,NULL),(1698,'https://www.ingivision.com/2020/08/04/que-es-control-de-calidad-en-frutas/',582,71,'internal',455,43,NULL,NULL,NULL,NULL,NULL),(1699,'https://www.ingivision.com/productos/',582,29,'internal',455,17,NULL,NULL,NULL,NULL,NULL),(2455,'http://www.ilrecensore.com/wp2/go-php/',782,0,'external',642,NULL,NULL,NULL,NULL,NULL,NULL),(2624,'https://www.ingivision.com/contacto/',878,17,'internal',714,7,NULL,NULL,NULL,NULL,NULL),(2625,'https://www.ingivision.com/contacto/',878,17,'internal',714,7,NULL,NULL,NULL,NULL,NULL),(2656,'https://www.ingivision.com/en/computer-electronic-engineer/',883,826,'internal',719,686,NULL,NULL,NULL,NULL,NULL),(2657,'https://www.ingivision.com/en/computer-electronic-engineer/',882,826,'internal',718,686,NULL,NULL,NULL,NULL,NULL),(2658,'https://www.ingivision.com/en/computer-electronic-engineer/',882,826,'internal',718,686,NULL,NULL,NULL,NULL,NULL),(2659,'https://www.ingivision.com/en/computer-electronic-engineer/',884,826,'internal',720,686,NULL,NULL,NULL,NULL,NULL),(2660,'https://www.ingivision.com/en/computer-electronic-engineer/',884,826,'internal',720,686,NULL,NULL,NULL,NULL,NULL),(3318,'https://www.ingivision.com/politica-de-privacidad/',55,58,'internal',36,38,NULL,NULL,NULL,NULL,NULL),(3319,'mailto:ingivision@ingivision.com',55,0,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(3320,'mailto:ingivision@ingivision.com',55,0,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(3321,'http://ec.europa.eu/consumers/odr/',55,0,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(3322,'mailto:ingivision@ingivision.com',55,0,'external',36,NULL,NULL,NULL,NULL,NULL,NULL),(3323,'mailto:ingivision@ingivision.com',58,0,'external',38,NULL,NULL,NULL,NULL,NULL,NULL),(3324,'https://www.ingivision.com/cookies/',58,61,'internal',38,39,NULL,NULL,NULL,NULL,NULL),(3325,'https://www.ingivision.com/en/products/ingisorter/',99,110,'internal',63,74,NULL,NULL,NULL,NULL,NULL),(3326,'https://www.ingivision.com/en/products/ingisorter/',99,110,'internal',63,74,NULL,NULL,NULL,NULL,NULL),(3327,'https://www.ingivision.com/en/products/ingisorter-2/',99,111,'internal',63,75,NULL,NULL,NULL,NULL,NULL),(3328,'https://www.ingivision.com/en/products/ingisorter-2/',99,111,'internal',63,75,NULL,NULL,NULL,NULL,NULL),(3329,'https://www.ingivision.com/en/products/ingigrader/',99,109,'internal',63,73,NULL,NULL,NULL,NULL,NULL),(3330,'https://www.ingivision.com/en/products/ingigrader/',99,109,'internal',63,73,NULL,NULL,NULL,NULL,NULL),(3331,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3332,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingisorter.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3333,'https://www.ingivision.com/wp-content/themes/ingivi/image/services/service1.jpg',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3334,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/Ingisorter-icono.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3335,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingisorter-plus.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3336,'https://www.ingivision.com/wp-content/themes/ingivi/image/services/service2.jpg',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3337,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/Ingisorter-polus-icono.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3338,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingigrader.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3339,'https://www.ingivision.com/wp-content/themes/ingivi/image/services/service3.jpg',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3340,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/ingigrader-icono.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3341,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home9.jpg',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3342,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3343,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home1.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3344,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home8.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3345,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home9.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3346,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3347,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home13.jpg',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3348,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home4.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3349,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(3350,'https://www.ingivision.com/wp-content/themes/ingivi/image/home/home20.jpg',99,0,'image-in',63,NULL,NULL,NULL,NULL,NULL,NULL),(5558,'https://www.ingivision.com/servicios/',1103,31,'internal',838,18,NULL,NULL,NULL,NULL,NULL),(5559,'https://www.ingivision.com/productos/',1103,29,'internal',838,17,NULL,NULL,NULL,NULL,NULL),(5600,'https://www.ingivision.com/en/computer-electronic-engineer/',1110,826,'internal',841,686,NULL,NULL,NULL,NULL,NULL),(5601,'https://www.ingivision.com/en/computer-electronic-engineer/',1110,826,'internal',841,686,NULL,NULL,NULL,NULL,NULL),(5638,'https://www.ingivision.com/en/computer-electronic-engineer/',1112,826,'internal',843,686,NULL,NULL,NULL,NULL,NULL),(5639,'https://www.ingivision.com/en/computer-electronic-engineer/',1112,826,'internal',843,686,NULL,NULL,NULL,NULL,NULL),(5742,'https://www.ingivision.com/contacto/',1113,17,'internal',844,7,NULL,NULL,NULL,NULL,NULL),(5743,'https://www.ingivision.com/contacto/',1113,17,'internal',844,7,NULL,NULL,NULL,NULL,NULL),(5744,'https://www.ingivision.com/contacto/',1114,17,'internal',845,7,NULL,NULL,NULL,NULL,NULL),(5745,'https://www.ingivision.com/contacto/',1114,17,'internal',845,7,NULL,NULL,NULL,NULL,NULL),(6041,'https://www.youtube.com/watch?v=Jiee_K1jkIE',1123,0,'external',851,NULL,NULL,NULL,NULL,NULL,NULL),(6056,'https://www.ingivision.com/en/contact/',1134,106,'internal',864,70,NULL,NULL,NULL,NULL,NULL),(6059,'https://www.ingivision.com/en/contact/',1135,106,'internal',865,70,NULL,NULL,NULL,NULL,NULL),(6060,'https://www.ingivision.com/en/contact/',1135,106,'internal',865,70,NULL,NULL,NULL,NULL,NULL),(6445,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png',1165,1149,'image-in',890,879,449,236,173802,NULL,NULL),(6446,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png',1165,1151,'image-in',890,881,449,236,171076,NULL,NULL),(6447,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png',1165,1155,'image-in',890,882,449,236,161471,NULL,NULL),(6448,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png',1165,1156,'image-in',890,883,449,236,169718,NULL,NULL),(6488,'https://www.ingivision.com/frutas-y-verduras/kiwis/',1193,946,'internal',891,768,NULL,NULL,NULL,NULL,NULL),(6489,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png',1193,1196,'image-in',891,892,243,291,97890,NULL,NULL),(6490,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png',1193,1197,'image-in',891,893,243,291,80952,NULL,NULL),(6496,'https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/',1145,926,'internal',875,758,NULL,NULL,NULL,NULL,NULL),(6497,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-sin-defectos.png',1145,1149,'image-in',875,879,449,236,173802,NULL,NULL),(6498,'https://www.ingivision.com/wp-content/uploads/2021/01/Frutos-con-defectos-1.png',1145,1151,'image-in',875,881,449,236,171076,NULL,NULL),(6499,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-defectos-perdida-pedúnculo.png',1145,1155,'image-in',875,882,449,236,161471,NULL,NULL),(6500,'https://www.ingivision.com/wp-content/uploads/2021/01/clementina-con-grandes-defectos-malformaciones.png',1145,1156,'image-in',875,883,449,236,169718,NULL,NULL),(6543,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-apariencia-normal.png',1208,1196,'image-in',897,892,243,291,97890,NULL,NULL),(6544,'https://www.ingivision.com/wp-content/uploads/2021/01/kiwi-plano.png',1208,1197,'image-in',897,893,243,291,80952,NULL,NULL),(7015,'https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/',924,926,'internal',757,758,NULL,NULL,NULL,NULL,NULL),(7016,'https://www.ingivision.com/frutas-y-verduras/naranjas-y-mandarinas/',924,926,'internal',757,758,NULL,NULL,NULL,NULL,NULL),(7017,'https://www.ingivision.com/frutas-y-verduras/berenjena/',924,964,'internal',757,777,NULL,NULL,NULL,NULL,NULL),(7018,'https://www.ingivision.com/frutas-y-verduras/berenjena/',924,964,'internal',757,777,NULL,NULL,NULL,NULL,NULL),(7019,'https://www.ingivision.com/frutas-y-verduras/aguacate/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7020,'https://www.ingivision.com/frutas-y-verduras/aguacate/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7021,'https://www.ingivision.com/frutas-y-verduras/calabacin/',924,962,'internal',757,776,NULL,NULL,NULL,NULL,NULL),(7022,'https://www.ingivision.com/frutas-y-verduras/calabacin/',924,962,'internal',757,776,NULL,NULL,NULL,NULL,NULL),(7023,'https://www.ingivision.com/frutas-y-verduras/cerezas/',924,952,'internal',757,771,NULL,NULL,NULL,NULL,NULL),(7024,'https://www.ingivision.com/frutas-y-verduras/cerezas/',924,952,'internal',757,771,NULL,NULL,NULL,NULL,NULL),(7025,'https://www.ingivision.com/frutas-y-verduras/datiles/',924,950,'internal',757,770,NULL,NULL,NULL,NULL,NULL),(7026,'https://www.ingivision.com/frutas-y-verduras/datiles/',924,950,'internal',757,770,NULL,NULL,NULL,NULL,NULL),(7027,'https://www.ingivision.com/frutas-y-verduras/granada/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7028,'https://www.ingivision.com/frutas-y-verduras/granada/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7029,'https://www.ingivision.com/frutas-y-verduras/higo/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7030,'https://www.ingivision.com/frutas-y-verduras/higo/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7031,'https://www.ingivision.com/frutas-y-verduras/kiwi/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7032,'https://www.ingivision.com/frutas-y-verduras/kiwi/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7033,'https://www.ingivision.com/frutas-y-verduras/berenjena/',924,964,'internal',757,777,NULL,NULL,NULL,NULL,NULL),(7034,'https://www.ingivision.com/frutas-y-verduras/limon/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7035,'https://www.ingivision.com/frutas-y-verduras/mango/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7036,'https://www.ingivision.com/frutas-y-verduras/mango/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7037,'https://www.ingivision.com/frutas-y-verduras/manzana/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7038,'https://www.ingivision.com/frutas-y-verduras/manzana/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7039,'https://www.ingivision.com/frutas-y-verduras/melocoton/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7040,'https://www.ingivision.com/frutas-y-verduras/melocoton/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7041,'https://www.ingivision.com/frutas-y-verduras/nectarina/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7042,'https://www.ingivision.com/frutas-y-verduras/nectarina/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7043,'https://www.ingivision.com/frutas-y-verduras/melon/',924,956,'internal',757,773,NULL,NULL,NULL,NULL,NULL),(7044,'https://www.ingivision.com/frutas-y-verduras/melon/',924,956,'internal',757,773,NULL,NULL,NULL,NULL,NULL),(7045,'https://www.ingivision.com/frutas-y-verduras/albaricoque/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7046,'https://www.ingivision.com/frutas-y-verduras/albaricoque/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7047,'https://www.ingivision.com/frutas-y-verduras/paraguayo/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7048,'https://www.ingivision.com/frutas-y-verduras/paraguayo/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7049,'https://www.ingivision.com/frutas-y-verduras/patata/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7050,'https://www.ingivision.com/frutas-y-verduras/patata/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7051,'https://www.ingivision.com/frutas-y-verduras/pepino/',924,960,'internal',757,775,NULL,NULL,NULL,NULL,NULL),(7052,'https://www.ingivision.com/frutas-y-verduras/pepino/',924,960,'internal',757,775,NULL,NULL,NULL,NULL,NULL),(7053,'https://www.ingivision.com/frutas-y-verduras/pera/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7054,'https://www.ingivision.com/frutas-y-verduras/pera/',924,0,'internal',757,NULL,NULL,NULL,NULL,NULL,NULL),(7055,'https://www.ingivision.com/frutas-y-verduras/sandia/',924,958,'internal',757,774,NULL,NULL,NULL,NULL,NULL),(7056,'https://www.ingivision.com/frutas-y-verduras/sandia/',924,958,'internal',757,774,NULL,NULL,NULL,NULL,NULL),(7057,'https://www.ingivision.com/frutas-y-verduras/tomate/',924,954,'internal',757,772,NULL,NULL,NULL,NULL,NULL),(7058,'https://www.ingivision.com/frutas-y-verduras/tomate/',924,954,'internal',757,772,NULL,NULL,NULL,NULL,NULL),(7059,'https://www.ingivision.com/wp-content/uploads/2020/11/naranjaymandarina.png',924,1076,'image-in',757,832,303,270,59493,NULL,NULL),(7060,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena.png',924,1065,'image-in',757,828,303,270,30712,NULL,NULL),(7061,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate.png',924,1043,'image-in',757,806,303,270,40458,NULL,NULL),(7062,'https://www.ingivision.com/wp-content/uploads/2020/11/calabacin.png',924,1066,'image-in',757,829,303,270,34636,NULL,NULL),(7063,'https://www.ingivision.com/wp-content/uploads/2020/11/cerezas.png',924,1047,'image-in',757,810,303,270,52187,NULL,NULL),(7064,'https://www.ingivision.com/wp-content/uploads/2020/11/datiles.png',924,1048,'image-in',757,811,303,270,39240,NULL,NULL),(7065,'https://www.ingivision.com/wp-content/uploads/2020/11/granada.png',924,1049,'image-in',757,812,303,270,51875,NULL,NULL),(7066,'https://www.ingivision.com/wp-content/uploads/2020/11/higo.png',924,1050,'image-in',757,813,303,270,30148,NULL,NULL),(7067,'https://www.ingivision.com/wp-content/uploads/2020/11/kiwi.png',924,1051,'image-in',757,814,303,270,38048,NULL,NULL),(7068,'https://www.ingivision.com/wp-content/uploads/2020/11/limon.png',924,1052,'image-in',757,815,303,270,50017,NULL,NULL),(7069,'https://www.ingivision.com/wp-content/uploads/2020/11/mango.png',924,1053,'image-in',757,816,303,270,38149,NULL,NULL),(7070,'https://www.ingivision.com/wp-content/uploads/2020/11/manzanan.png',924,1067,'image-in',757,830,303,270,47432,NULL,NULL),(7071,'https://www.ingivision.com/wp-content/uploads/2020/11/melocoton.png',924,1055,'image-in',757,818,303,270,44331,NULL,NULL),(7072,'https://www.ingivision.com/wp-content/uploads/2020/11/nectarina.png',924,1058,'image-in',757,821,303,270,61330,NULL,NULL),(7073,'https://www.ingivision.com/wp-content/uploads/2020/11/melon.png',924,1056,'image-in',757,819,303,270,74954,NULL,NULL),(7074,'https://www.ingivision.com/wp-content/uploads/2020/11/albaricoque.png',924,1044,'image-in',757,807,303,270,26151,NULL,NULL),(7075,'https://www.ingivision.com/wp-content/uploads/2020/11/paraguayo.png',924,1059,'image-in',757,822,303,270,42017,NULL,NULL),(7076,'https://www.ingivision.com/wp-content/uploads/2020/11/patata.png',924,1060,'image-in',757,823,303,270,32021,NULL,NULL),(7077,'https://www.ingivision.com/wp-content/uploads/2020/11/pepino.png',924,1061,'image-in',757,824,303,270,37597,NULL,NULL),(7078,'https://www.ingivision.com/wp-content/uploads/2020/11/pera.png',924,1062,'image-in',757,825,303,270,35518,NULL,NULL),(7079,'https://www.ingivision.com/wp-content/uploads/2020/11/sandia.png',924,1063,'image-in',757,826,303,270,97115,NULL,NULL),(7080,'https://www.ingivision.com/wp-content/uploads/2020/11/tomates-y-cherris.png',924,1092,'image-in',757,834,303,270,52037,NULL,NULL),(7093,'https://www.ingivision.com/2021/01/14/clasificacion-automatica-calidad-externa-citricos/',926,1145,'internal',758,875,NULL,NULL,NULL,NULL,NULL),(7094,'https://www.ingivision.com/wp-content/uploads/2020/11/CLASIFICACION-naranjas-mndarinas.png',926,1022,'image-in',758,786,842,888,733696,NULL,NULL),(7096,'https://www.ingivision.com/wp-content/uploads/2020/11/berenjena-01-1024x684.png',964,1116,'image-in',777,847,721,1080,362809,NULL,NULL),(7098,'https://www.ingivision.com/wp-content/uploads/2020/11/aguacate-01-01-1024x596.png',948,1119,'image-in',769,848,829,1424,648444,NULL,NULL),(7100,'https://www.ingivision.com/2021/01/18/el-sistema-definitivo-para-la-deteccion-de-kiwis-planos/',946,1193,'internal',768,891,NULL,NULL,NULL,NULL,NULL),(7102,'https://www.ingivision.com/wp-content/uploads/2020/11/clasificacion-patata-1024x610.png',1010,1020,'image-in',781,785,769,1290,948061,NULL,NULL),(7103,'https://www.ingivision.com/contacto/',1224,17,'internal',899,7,NULL,NULL,NULL,NULL,NULL),(7104,'https://www.ingivision.com/contacto/',1224,17,'internal',899,7,NULL,NULL,NULL,NULL,NULL),(7129,'https://www.ingivision.com/en/contact/',1229,106,'internal',903,70,NULL,NULL,NULL,NULL,NULL),(7130,'https://www.ingivision.com/en/contact/',1229,106,'internal',903,70,NULL,NULL,NULL,NULL,NULL),(7134,'http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',682,0,'image-in',554,NULL,NULL,NULL,NULL,NULL,NULL),(7143,'http://www.ingivision.com/wp-content/themes/ingivi/image/home/home7.png',1233,0,'image-in',905,NULL,NULL,NULL,NULL,NULL,NULL),(7161,'https://www.ingivision.com/wp-content/uploads/2021/02/Futuro-sector-hortofruticola-300x128.jpg',1241,1241,'image-in',909,909,810,1894,140150,NULL,NULL),(7169,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-inteligencia-artificial-300x128.jpg',1244,1244,'image-in',911,911,810,1894,169541,NULL,NULL),(7174,'https://ingivision.admirae.es/productos/',71,0,'external',43,NULL,NULL,NULL,NULL,NULL,NULL),(7175,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calidad-en-las-frutas-hortalizas.jpg',71,0,'image-ex',43,NULL,NULL,NULL,NULL,NULL,NULL),(7176,'https://ingivision.admirae.es/wp-content/uploads/2020/08/calibrado-de-frutas-1024x570.jpg',71,0,'image-ex',43,NULL,NULL,NULL,NULL,NULL,NULL),(7177,'https://ingivision.admirae.es/wp-content/uploads/2020/08/vlcsnap-2020-06-18-13h20m26s577-1024x581.png',71,0,'image-ex',43,NULL,NULL,NULL,NULL,NULL,NULL),(7183,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-300x195.jpg',1249,1249,'image-in',913,913,810,1248,46722,NULL,NULL),(7189,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg',1246,1249,'image-in',912,913,810,1248,46722,NULL,NULL),(7190,'https://www.ingivision.com/contacto/',1255,17,'internal',914,7,NULL,NULL,NULL,NULL,NULL),(7191,'https://www.ingivision.com/contacto/',1255,17,'internal',914,7,NULL,NULL,NULL,NULL,NULL),(7192,'https://www.ingivision.com/contacto/',1256,17,'internal',915,7,NULL,NULL,NULL,NULL,NULL),(7193,'https://www.ingivision.com/contacto/',1256,17,'internal',915,7,NULL,NULL,NULL,NULL,NULL),(7194,'https://www.ingivision.com/contacto/',1257,17,'internal',916,7,NULL,NULL,NULL,NULL,NULL),(7195,'https://www.ingivision.com/contacto/',1257,17,'internal',916,7,NULL,NULL,NULL,NULL,NULL),(7196,'https://www.ingivision.com/contacto/',1260,17,'internal',919,7,NULL,NULL,NULL,NULL,NULL),(7197,'https://www.ingivision.com/contacto/',1260,17,'internal',919,7,NULL,NULL,NULL,NULL,NULL),(7198,'https://www.ingivision.com/contacto/',1261,17,'internal',920,7,NULL,NULL,NULL,NULL,NULL),(7199,'https://www.ingivision.com/contacto/',1261,17,'internal',920,7,NULL,NULL,NULL,NULL,NULL),(7200,'https://www.ingivision.com/contacto/',1262,17,'internal',921,7,NULL,NULL,NULL,NULL,NULL),(7201,'https://www.ingivision.com/contacto/',1262,17,'internal',921,7,NULL,NULL,NULL,NULL,NULL),(7202,'https://www.ingivision.com/contacto/',1263,17,'internal',922,7,NULL,NULL,NULL,NULL,NULL),(7203,'https://www.ingivision.com/contacto/',1264,17,'internal',923,7,NULL,NULL,NULL,NULL,NULL),(7204,'https://www.ingivision.com/contacto/',1264,17,'internal',923,7,NULL,NULL,NULL,NULL,NULL),(7205,'https://www.ingivision.com/contacto/',1263,17,'internal',922,7,NULL,NULL,NULL,NULL,NULL),(7206,'https://www.ingivision.com/contacto/',1265,17,'internal',924,7,NULL,NULL,NULL,NULL,NULL),(7207,'https://www.ingivision.com/contacto/',1265,17,'internal',924,7,NULL,NULL,NULL,NULL,NULL),(7208,'https://www.ingivision.com/contacto/',1266,17,'internal',925,7,NULL,NULL,NULL,NULL,NULL),(7209,'https://www.ingivision.com/contacto/',1266,17,'internal',925,7,NULL,NULL,NULL,NULL,NULL),(7210,'https://www.ingivision.com/contacto/',1267,17,'internal',926,7,NULL,NULL,NULL,NULL,NULL),(7211,'https://www.ingivision.com/contacto/',1267,17,'internal',926,7,NULL,NULL,NULL,NULL,NULL),(7212,'https://www.ingivision.com/contacto/',1268,17,'internal',927,7,NULL,NULL,NULL,NULL,NULL),(7213,'https://www.ingivision.com/contacto/',1268,17,'internal',927,7,NULL,NULL,NULL,NULL,NULL),(7214,'https://www.ingivision.com/contacto/',1269,17,'internal',928,7,NULL,NULL,NULL,NULL,NULL),(7215,'https://www.ingivision.com/contacto/',1269,17,'internal',928,7,NULL,NULL,NULL,NULL,NULL),(7216,'https://www.ingivision.com/contacto/',1270,17,'internal',929,7,NULL,NULL,NULL,NULL,NULL),(7217,'https://www.ingivision.com/contacto/',1270,17,'internal',929,7,NULL,NULL,NULL,NULL,NULL),(7219,'https://www.ingivision.com/wp-content/uploads/2021/02/software-clasificacion-datiles-1024x665.jpg',1242,1249,'image-in',910,913,810,1248,46722,NULL,NULL),(7222,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning-300x300.png',1273,1273,'image-in',932,932,599,599,35007,NULL,NULL),(7232,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg',1276,1276,'image-in',933,933,283,283,6983,NULL,NULL),(7481,'https://www.ingivision.com/wp-content/uploads/2021/03/inteligencia-artificial-clasificacion-aceitunas-300x128.jpg',1288,1288,'image-in',934,934,810,1894,125803,NULL,NULL),(7638,'https://www.ingivision.com/productos/ingigrader/',1272,44,'internal',931,31,NULL,NULL,NULL,NULL,NULL),(7639,'https://www.portalfruticola.com/noticias/2019/09/26/nueva-aplicacion-de-ia-predice-estres-del-cambio-climatico-para-agricultores/',1272,0,'external',931,NULL,NULL,NULL,NULL,NULL,NULL),(7640,'https://ecomercioagrario.com/los-agricultores-toman-entre-40-y-50-decisiones-al-dia/',1272,0,'external',931,NULL,NULL,NULL,NULL,NULL,NULL),(7641,'https://www.interempresas.net/Horticola/Articulos/256196-iDRONE-drones-e-inteligencia-artificial-para-mejorar-rendimientos-en-el-campo.html',1272,0,'external',931,NULL,NULL,NULL,NULL,NULL,NULL),(7642,'https://www.ingivision.com/contacto/',1272,17,'internal',931,7,NULL,NULL,NULL,NULL,NULL),(7643,'https://www.ingivision.com/wp-content/uploads/2021/03/AI-machine.learning-deep-learning2.jpg',1272,1276,'image-in',931,933,283,283,6983,NULL,NULL),(7644,'https://www.ingivision.com/contacto/',1294,17,'internal',936,7,NULL,NULL,NULL,NULL,NULL),(7645,'https://www.ingivision.com/contacto/',1294,17,'internal',936,7,NULL,NULL,NULL,NULL,NULL),(7646,'https://www.ingivision.com/contacto/',1295,17,'internal',937,7,NULL,NULL,NULL,NULL,NULL),(7647,'https://www.ingivision.com/contacto/',1295,17,'internal',937,7,NULL,NULL,NULL,NULL,NULL);
/*!40000 ALTER TABLE `ingi_yoast_seo_links` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Table structure for table `ingi_yoast_seo_meta`
--

DROP TABLE IF EXISTS `ingi_yoast_seo_meta`;
/*!40101 SET @saved_cs_client     = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `ingi_yoast_seo_meta` (
  `object_id` bigint(20) unsigned NOT NULL,
  `internal_link_count` int(10) unsigned DEFAULT NULL,
  `incoming_link_count` int(10) unsigned DEFAULT NULL,
  UNIQUE KEY `object_id` (`object_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
/*!40101 SET character_set_client = @saved_cs_client */;

--
-- Dumping data for table `ingi_yoast_seo_meta`
--

LOCK TABLES `ingi_yoast_seo_meta` WRITE;
/*!40000 ALTER TABLE `ingi_yoast_seo_meta` DISABLE KEYS */;
INSERT INTO `ingi_yoast_seo_meta` (`object_id`, `internal_link_count`, `incoming_link_count`) VALUES (1,0,0),(2,0,0),(3,0,0),(5,0,0),(6,0,0),(8,0,0),(9,0,0),(11,0,0),(15,0,0),(17,0,0),(21,0,0),(22,0,0),(24,0,0),(26,0,0),(28,0,0),(29,0,0),(31,0,0),(33,0,0),(37,0,0),(38,0,0),(40,0,0),(41,0,0),(43,0,0),(44,0,0),(50,0,0),(51,0,0),(53,0,0),(55,1,0),(57,0,0),(58,1,1),(61,0,1),(67,0,0),(68,0,0),(69,0,0),(70,0,0),(71,0,0),(74,0,0),(75,0,0),(80,0,0),(81,0,0),(83,0,0),(86,0,0),(96,0,0),(97,0,0),(99,6,0),(100,0,0),(101,0,0),(102,0,0),(103,0,0),(104,0,0),(105,0,0),(106,0,0),(107,0,0),(108,0,0),(109,0,2),(110,0,2),(111,0,2),(112,0,0),(113,0,0),(114,0,0),(148,0,0),(150,0,0),(153,0,0),(156,0,0),(158,0,0),(159,0,0),(161,0,0),(163,0,0),(165,0,0),(167,0,0),(194,0,0);
/*!40000 ALTER TABLE `ingi_yoast_seo_meta` ENABLE KEYS */;
UNLOCK TABLES;

--
-- Dumping routines for database 'ingivinueva'
--
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;

/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;

-- Dump completed on 2021-03-26 13:30:27
